/* =============================================
   HERO SECTION
============================================= */

.hero {
  width: 100%;
  background: linear-gradient(
    314deg,
    rgba(31,  106, 187, 0.90) 18.5%,
    rgba(63,  183, 253, 0.90) 83.22%,
    rgba(72,  213, 255, 0.90) 127.65%
  );
  display: flex;
  align-items: center;
  padding: 158px 0 60px;
}
.hero__container {
  /*max-width: 1352px;  
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;*/
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 0;
  padding-bottom: 0;
}

.hero__content {
  flex: 0 0 558px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero__heading {
  /*font-size: 60px;
  font-weight: 700;
  line-height: 72px;*/
  font-style: normal;  
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.01em;
  padding-top: 30px;
}

.hero__body {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #ffffff;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 18px 52px;
  background: #07235A;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 4px;
  align-self: flex-start;
  transition: background 0.2s;
}

.hero__btn:hover { background: #0a2d72; }

.hero__card {
  flex: 0 0 537px;
  max-width: 537px;
  background: rgba(217, 217, 217, 0.10);
  border: 1px solid #ffffff;
  border-radius: 24px;
  padding: 24px 24px 2px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
}

.hero__card-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;                       
}

.hero__card-divider {
  width: calc(100% + 48px);
  height: 1px;
  background: rgba(255, 255, 255, 0.60);  
  margin-left: -24px;
}

.hero__card-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__dot--red    { background: #FF5B24; }
.hero__dot--yellow { background: #FAFF66; }
.hero__dot--green  { background: #A8FFA6; }

.hero__live {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero__live-dot {
  width: 8px;
  height: 8px;
  background: #A8FFA6;
  border-radius: 50%;
  animation: hero-pulse 1.8s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%       { opacity: 0.4; transform: scale(1.3); }
}

.hero__live-text {
  color: #A8FFA6;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; 
  text-transform: capitalize;
}

.hero__tx-list {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.hero__tx {
  width: 100%;
  min-height: 96px;
  background: rgba(62, 211, 255, 0.32);
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-sizing: border-box;
}

.hero__tx-check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__tx-check img {
  width: 37px;
  height: 24px;
}

.hero__tx-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.hero__tx-name {
  font-size: 16px;
  font-weight: 750;
  color: #ffffff;
  line-height: 25px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
}

.hero__tx-amount {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
  line-height: 25px;
}

.hero__tx-time {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  align-self: flex-start;
  padding-top: 10px;
  line-height: 25px;
}

.hero__card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0; 
  margin-top: 0;
}

.hero__footer-dot {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
}

.hero__footer-text {
  color: #FFF;  
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px; /* 178.571% */
  text-transform: capitalize;
}

/*=============================================
   MOBILE RESPONSIVE — max-width 768px
============================================= */
@media (max-width: 768px) { 
  
  .hero__container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
 
  /* LEFT CONTENT — centered */
  .hero__content {
    flex: none;
    width: 100%;
    /*max-width: 328px;*/
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .hero__heading {
    /*font-size: 35px;
    line-height: 40px;*/
    padding-top: 0;
  } 

  .hero__body {
    font-size: 18px;
    line-height: 24px;
  }
 
  /* Button — centered */
  .hero__btn {
    align-self: center;
  }
 
  /* CARD — full width, max 328px */
  .hero__card {
    flex: none;
    width: 100%;
    /*max-width: 328px;*/
  }
 
  /* Timestamp — bottom right instead of top right */
  .hero__tx {
    align-items: flex-start;
    padding: 12px 16px 12px 0px;
    min-height: auto;
    flex-wrap: wrap;
  }
 
  .hero__tx-check {
    margin-top: 2px;
  }
 
  .hero__tx-info {
    flex: 1;
  }
 
  .hero__tx-time {
    width: 100%;
    align-self: auto;
    text-align: right;
    padding-top: 4px;
  }

  .hero__footer-text {     
    font-size: 12px;    
  }
 
}

/*===================  Hero section ends =================*/
/*===================  Stats section starts =================*/

.stats {
  width: 100%;
  background: #D7F6FF;
  padding: 32px 0;
}

.stats__container {
  /*max-width: 1352px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;*/
}

/* Desktop: 4 items in a row */
.stats__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* Each stat item */
.stats__item {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 265px;
  min-height: 97px;
  background: #D7F6FF;
  border-radius: 15px;
  padding: 15px;
  box-sizing: border-box;
  flex-shrink: 0;
}

/* Icon circle */
.stats__icon {
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #07235A;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stats__icon img {
  /*width: 40px;
  height: 40px;*/
  object-fit: contain;
}

/* Text block */
.stats__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Number row: number + suffix inline */
.stats__number,
.stats__suffix,
.stats__prefix {
  color: #07235A;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  display: inline;
}

h3.stats__number {
  display: inline;
  margin: 0;
  padding: 0;
}

.stats__number-wrap {
  display: flex;
  align-items: baseline;
  gap: 1px;
}

/* Label: 16px / 400 / lh 25px */
.stats__label {
  color: #07235A;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-transform: capitalize;
  display: block;
}

/* =============================================
   MOBILE — marquee auto-scroll
============================================= */
@media (max-width: 768px) {

  .stats {
    overflow: hidden;
    background: #FFFFFF;
  }
  .stats__container {
    padding: 0;
    overflow: hidden;
  }

  /* Track: no wrap, transform driven by JS */
  .stats__track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
    width: max-content;
    padding: 0 24px;
  }

  /* Each item */
  .stats__item {
    background: #D7F6FF;
    border: 1.5px solid #FFFFFF;
    border-radius: 15px;  
    /*width: 220px;*/
    height: 97px;        
    /*min-height: 120px;*/
  }

  /* Icon: 67px on mobile */
  .stats__icon {
    width: 67px;
    height: 67px;
  }

  .stats__number,
  .stats__suffix,
  .stats__prefix {
    font-size: 24px;
  }

  .stats__label {
    font-size: 16px;
    line-height: 25px;
  }

}
/*===================  Stats section ends =================*/
/*===================  PROBLEM SECTION starts =================*/

.problem {
  width: 100%;
  background: #FFFFFF;
  padding: 70px 0;
  overflow: hidden;
}

.problem__container1111 {
  /*max-width: 1352px;
  width: 100%;
  margin: 0 auto;
  padding-left: 78px;*/
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 72px;
  box-sizing: border-box;

}

.problem__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 72px;
  box-sizing: border-box;
  overflow: visible;
}

/* =========================
   LEFT CONTENT
========================= */

.problem__content {
  width: 38%;
  padding-top: 6px;
}

.problem__heading {  
  /*font-size: 40px;
  font-weight: 700;
  line-height: 52px;*/
  max-width: 560px;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 42px;
}

.problem__body-bold {
  max-width: 560px;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: #2f2f2f;
  margin-bottom: 34px;
}

.problem__body {
  max-width: 560px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #444;
}

/* =========================
   RIGHT SIDE
========================= */

.problem__issues111 {
  width: 55%;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 10px;
  margin-right: -145px;
}

.problem__issues {
  width: 45%;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 10px;
  position: relative;
}

/* CARD */

.problem__card {
  position: relative;

  width: calc(100% + 145px);
  margin-right: -145px;

  min-height: 112px;

  background: #EEFBFF;

  border-radius: 26px 0 0 26px;

  padding: 20px 34px 20px 98px;

  display: flex;
  align-items: center;

  box-sizing: border-box;
}

/* =========================
   ISSUE CARD
========================= */

.problem__card1111 {
  position: relative;

  width: 100%;
  min-height: 112px;

  background: #EEFBFF;

  border-radius: 26px 0 0 26px;

  padding: 20px 34px 5px 98px;

  display: flex;
  align-items: center;

  box-sizing: border-box;
}


/* =========================
   ICON
========================= */

.problem__card-icon {
  position: absolute;

  left: -26px;
  top: 50%;

  transform: translateY(-50%);

  width: 66px;
  height: 66px;

  border-radius: 50%;

  background: #2f6df6;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.problem__card-icon img {
  width: 28px;
  height: 28px;

  object-fit: contain;
}

/* =========================
   CARD TEXT
========================= */

.problem__card-text {
  display: flex;
  flex-direction: column;
}

.problem__card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 99%;
  color: #000;
  margin-bottom: 10px;
}

.problem__card-desc {
  max-width: 430px;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #000;
}
/* =========================
   CARD HOVER ANIMATION
========================= */
.problem__card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.problem__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

/* =========================
   MOBILE — max-width 768px
========================= */
@media (max-width: 768px) {

  .problem {
    /*padding: 30px 30px 0px 30px;*/
    overflow: hidden;
    padding-bottom: 0;
    padding: 0;
  }

  .problem__container {
    flex-direction: column;
    gap: 32px;
    /*padding-left: 20px;
    padding-right: 20px;*/
  }

  /* =========================
     LEFT CONTENT
  ========================= */

  .problem__content {
    width: 100%;
    padding: 0;
  }

  .problem__heading {    
    /*font-size: 32px;
    font-weight: 700;
    line-height: 1.15;*/
    letter-spacing: -1px;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .problem__body-bold {
    max-width: 100%;

    font-size: 16px;
    line-height: 1.7;

    margin-bottom: 20px;
  }

  .problem__body {
    max-width: 100%;

    font-size: 14px;
    line-height: 1.7;
  }

  /* =========================
     RIGHT SIDE
  ========================= */

  .problem__issues {
    width: 100%;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 10px;
  }

  /* =========================
     CARD BASE
  ========================= */

  .problem__card {
    position: relative;
    padding-bottom: 0px !important;
    width: calc(100% - 32px);
    min-height: auto;
    background: #EEFBFF;
    border-radius: 18px;
    padding-top: 22px;
    padding-bottom: 22px;
    display: flex;
    align-items: center;
    overflow: visible;
    box-sizing: border-box;
  }

  /* =========================
     1st & 3rd CARD → RIGHT
  ========================= */

  .problem__card:nth-child(odd) {

    width: calc(100% + 20px);
    margin-left: 35px;
    padding-left: 58px;
    padding-right: 18px;    
  }

  .problem__card:nth-child(odd) .problem__card-icon {

    left: -25px;
    right: auto;
  }

  /* =========================
     2nd & 4th CARD → LEFT
  ========================= */

  .problem__card:nth-child(even) {
    width: calc(100% + 5px);
    margin-left: -50px;
    padding-left: 18px;
    padding-right: 58px;
    border-radius: 0px 22px 22px 0px;    
  }

  .problem__card:nth-child(even) .problem__card-icon {

    left: auto;
    right: -25px;
  }

  /* =========================
     ICON
  ========================= */

  .problem__card-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 63px;
    height: 63px;
    border-radius: 50%;
  }

  .problem__card-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  /* =========================
     TEXT
  ========================= */

  .problem__card-text {
    width: 100%;
    padding:10px 20px;
  }

  .problem__card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .problem__card-desc {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.7;
  }
}
/*======================= PROBLEM SECTION end ===================*/

/*======================= PLATFORM SECTION start ===================*/
.platform {
  width: 100%;
  background: #fff;
}

.platform__container {
  /*max-width: 1352px;
  padding: 30px 60px;
  margin: 0 auto;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.platform__heading {
  /*font-size: 40px;
  font-weight: 700;
  line-height: 52px;*/
  color: #000;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.platform__body {
  max-width: 921px;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: #2D2D2D;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {

  .platform {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .platform__container {
    align-items: flex-start;
    text-align: left;
    /*padding: 0px 60px;*/
  }

  .platform__heading {
    /*font-size: 32px;
    line-height: 38px;*/
    margin-bottom: 16px;
  }

  .platform__body {
    font-size: 18px;
    line-height: 24px;
    text-align: left;
  }

}
/*======================= PLATFORM SECTION end ===================*/
/*======================= SOLUTIONS SECTION start =======================*/

.solutions {
  width: 100%;
  background: linear-gradient(180deg, #3FB7FD 0%, #1F6ABB 100%);
  padding: 50px 0 80px;
}

.solutions__container {
  /*max-width: 1352px;
  padding: 0 60px;
  margin: 0 auto;*/
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Tag pill — "Shipping Company" */
.solutions__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 33px;
  padding: 18px 52px;
  border: 1px solid #fff;
  border-radius: 20px;
  background: rgba(7, 35, 90, 0);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Section heading */
.solutions__heading {
  /*font-size: 28px;
  font-weight: 700;
  line-height: 30px;*/
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* Button grid */
.solutions__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* Each feature button */
.solutions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 18px 52px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.19);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.solutions__btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.solutions__btn:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.45);
}

/*======================= SOLUTIONS SECTION MOBILE =======================*/

@media (max-width: 768px) {

  .solutions {
    padding: 40px 0;
  }

  .solutions__container {    
    align-items: flex-start;
    text-align: left;
  }

  .solutions__tag {
    padding: 8px 20px;
    height: auto;
    align-self: center;
  }

  .solutions__heading {
    /*font-size: 24px;
    line-height: 28px;*/
    margin-bottom: 24px;
    text-align: center;
  }

  .solutions__tags {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .solutions__btn {
    width: 100%;
    padding: 14px 20px;
    height: auto;
    font-weight: 500;
    justify-content: center;
  }

}

/*======================= SOLUTIONS SECTION end =======================*/
/*======================= STEPS SECTION start =======================*/

.steps {
  width: 100%;
  background: #fff;
  padding: 60px 0 100px;
}

.steps__container {
  /*max-width: 1352px;
  padding: 0 60px;
  margin: 0 auto;*/
}

/* Desktop track — 3 cards + 2 arrows in a row */
.steps__track {
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Each card */
.steps__card {
  flex: 1;
  background: #F5F8FA;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  box-sizing: border-box;
}

.steps__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: contain;
}

.steps__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.steps__label {
  /*font-size: 20px;
  font-weight: 700;*/
  line-height: 30px;
  color: #000;
  text-transform: capitalize;
  margin: 0;
}

.steps__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  color: #000;
  text-transform: capitalize;
  margin: 0;
}

.steps__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #000;
  margin: 0;
}

/* Arrow between cards */
.steps__arrow {
  flex-shrink: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps__arrow img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Nav buttons — hidden on desktop */
.steps__nav {
  display: none;
}

/*======================= STEPS SECTION MOBILE =======================*/

@media (max-width: 768px) {

  .steps {
    padding: 40px 0;
    overflow: hidden;
  }

  .steps__container {
    padding: 0 40px 80px;
  }

  .steps__track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
    transition: transform 0.35s ease;
    will-change: transform;
  }

  .steps__card {
      flex: 0 0 100%;
      min-width: 100%;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 32px 24px;
      min-height: auto;
      border-radius: 16px;
      scroll-snap-align: center;
  }

  .steps__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 8px;
  }

  .steps__label {
    /*font-size: 18px;*/
    line-height: 30px;
  }

  .steps__title {
    font-size: 16px;
    line-height: 30px;
  }

  .steps__desc {
    font-size: 16px;
    line-height: 30px;
  }

  .steps__arrow {
    display: none;
  }

  .steps__nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }

  .steps__nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .steps__nav-btn img {
      width: 52px;
      height: 52px;
      object-fit: contain;
  }

  .steps__nav-btn:hover {
      transform: scale(1.05);
      opacity: 0.85;
  }

  .steps__nav-btn:active {
      transform: scale(0.97);
  }
   

}

/*======================= STEPS SECTION end =======================*/
/*======================= FEATURES SECTION start =======================*/

.features {
  width: 100%;
  background: #F5F8FA;
  padding: 30px 0 60px;
  position: relative;
}

.features__container {
  /*max-width: 1352px;
  padding: 0 60px;
  margin: 0 auto;*/
}

/* Blue tag buttons row */
.features__tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

.features__tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #3479FF;
  border-radius: 14px;
  padding: 20px 28px;
  min-width: 200px;
  cursor: default;
  transition: background 0.25s ease, transform 0.2s ease;
}

