.signup-section {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .form-column {
      padding: 40px;
      background: #fff5fb;
    }
    .form-column h2 {
      font-weight: 600;
      margin-bottom: 20px;
    }
    .type-feild {
      position: relative;
      margin-bottom: 20px;
    }
    /* .type-feild i {
      position: absolute;
      top: 50%;
      left: 12px;
      transform: translateY(-50%);
      color: #888;
    } */
    .type-feild input {
      width: 100%;
      padding: 12px 40px;
      border: 1px solid #ddd;
      border-radius: 8px;
      outline: none;
    }
    .toggle-password {
      position: absolute;
      top: 50%;
      right: 12px;
      transform: translateY(-50%);
      cursor: pointer;
      color: #888;
    }
    /* .theme-btn {
      background: linear-gradient(45deg, #8e2de2, #4a00e0);
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      transition: 0.3s;
      width: 100%;
    }
    .theme-btn:hover {
      background-position: right center;
      opacity: 0.9;
    } */
    .signin-text {
      margin-top: 15px;
      text-align: center;
    }
    .signin-text a {
      font-weight: 600;
      text-decoration: none;
    }

    h1, h2, h3, h4, h5, h6, p {
  cursor: default; /* arrow instead of text beam */
}


.ledger-section .summary-box {
  position: relative;
  transition: filter .25s ease, box-shadow .25s ease, background .25s ease;
}

/* slight overall darken */
.ledger-section .summary-box:hover {
   transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(22, 56, 56, 0.25); /* #163838 with opacity */
}

/* extra gentle overlay to ensure visible darkening even if bg has !important */
.ledger-section .summary-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: background .25s ease;
}
/* .ledger-section .summary-box:hover::after {
  background: rgba(0, 0, 0, 0.06); /* ~6% dark overlay 
} */

.auto-redirect .card {
  transition: all 0.3s ease;
}

