* {
    padding: 0;
    margin: 0;
}
body {
    width: 100%;
    overflow-x: hidden;
}
html {
    font-size: 62.5%;
    overflow-x: hidden;
}

.hero-section {
    display: flex;
    padding: 6rem 5rem;
    justify-content: space-between;
    gap: 5rem;
    background-color: #F4FBFF;
    height: auto;
    width: 100%;
    padding-bottom: 0;
    border-bottom: 0.1rem solid #e0dddd;
    box-sizing: border-box;
}


.slide-left,
.slide-right,
.slide-up {
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

/* starting positions */
.slide-left  { transform: translateX(-30px); }
.slide-right { transform: translateX(30px);  }
.slide-up    { transform: translateY(30px);  }

/* active states (explicit translateX/Y for clarity) */
.slide-left.active  { opacity: 1; transform: translateX(0); }
.slide-right.active { opacity: 1; transform: translateX(0); }
.slide-up.active    { opacity: 1; transform: translateY(0); }

/* STAGGER: use .stagger-child on the elements you want staggered */
.stagger .stagger-child {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* when parent gets .active, children will animate in (with JS-applied delays) */
.stagger.active .stagger-child {
  opacity: 1;
  transform: translateY(0);
}






/* Base state for any element with fade-zoom */
.fade-zoom {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* Reusable zoom keyframes */
@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Active state triggers the animation */
.fade-zoom.active {
  animation: zoom 1s forwards;
}

/* Optional stagger (if you have multiple items in a row) */
.fade-zoom:nth-child(1).active { animation-delay: 0.2s; }
.fade-zoom:nth-child(2).active { animation-delay: 0.4s; }
.fade-zoom:nth-child(3).active { animation-delay: 0.6s; }
.fade-zoom:nth-child(4).active { animation-delay: 0.8s; }

.smart-box {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* transitions */

.left-hero{
    width: 63%;
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
    box-sizing: border-box;
}

.hero-savebtn {
    width: 9.5rem;
    border-radius: 2.6rem;
    border: none;
    box-shadow: 0rem 0.1rem 0.4rem 0rem #626262;
    background-color: #23A6F0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.6rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    padding: 1rem;
    /* line-height: 100%; */
    letter-spacing: 0.1rem;
}
.hero-content h1 {
    font: 700 3.6rem 'Arial', sans-serif;
    padding-bottom: 2.8rem;
    color: #0A142F;
    /* line-height: 100%; */
    letter-spacing: 0;
}
.hero-content p {
    font: 400 2rem 'Poppins', sans-serif;
    /* line-height: 3.3rem; */
    letter-spacing: 0.1rem;
    color: #0A142F;
}
.hero-savenow-btn {
    width: 19.1rem;
    padding: 1rem;
    border: none;
    box-shadow: 0rem 0.1rem 0.4rem 0rem #626262;
    border-radius: 2.6rem;
    background-color: #1A648E;
    color: #fff;
    font: 400 1.6rem 'Poppins', sans-serif;
    letter-spacing: 0.1rem;
    /* line-height: 100%; */
}
.right-hero {
   min-width: 30%;
   max-width: 40rem;
    
}
.right-hero img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 60rem) {
    .hero-section {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    /* .hero-content h1 {
    text-align: center;
} */
    .left-hero {
        width: 100%;
    }
    /* .right-hero img {
        height: 30rem;
    } */
}
.smart-section {
    background-color: #F9F9F9;
    padding: 3rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 6rem;
}
.smart-section p {
    text-align: center;
    font: 400 2.5rem 'Poppins', sans-serif;
    /* line-height: 3.2rem; */
    letter-spacing: 0.098rem;
}
.smart-section h1:first-child {
    text-align: center;
    font: 700 3.2rem 'Arial', sans-serif;
    /* line-height: 3.3rem; */
    letter-spacing: 0.1rem;
    padding-top: 5rem;
}

.smart-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3.4rem;
    margin: 0 0 0.1rem;
    /* max-width: 114.8rem; */
    width: 100%;
    padding-top: 2rem;
}

.smart-box {
    flex: 1 1;
    background-color: #fff;
    min-width: 20rem;
    max-height: none;
    border-radius: 0.8rem;
    padding: 1.8rem;
    box-shadow: 0px 4px 5px 0px rgba(200, 200, 200, 0.25);
    box-sizing: border-box;
}
.smart-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    gap: 1rem;
}
.smart-content h1 {
    font: 700 2.8rem 'Inter', sans-serif;
    color: #252B42;
    /* line-height: 100%; */
    letter-spacing: 0.008rem;
    padding-top: 1.5rem;
}
.smart-content span {
    font: 400 2.5rem 'Poppings', sans-serif;
    color: #737373;
    padding-bottom: 5rem;
    padding-top: 2.5rem;
    /* line-height: 100%; */
    letter-spacing: 0.015rem;
}
.smart-img {
    background-color: rgba(210, 238, 255, 1);
    padding: 0.9rem;
    border-radius: 4.5rem;
}

.why-sect1 {
    background-color: #F9FCFF;
    background-image: url(../images/1032a693-5c26-4519-aa35-1bbad742e97c\ 1.png);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15rem;
    padding: 5rem;
    width: 100%;
    box-sizing: border-box;
}
.why{
    width: 50.6%;
    box-sizing: border-box;
}
.why h1, .why-sect2 h1 {
    font: 700 3.2rem 'Arial',sans-serif;
    /* line-height: 100%; */
    color: #000;
}
.why p {
    font: 400 2.5rem 'Inter', sans-serif;
    color: #717171;
    /* line-height: 100%; */
    letter-spacing: 0%;
    padding-top: 2rem;
}
.reasons {
    box-sizing: border-box;
    width: 50%;
}
.reasons ul li {
    font: 400 2.5rem 'Arial', sans-serif;
    /* line-height: 100%; */
    letter-spacing: 0;
    padding-bottom: 2.5rem;
    color: #000;
    list-style-image: url(../images/Vector\ \(7\).png);
}
.why-sect2 h1 {
    /* line-height: 3.3rem; */
    letter-spacing: 0.1rem;
    padding-bottom: 2rem;
}
.why-sect2 {
    text-align: center;
    background-color: rgba(241, 245, 248, 1);
    padding: 5rem;
}
.why-p {
    font: 400 2.5rem 'Poppins', sans-serif;
    color: rgba(115, 115, 115, 1);
    /* line-height: 3.7rem; */
    letter-spacing: 0;
}

@media (max-width: 70rem) {
    .why-sect1 {
        gap: 5rem;
    }
}
@media (max-width: 50rem) {
    .why-sect1 {
        flex-direction: column;
        width: 100%;
    }
    .why, .reasons {
        width: 100%;
    }
    .reasons {
        padding-left: 4rem;
    }
}
.how-sect h1 {
    text-align: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
    font: 700 3.2rem 'Arial', sans-serif;
    /* line-height: 3.3rem; */
    letter-spacing: 0.1rem;

} 
.how-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 0 5rem;
    min-width: 100%;
    box-sizing: border-box;
    padding-bottom: 6.7rem;

}
.left-how {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
    /* gap: 5rem; */
    width: 50%;
    box-sizing: border-box;
}
.left-how h2{
    font: 500 2.4rem 'Poppins', sans-serif;
    /* line-height: 100%; */
    letter-spacing: 0.1rem;
}
.steps {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.step {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}
.step-content h3 {
    font: 700 2.2rem 'Arial', sans-serif;
    /* line-height: 125%; */
    letter-spacing: 0%;
    padding-bottom: 1.5rem;
}
.step-content p {
    font: 500 1.8rem 'Poppins', sans-serif;
    color: #737373;
    /* line-height: 2.2rem; */
    letter-spacing: 0.015rem;
}
.left-how button {
    width: 20rem;
    height: 5.6rem;
    padding: 0.59rem;
    border: none;
    border-radius: 2.6rem;
    background-color: #007ECC;
    color: #E3EEFFF5;
    font: 700 2rem 'Arial', sans-serif;
    /* line-height: 100%; */
    letter-spacing: 0.012rem;
    
}
.right-how {
    background-color: rgba(0, 91, 151, 1);
    /* height: 43rem; */
    width: 45%;
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    border-radius: 1.5rem;
    box-sizing: border-box;
}
@media (max-width: 60rem) {
    .how-container {
        flex-direction: column;
    }
    .left-how, .right-how {
        width: 100%;
    }
}

.nfc-payments {
    background-image: url(../images/image\ 97.png);
    background-color: #007ECC;
    width: 100%;
    height: 21rem;
    /* padding: 5rem 2rem; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.nfc-payments h1{
    font: 500 2.02rem 'Poppins', sans-serif;
    color: #fff;
    /* line-height: 150%; */
    letter-spacing: 0%;
    text-align: center;
}
.nfc-payments button {
    background-color: #005B97;
    color: #E3EEFFF5;
    font: 700 2rem 'Arial', sans-serif;
    letter-spacing: 0.012rem;
    /* line-height: 100%; */
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    padding: 0.59rem;
}
.nfc-payments a {
    text-decoration: none;
}

@media (max-width: 48rem) {
   
    .step {
        gap: 2rem;
    }
    .nfc-payments {
    /* height: 35rem; */
    /* padding: 5rem; */
    /* transform: translateX(-20px); */
    
}
}
@media (max-width: 35rem) {

  .right-how {
    width: 100%;
  }
  .right-how img {
    width: 55%;
  }
}
@media (max-width: 32.5rem) {
    body h1, body h2{
    text-align: center;
  }
   body p {
    text-align: center;
  }
  .hero-content p,  
  .left-how p,
  .smart-container h1 {
    text-align: start;
  }
  .btn {
    margin: 0 auto;
  }
}

.body p, .hero-content p, .smart-section p, .smart-content span, .why-sect1 p, 
.reasons ul li, .why-sect2 p, .FAQs p  {
    font-size: 1.8rem!important;
}