.features__tag:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.features__tag-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.features__tag-label {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 30px;
}

/* White feature cards grid */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.features__card {
  background: #fff;
  border: 1px solid #FFF;
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.features__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.features__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 20px;
}

.features__title {
  /*font-size: 20px;
  font-weight: 700;
  line-height: 30px;*/
  color: #000;
  text-transform: capitalize;
  margin: 0 0 12px 0;
}

.features__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #000;
  margin: 0;
}

.features__divider {
  border: none;
  border-top: 1px solid #000;
  margin: 20px 0;
}

.features__list {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.features__list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #000;
}

.features__nav {
  display: none;
}

@media (max-width: 768px) {

  .features {
    padding: 20px 0 40px
  }

  .features__container {
    padding: 0;
  }

  .features__tags-wrapper {
      display: flex;
      justify-content: center;
      padding: 0 40px;
  }

  .features__tags {
    display: grid;
    grid-template-columns: repeat(2, 146px);
    gap: 16px;
    margin-top: -80px;
    position: relative;
    z-index: 2;
    justify-content: center;
  }

  .features__tag {
      width: 146px;
      min-width: unset;
      height: 104px;
      border-radius: 8px;
      padding: 16px 12px;
      gap: 8px;
  }

  .features__tag-icon {
    width: 35px;
    height: 35px;
  }

  .features__tag-label {
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;
    text-transform: capitalize;
  }

  .features__grid-wrapper {
    overflow: hidden;
    padding: 0 40px;
  }

  .features__grid {
    display: flex;
    flex-direction: row;
    gap: 16px;
    transition: transform 0.35s ease;
    will-change: transform;
  }

  .features__card {
    flex: 0 0 100%;
    min-width: 100%;
    border-radius: 16px;
    padding: 24px 20px;
    box-sizing: border-box;
  }

  .features__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .features__title {
    /*font-size: 16px;
    line-height: 24px;*/
    margin-bottom: 8px;
  }

  .features__desc {
    font-size: 14px;
    line-height: 24px;
  }

  .features__divider {
    margin: 16px 0;
  }

  .features__list li {
    font-size: 14px;
    line-height: 26px;
  }

  .features__nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }

  .features__nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .features__nav-btn img {
    width: 52px;
    height: 52px;
    object-fit: contain;
  }

  .features__nav-btn:hover {
    transform: scale(1.05);
    opacity: 0.85;
  }

  .features__nav-btn:active {
    transform: scale(0.97);
  }

}
/*======================= FEATURES SECTION end =======================*/
/*======================= PAYMENTS SECTION start =======================*/