.auto-redirect .card:hover {
  background: #e1fea1;
    color: black;
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.auto-redirect .card:hover i,
.auto-redirect .card:hover h3,
.auto-redirect .card:hover p {
  /* color: white !important; */
  color: black !important;
}


.testimonial-section-3 .content-box-style-3 ul,
.testimonial-section-3 .content-box-style-3 ol {
  margin: 0.45rem 0 0 1.25rem !important;
  padding-left: 1.2rem !important;
}

.testimonial-section-3 .content-box-style-3 ul li,
.testimonial-section-3 .content-box-style-3 ol li {
  display: list-item !important;
  list-style-position: outside !important;
  margin-bottom: 0.35rem;
}

/* UL gets disc bullets */
.testimonial-section-3 .content-box-style-3 ul li {
  list-style-type: disc !important;
}

.dashboard-section .card {
  background: var(--theme-color2)  !important;
  color: white!important;
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}
 /* Hover effect only for top summary cards */
    .dashboard-section .row.g-4 .card:hover {
        background: #24424d !important;
        color: #fff !important;
    }

    .dashboard-section .row.g-4 .card:hover h2,
    .dashboard-section .row.g-4 .card:hover p {
        color: #fff !important;
    }



.v-hidden {
  visibility: hidden !important;
}


@keyframes wobbleIn {
  0%   { transform: translateX(-100%); opacity: 0; }
  15%  { transform: translateX(20px) rotate(3deg); opacity: 1; }
  30%  { transform: translateX(-15px) rotate(-3deg); }
  45%  { transform: translateX(10px) rotate(2deg); }
  60%  { transform: translateX(-5px) rotate(-1deg); }
  100% { transform: translateX(0) rotate(0); opacity: 1; }
}

.notification-effect {
  animation: wobbleIn 0.8s ease;
}


a {
  text-decoration: none !important;
}



.growth-block .content-box {
    /* background: rgba(255, 255, 255, 0.05); optional subtle bg */
    background: #e1fea1;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
}

.growth-block .content-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.growth-block .content-box:hover h4.title,
.growth-block .content-box:hover p.text {
    color: #C8F169;
}


/* let scaled cards show outside the row */
.order-slider {
  overflow-x: auto;
  overflow-y: visible;        /* critical: prevents vertical clipping */
  align-items: center;        /* nicer vertical alignment in the flex row */
}

/* base card */
.order-card {
  position: relative;         /* so z-index works */
  z-index: 1;
  transition: transform .3s ease, box-shadow .3s ease;
  will-change: transform;
}

/* make the active one pop ABOVE neighbors */
.order-card.active {
  transform: translateY(-6px) scale(1.14) !important;  /* !important beats animate.css/WOW transforms */
  box-shadow: 0 8px 30px rgba(0,255,150,.65);
  z-index: 10;
}

/* if WOW/animate.css is still fighting you, this ensures your scale wins */
.order-card.active.wow,
.order-card.active.animated {
  animation: none !important;
}

.order-slider {
  overflow-x: auto;     /* only horizontal scroll */
  overflow-y: hidden;   /* prevent vertical scrollbar */
  -ms-overflow-style: none;  /* IE/Edge */
  scrollbar-width: none;     /* Firefox */
}

.order-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* .dashboard-section .card:hover {
  background: var(--theme-color3) !important;
  color: var(--theme-color3-text-color) !important;
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
} */
/***

==================================================================
    Banking Services Section 
==================================================================

***/



/* Banking Services Section Tabs */
.banking-services-content .nav {
  display: flex;
  align-items: center;
  border-radius: 100px;
  background: #FFF;
  justify-content: space-between;
  padding: 8px 10px;
  margin-top: 45px;
}

[data-tm-layout=dark] .banking-services-content .nav {
  background-color: #1F4646;
}

@media (max-width: 767.98px) {
  .banking-services-content .nav {
    margin-top: 30px;
    border-radius: 20px;
    justify-content: start;
  }
}

.banking-services-content .nav .nav-item .nav-link {
  padding: 25px 18px;
  font-size: 16px;
  font-weight: 500;
  color: var(--headings-color);
  border-radius: 100px;
  line-height: 1;
}

@media (max-width: 1199.98px) {
  .banking-services-content .nav .nav-item .nav-link {
    font-size: 15px;
    padding: 18px 20px;
  }
}

.banking-services-content .nav .nav-item .nav-link.active {
  background-color: #24424d;
  /* background-image: linear-gradient(to left, var(--theme-color1) 0%, var(--theme-color7) 50%, var(--theme-color1) 100%); */
  background-size: 200%;
  transition: all 300ms ease;
  color: #fff;
}

.banking-services-content .nav .nav-item .nav-link.active:hover {
  background-position: 100% 0;
}




/***
==================================================================
    Payment Section
==================================================================

***/
/* Payment Entry Section cards styled like Feature Growth */
#payment-entry-section .card {
  position: relative;      /* required for ::before layering */
  z-index: 0;              /* ensure hover registers */
  text-align: center;
  padding: 34px 25px;
  border: none;
  margin: 10px;
  flex: 1;
  /* background: transparent; */
  background: #d4e2e3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#payment-entry-section .card::before {
  /* background-color: var(--theme-color-white); */
  border-radius: 15px;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  content: "";
  z-index: -1; /* safely behind */
}

#payment-entry-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(22, 56, 56, 0.25); /* #163838 with opacity */
}


#payment-entry-section .card h5 {
  margin-bottom: 15px;
}
#payment-entry-section .card p {
  margin: 0;
}

/* remove ::after hover effect completely */
#payment-entry-section .card::after {
  display: none;
}

/* icon gradient (static, no hover) */
#payment-entry-section .card .icon {
  /* background-image: linear-gradient(
    to left,
    var(--theme-color1) 0%,
    var(--theme-color7) 50%,
    var(--theme-color1) 100%
  ); */
  background: #24424d;  
  background-size: 200%;
  border-radius: 50%;
  font-size: 40px;
  color: var(--theme-color-white);
  height: 103px;
  line-height: 103px;
  margin: 0 auto 20px;
  text-align: center;
  width: 103px;
}

/* text stays static */
#payment-entry-section .card h5 {
  margin-bottom: 15px;
}
#payment-entry-section .card p {
  margin: 0;
}
 
 

  /* Base card */
  #payment-entry-section .card {
    border: 0;
    transition: transform .25s ease, box-shadow .25s ease;
    will-change: transform, box-shadow;
  }

  /* Hover/focus/active state */
  /* #payment-entry-section .card:hover,
  #payment-entry-section .card:focus-within,
  #payment-entry-section .card:active {
     transform: translateY(-8px);
  box-shadow: 0 20px 40px green;
    
  } */


.payment-section .nav {
  display: flex;
  align-items: center;
  border-radius: 100px;
  justify-content: space-between;
  padding: 8px 10px;
  margin-top: 45px;
}

[data-tm-layout=dark] .payment-section .nav {
  background-color: #1F4646;
}

@media (max-width: 767.98px) {
  .payment-section .nav {
    margin-top: 30px;
    border-radius: 20px;
    justify-content: start;
  }
}

.payment-section .nav .nav-item .nav-link {
  padding: 25px 18px;
  font-size: 16px;
  font-weight: 500;
  color: var(--headings-color);
  border-radius: 100px;
  line-height: 1;
}

@media (max-width: 1199.98px) {
  .payment-section .nav .nav-item .nav-link {
    font-size: 15px;
    padding: 18px 20px;
  }
}

.payment-section .nav .nav-item .nav-link.active {
      background-color: #24424d !important;
  /* background-image: linear-gradient(to left, var(--theme-color1) 0%, var(--theme-color7) 50%, var(--theme-color1) 100%); */
  background-size: 200%;
  transition: all 300ms ease;
  color: #fff;
}

.payment-section .nav .nav-item .nav-link.active:hover {
  background-position: 100% 0;
}

.why-choose-us-content-1 .nav .nav-item .payment {
    padding: 25px 18px;
    font-size: 16px;
    font-weight: 500;
    
    border-radius: 100px;
    line-height: 1;
}


.section-padding {
    padding: 60px 0px;
}
/* Header  */

@media (max-width: 1024px) {
  .main-header .main-menu,
  .main-header .outer-box > .theme-btn {
    display: none !important; /* Hide desktop nav + signup */
  }
  .main-header .mobile-nav-toggler {
    display: block !important; /* Show hamburger */
  }
}

/* Banking  */
@media (max-width: 767.98px) {
  .banking-services-section h2 {
    font-size: 45px !important;
    line-height: 1.2;
  }
}


/* accounting page banner */
.banner-style {
  margin: 30px;
  position: relative;
  border-radius: 30px;
  padding: 150px 60px 150px;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .banner-style {
    padding: 180px 30px;
    margin: 0;
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .banner-style {
    padding: 130px 20px;
    margin: 20px;
  }
}

/* Overlay */
.banner-style::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  /* background: linear-gradient(103deg, rgba(6,41,40,0.9) 38.63%, rgba(11,49,48,0) 96.73%); */
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .banner-style::before {
    border-radius: 0;
  }
}
/* iPad Pro responsive layout */
@media (max-width: 1199px) {
  .banner-section .banner-content {
    
    margin-bottom: 2rem;
  }

  .banner-section .col-lg-5,
  .banner-section .col-lg-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .banner-section .banner-box-group {
    justify-content: center;
  }
}

/* Headings */
.banner-style .banner-content h1 {
  color: var(--theme-color-white);
  line-height: 1.11;
}
.banner-style .banner-content h1 span {
  position: relative;
}
.banner-style .banner-content h1 span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10px;
  width: 104%;
  height: 20px;
  background: linear-gradient(90deg, #149B93 0%, #B7E96C 100%);
  z-index: -1;
}
@media (max-width: 767.98px) {
  .banner-style .banner-content h1 span::before {
    width: 90%;
    bottom: 10px;
    left: 0;
  }
}

/* Text */
.banner-style .banner-content .banner-text {
  font-size: 20px;
  color: var(--theme-color-white);
  margin-top: 30px;
  max-width: 470px;
}

/* Box group aligned evenly */
.banner-style .banner-box-group .banner-box {
  border-radius: 30px;
  /* background: rgba(255, 255, 255, 0.2); */
  background: #d4e2e3;
  backdrop-filter: blur(20px);
  padding: 30px 5px;
  height: 100%; /* ensures equal height */
}
.banner-style .banner-box-group .banner-box2 {
  border-radius: 30px;
  /* background: rgba(255, 255, 255, 0.2); */
  background: #e1fea1;
  backdrop-filter: blur(20px);
  padding: 30px 5px;
  height: 100%; /* ensures equal height */
}
.banner-style .banner-box .icon {
  font-size: 40px;
  color: black;
  transition: all 900ms ease;
}
.banner-style .banner-box .content {
  margin-top: 20px;
}
.banner-style .banner-box .content h3 {
  font-size: 24px;
  font-weight: 600;
  color: black;
  margin-bottom: 10px;
}
.banner-style .banner-box .content p {
  font-size: 18px;
  color:black;

}
.banner-style .banner-box2 .icon {
  font-size: 40px;
  color: black;
  transition: all 900ms ease;
}
.banner-style .banner-box2 .content {
  margin-top: 20px;
}
.banner-style .banner-box2 .content h3 {
  font-size: 24px;
  font-weight: 600;
  color: black;
  margin-bottom: 10px;
}
.banner-style .banner-box2 .content p {
  font-size: 18px;
  color:black;

}
.banner-style .banner-box:hover .icon {
  transform: rotateY(360deg);
}
.banner-style .banner-box2:hover .icon {
  transform: rotateY(360deg);
}
@media (max-width: 767.98px) {
  .banner-style .banner-content h1 {
    font-size: 45px;
  }
}