.payments {
  width: 100%;
  background: #fff;
  padding: 70px 0;
}

.payments__header {
  text-align: center;
  margin-bottom: 48px;
}

.payments__heading {
  color: #000;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.payments__body {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: #2D2D2D;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.payments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.payments__card {
  background: #EEFBFF;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  min-height: 279px;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.payments__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.payments__icon {
  /*width: 129px;
  height: 114px;
  object-fit: contain;
  margin-bottom: 24px;*/
  width: auto;
  height: auto;
  max-width: 130px;
  max-height: 115px;
  object-fit: contain;
  margin-bottom: 24px;
}

.payments__label {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #07235A;
  text-align: center;
  margin: 0;
}
.payments__nav {
  display: none;
}
@media (max-width: 768px) {

  .payments {
    padding: 40px 0;
  }

  .payments__header {
    padding: 0 30px;
    margin-bottom: 32px;
  }

  .payments__body {
    font-size: 18px;
    line-height: 25px;
  }

  .payments__grid-wrapper {
    overflow: hidden;
    /*padding: 0 30px;*/
  }

  .payments__grid {
    display: flex;
    flex-direction: row;
    gap: 16px;
    transition: transform 0.35s ease;
    will-change: transform;
  }

  .payments__card {
    flex: 0 0 calc(50% - 8px);
    min-width: calc(50% - 8px);
    min-height: auto;
    padding: 20px 12px;
    border-radius: 16px;
  }
  .payments__icon {
    max-width: 80px;
    max-height: 80px;
    margin-bottom: 16px;
  }

  .payments__label {
    font-size: 16px;
    line-height: 22px;
  }  

  .payments__nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }

  .payments__nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .payments__nav-btn img {
    width: 52px;
    height: 52px;
    object-fit: contain;
  }

}
/*======================= PAYMENTS SECTION end =======================*/