/* curront account  */
@media (max-width: 767.98px) {
  .current-account h2 {
    font-size: 24px !important;
  }
}

@media (max-width: 576px) {
  .auto-redirect h2 {
    font-size: 50px !important;
  }
  .dashboard-section h1{
     font-size: 50px !important;
  }
  .tax-calculator h1{
     font-size: 50px !important;
  }
  .payout-hero h2{
     font-size: 25px !important;
  }
}

@media (max-width: 1024px) {
    .pricing-content-2 p {
    max-width: 100%;
}
    .hero-1 {
        padding: 80px 25px 0px;
    }
}

.banner-box-group .col-md-6 {
    display: flex;
}

.banner-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1;              /* make all boxes equal height */
    padding: 20px;
    border-radius: 12px;  /* optional: keep styling consistent */
    background: #fff;     /* optional: in case you need background */
}

/* Testimonial card layout */
.testimonial-card-item {
  display: flex;
  flex-direction: row;
  height: 240px; /* fixed height on desktop/tablet */
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  align-items: stretch;
}

/* Left section (name) */
.testimonial-card-item .client-item {
  flex: 0 0 40%;
  background-color: #24424d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.testimonial-card-item .client-item h5 {
  font-weight: 600;
  margin: 0;
  color: #fff;
  font-size: 18px;
}

/* Right section (testimonial text) */
.testimonial-card-item .content {
  flex: 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  height: 100%;
}

.testimonial-card-item .content p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 16px;
}

/* Responsive stacking */
@media (max-width: 992px) {
  .testimonial-card-item {
    flex-direction: column;
    height: 300px;
  }

  .testimonial-card-item .client-item,
  .testimonial-card-item .content {
    width: 100%;
    height: auto;
    padding: 15px;
  }
}
.project-image-4 {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.project-image-4 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.project-image-4 .title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;   /* vertical center */
    align-items: center;       /* horizontal center */
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.project-image-4:hover .title {
    opacity: 1;
}

.project-image-4 .title h3 {
    color: #C8F169;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.project-image-4 .title p {
    font-size: 15px;
    line-height: 1.5;
}



.service-card-items-2 .content {
  flex-grow: 1; /* fills remaining space so arrows align */
 padding: 25px 25px 40px;
}
/* Make all service cards equal height */
.service-section-2 .row {
  display: flex;
  flex-wrap: wrap;
}

.service-section-2 .row > [class*="col-"] {
  display: flex;
}

.service-card-items-2 {
  flex: 1;
  display: flex;
  flex-direction: column;
   height: 450px;
}
.navigation a.active,
.navigation .nav-link.active {
    text-decoration: underline !important;
    text-underline-offset: 4px; /* keeps underline slightly below text */
    text-decoration-thickness: 2px; /* makes underline a bit bolder */
}


.info-list {
  padding-left: 20px; /* space for bullets */
}

.info-list .list-item {
  position: relative;
  margin-bottom: 8px; /* spacing between items */
  padding-left: 20px;
}

.info-list .list-item::before {
  content: "•";         /* bullet symbol */
  position: absolute;
  left: 0;
  color: #fff;          /* you can change bullet color */
  font-weight: bold;
}

 /* Common left icons inside input */
    .input-icon-left {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        margin-left: 0.75rem; /* same as Bootstrap ms-3 */
        pointer-events: none;
    }

    /* Right-side icons (like eye toggle) */
    .input-icon-right {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        margin-right: 0.75rem; /* same as Bootstrap me-3 */
        cursor: pointer;
    }

    /* Ensure inputs have spacing for icons */
    .type-feild input {
        padding-left: 2.5rem;  /* space for left icon */
        padding-right: 2.5rem; /* space for right icon */
    }
    @media (max-width: 576px) {
  .hero-section h1 {
    font-size: 45px;
    line-height: 1.2; /* optional: keeps it readable */
  }
}

.image-column-3 .inner-column {
  display: flex;
  flex-direction: column;  /* stack vertically */
  align-items: center;     /* center inside column */
  gap: 20px;               /* even space between images */
}

.image-column-3 img {
  max-width: 100%; 
  height: auto;
  display: block;
}

.container-margin {
  padding: 0 30px 10px;
}

.color-gradient{
  background: var(--Linear, linear-gradient(70deg, #C8F169 0%, #039397 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tab-content{
  padding-top: 20px;
}
.icon-center{
  margin-left: auto;
    margin-right: auto;
}



  .payment-map {
            position: relative;
            width: 900px;
            margin: auto;
        }

        .map-bg {
            width: 100%;
            display: block;
        }

        .center-content {
            position: absolute;
            top: 50%;
            left: 48%;
            width: 220px;
            height: 220px;
            background: transparent;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: 600;
            font-size: 16px;
            color: #1d3e4d;
            pointer-events: none;
        }

        /* Invisible clickable circles */
        .hotspot {
            position: absolute;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            cursor: pointer;
            /* Debug: uncomment to see hotspot area */
            /* background: rgba(255,0,0,0.2); */
        }

        /* Positioning hotspots matching your image EXACTLY */
        .hs-static {
            top: 0%;
            left: 48%;
            transform: translateX(-50%);
        }

        .hs-dynamic {
            top: 28%;
            right: 7%;
        }

        .hs-upi {
            bottom: 7%;
            right: 24%;
        }

        .hs-bank {
            bottom: 7%;
            left: 19%;
        }

        .hs-link {
            top: 29%;
            left: 11%;
        }

        .logo-70 {
          height: 50px;
        }

        .submit-button{
          background-color: #24424d;
          color: white;
          
        }

        /* ----- Card wrapper ----- */
.team-block-five .inner-box {
    background: #2D4F55;
    border-radius: 16px;
    /* padding: 70px 25px 30px; extra top padding so image sits above */
    padding: 70px 25px 185px;
    text-align: center;
    position: relative;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.10);
    transition: 0.3s;
}

.team-block-five .inner-box:hover {
    transform: translateY(-5px);
}

/* ----- IMAGE ABOVE CARD ----- */
.team-image {
    position: absolute;
    top: -35px;   /* lifts image above the card */
    left: 50%;
    transform: translateX(-50%);
}

.team-image img {
    width: 65px;   /* smaller icon */
    height: auto;
    filter: brightness(0) invert(1); /* white like reference */
}

.team-image img:last-child {
    display: none; /* remove duplicate */
}

/* ----- Text ----- */
.content-box .name {
    color: #ffffff;
    font-size: 19px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}

.content-box .designation {
    color: #C8EAE2;
    font-size: 15px;
    line-height: 1.5;
}
.vendor-notification-section{
  background: url('../image/payout-notification-bg.png');
}

.dynamic-qr-section {
    padding: 80px 0;
    background: #DCE9E9;       /* light teal-grey background */
    text-align: center;
    color: #1F3940;            /* dark-teal / charcoal for main text */
}

.title {
    font-size: 24px;
    font-weight: 400;
    color: #1F3940;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: #1F3940;
    opacity: 0.8;
    margin-bottom: 50px;
}

/* QR Box */
.qr-wrapper {
    width: 260px;
    height: 260px;
    margin: 0 auto 50px;
    padding: 20px;
    border-radius: 15px;
    background: #EEF7F7;      /* subtle light background inside QR box */
    border: 8px solid #1F3940; /* dark-teal border around QR — matches box style */
    /* optional glow / shadow */
    box-shadow: 0 0 25px rgba(31, 57, 64, 0.2);
}

.qr-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Buttons / Order boxes */
.order-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.order-btn {
    background: #1F3940;      /* dark-teal background for buttons */
    border: none;
    color: #FFF;              /* white text */
    padding: 18px 28px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
    min-width: 150px;
    text-align: center;
}

.order-btn span {
    color: #9EDB8E;            /* soft green for the price/amount */
    font-weight: 600;
}

.order-btn:hover,
.order-btn.active {
    background: #25474F;      /* a slightly lighter/darker variant on hover/active */
    transform: translateY(-5px);
}

.feature-section {
    padding: 60px 0;
    background: url("../image/Track_verify_and_transact.png") center/cover no-repeat;
}

.feature-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
}

.feature-box {
    text-align: left;
    width: 25%;
}

.icon-circle {
    width: 140px;
    height: 140px;
    background: #dfff73;  /* neon green like your image */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.icon-circle img {
    width: 60px;
    height: 60px;
}

.feature-box p {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
}
@media (max-width: 768px) {
    .feature-container {
        flex-direction: column;
    }

    .feature-box {
        width: 100%;
    }

    .icon-circle {
        width: 120px;
        height: 120px;
    }
}
