*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
     
}
html{
  width: 100%!important;
  max-width: 100%!important;
  overflow-x: hidden!important;
}
:root{
  --font-heading: 'Marope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --primary: #72bc44;
  --dark: #1A1C1C;
  --text: #5E5E5E;
  --white: #ffffff;
}
body{
  font-family: var(--font-body);
  margin:0;
  width: 100%!important;
  max-width: 100%!important;
 overflow-x: hidden!important;
 
}
/* BASE HEADING STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

/* HERO / PRIMARY HEADING */
h1 {
  font-size: clamp(2.4rem, 1.8rem + 2vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
}

/* SECTION TITLES */
h2 {
  font-size: clamp(2rem, 1.6rem + 1.2vw, 2.8rem);
}

/* SUB SECTION */
h3 {
  font-size: clamp(1.5rem, 1.2rem + 0.8vw, 2rem);
}

/* CARD TITLES */
h4 {
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.6rem);
}

/* SMALL HEADINGS */
h5 {
  font-size: 1.1rem;
  font-weight: 500;
}

/* MICRO LABELS */
h6 {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text);
}
/* HEADER */
.main-header {
  padding: 16px 0;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #eee;
}

/* Logo */
.logo {
  height: 90px;
}

/* Nav Links */
.navbar-nav .nav-link {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  font-size: 16px;
  margin: 0 10px;
  transition: 0.3s;
}
.navbar-expand-lg .navbar-nav .nav-link{
  padding-right: 0.2rem;
  padding-left: 0.2rem;
}
.navbar-nav .nav-link:hover {
  color: var(--primary);
}

/* Dropdown */
.dropdown-menu {
  border-radius: 10px;
  padding: 10px 0;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.dropdown-item {
  font-size: 14px;
  padding: 8px 20px;
}

.dropdown-item:hover {
  background: #f5f5f5;
}

/* Right Section */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  font-size: 13px;
   margin-right: 20px;
}

.contact-info a {
  font-family: 'Inter', sans-serif;
  font-size: 15px; 
  color: #5E5E5E;
  text-decoration: none;
  line-height: 1.4;
  transition: all 0.3s ease-in-out;
}

.contact-info a:hover {
  color: var(--primary);
}

/* Button */
.btn-primary {
  display:inline-block;
  background: var(--primary);
  border: none;
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  position: relative;
  font-weight: 500;
  transition: 0.3s;
  z-index: 0;
  overflow: hidden;
}
.btn-primary::before {
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: -200%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 1;
    background: var(--primary);
}
.btn-primary:hover::before{
	top: 0%;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 991px) {
  .header-right {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 15px;
  }

  .contact-info {
    flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 992px) {

  .nav-hover .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
  }

  .nav-hover .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* remove bootstrap click arrow behavior */
  .nav-hover .dropdown-toggle::after {
    margin-left: 6px;
  }
}
.btn-cta {
  background: #1A1C1C; 
  color: #fff;
  padding: 12px 26px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #000;
  color: var(--primary);
  /*transform: translateY(-2px);*/
}
/* HERO SECTION */
.hero-section {
  padding: 100px 0 80px;
  background: #fff;
  overflow: hidden;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  font-size: 13px;
  letter-spacing: 1px;
  color: #5E5E5E;
  margin-bottom: 20px;
}

.hero-eyebrow span {
  width: 40px;
  height: 2px;
  background: #72bc44;
  margin-right: 12px;
}

/* Heading */
.hero-content h1 {
  font-size: clamp(2.5rem, 2rem + 2vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.text-highlight {
  color: #72bc44;
}

/* Paragraph */
.hero-content p {
  font-size: 17px;
  color: #5E5E5E;
  max-width: 520px;
  margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-dark {
  background: #1A1C1C;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.btn-dark:before{
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
	position: absolute;
	width: 200%;
	height: 300%;
	content: "";
	top: -300%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: 1;
	background: var(--primary);
}

.btn-dark:hover:before{
	top: -18%;
}

.btn-dark .btn-wrap {
    position: relative;
    z-index: 1;
    float: left;
    overflow: hidden;
    display: inline-block;
}
.btn-dark .btn-wrap .text-one{
	position: relative;
	display: block;
	color: var(--white-color);
	transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.btn-dark:hover .btn-wrap  .text-one:first-child{
	-webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-dark .btn-wrap .text-two{
	position: absolute;
    top: 100%;
    display: block;
	color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-dark:hover .btn-wrap .text-two{
	top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.btn-outline {
  border: 1px solid #ddd;
  padding: 14px 28px;
  border-radius: 12px;
  color: #1A1C1C;
  text-decoration: none;
  transition: 0.3s;
}
.btn.btn-dark:hover{
  border:1px solid #2eb860;
}
.btn-outline:hover {
  border-color: #72bc44;
  color: #72bc44;
}

/* IMAGE SIDE */
.hero-image-wrapper {
  position: relative;
  display: inline-block;
}

/* Background Circle */
.hero-bg-circle {
  position: absolute;
  width: 420px;
  height: 420px;
  background: #f3f4f4;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Product Image */
.hero-image {
  position: relative;
  z-index: 2;
  max-width: 340px;
  animation: floatY 4s ease-in-out infinite;
}

/* Floating Animation */
@keyframes floatY {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .hero-section {
    padding: 70px 0;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-content p {
    margin: 0 auto 25px;
  }

  .hero-bg-circle {
    width: 300px;
    height: 300px;
  }

}

@media (max-width: 576px) {

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-image {
    max-width: 260px;
  }

}

/* SECTION */
.trusted-section {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
  text-align: center;
}

/* TITLE */
.trusted-title {
  font-size: 13px;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 40px;
}

/* SLIDER */
.trusted-slider {
  overflow: hidden;
}

/* LOGO */
.trusted-slider img {
  max-height: 65px;
  width: auto;
  object-fit: contain;
  /* filter: grayscale(100%); */
  /* opacity: 0.7; */
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.trusted-slider img:hover {
  /* filter: grayscale(0%); */
  /* opacity: 1; */
  transform: scale(1.05);
}

/* ALIGNMENT */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SECTION */
.platform-section {
  padding: 60px 0px 60px 0px;
  background: #fff;
}

/* HEAD */
.section-head h6 {
  font-size: 13px;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 10px;
}

.section-head h2 {
  margin-bottom: 40px;
}

/* TABS */
.platform-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.tab-btn {
  border: none;
  background: #f1f1f1;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.tab-btn span {
  background: #ddd;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 12px;
}

/* ACTIVE TAB */
.tab-btn.active {
  background: #72bc44;
  color: #000;
}

.tab-btn.active span {
  background:#C7FFDB;
}

/* CONTENT */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* TEXT */
.platform-text h3 {
  margin-bottom: 20px;
}

.platform-text p {
  margin-bottom: 25px;
}

/* BUTTONS */
.platform-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.read-link {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.read-link:hover {
  color: #72bc44;
}

/* CARD */
.platform-card {
  background: #ffff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #E2E2E2;
}

.platform-content{
  border-radius: 16px;
  background-color: #F7F7F7;
  padding: 30px;
}
.platform-card h6 {
  font-size: 12px;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 15px;
}

.platform-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.platform-card li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.platform-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #72bc44;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}



/* =========================================
   DDMP
========================================= */

.platform-ddmp-right {
  padding-left: 40px;
}

.ddmp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #e8e8e8;
}

.ddmp-stat-item h4 {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 10px;
}

.ddmp-stat-item p {
  margin: 0;
  font-size: 15px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.industry-tags span {
  padding: 12px 18px;
  border: 1px solid #e8e8e8;
  border-radius: 50px;
  font-size: 15px;
}

.industry-tags span.active {
  background: #EEF4FF;
  color: var(--primary);
}

/* =========================================
   WALLET
========================================= */

.wallet-preview {
  text-align: center;
}

.wallet-preview img {
  max-width: 100%;
  max-height: 420px;
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.12));
}

/* =========================================
   RTIP
========================================= */

.platform-text-purple h3 span {
  color: var(--primary);
}

.small-title-purple {
  color: var(--primary);
}

.wallet-preview-purple img {
  filter: drop-shadow(0 30px 80px rgba(123,77,255,0.25));
}

/* FEATURES */
.rtip-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 45px 0;
  padding: 35px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.rtip-feature h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.rtip-feature p {
  margin: 0;
  font-size: 15px;
}

/* TAGLINE */
.rtip-tagline {
  color: var(--dark);
  font-style: italic;
  font-size: 15px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

  .platform-ddmp-right {
    padding-left: 0;
  }

  .wallet-preview {
    margin-top: 20px;
  }

}

@media (max-width: 767px) {

  .ddmp-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rtip-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .platform-buttons {
    flex-wrap: wrap;
  }

  .rtip-tagline {
    width: 100%;
    margin-top: 10px;
  }

}


/* RESPONSIVE */
@media (max-width: 991px) {

  .platform-section {
    padding: 50px 0;
  }

  .platform-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .tab-btn {
    white-space: nowrap;
  }

  .platform-card {
    margin-top: 30px;
  }

}

/* SECTION */
.reliability-section {
  padding: 100px 0;
  background: #f7f7f7;
}

/* CARD */
.re-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  z-index: 0;
}
.recard-inner-wr{
  position: relative;
  z-index: 1;
}
.re-card::before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: black;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    z-index: 0;
}
.re-card:hover::before{
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
    z-index: 0;
}
/* NUMBER */
.re-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  color: rgba(74, 222, 128, 0.3);
  font-weight: 600;
}
.re-card:hover .re-number{
  color: #ffffffa0;
}
.re-card:hover .re-icon{
  background: #f3f4f4bc;
}

/* ICON BOX */
.re-icon {
  width: 60px;
  height: 60px;
  background: #f3f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
 
}

.re-icon img {
  width: 28px;
   position: relative;
  z-index: 100;
}

/* TITLE */
.re-card h4 {
  margin-bottom: 10px;
}

/* TEXT */
.re-card p {
  font-size: 14px;
  color: #5E5E5E;

}
.recard-inner-wr p{
    position: relative;
  z-index: 99!important;
}

/* HOVER EFFECT */
.re-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .reliability-section {
    padding: 70px 0;
  }

}

@media (max-width: 576px) {

  .re-card {
    padding: 25px;
  }

}
/* SECTION */
.services-section {
  padding: 60px 0;
  background: #fff;
}

/* SECTION DESCRIPTION */
.section-description {
  max-width: 760px;
  margin-top: 20px;
  margin-bottom: 50px;
}

/* CARD */
.service-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  padding: 32px;
  height: 100%;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

/* IMAGE */
.service-image {
  text-align: center;
  margin-bottom: 30px;
}

.service-image img {
  max-width: 220px;
  width: 100%;
  transition: 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.04);
}

/* NUMBER */
.service-number {
  display: inline-block;
  font-size: 48px;
  line-height: 1;
  color: rgba(0,0,0,0.08);
  font-weight: 600;
  margin-bottom: 20px;
}

/* TITLE */
.service-card h4 {
  margin-bottom: 18px;
  line-height: 1.3;
}

/* TEXT */
.service-card p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* LINK */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1A1C1C;
  font-weight: 600;
  transition: 0.3s;
  margin-top: auto;
}

.service-link span {
  transition: 0.3s;
}

.service-link:hover {
  color: #1A1C1C;
}

.service-link:hover span {
  transform: translateX(4px);
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .services-section {
    padding: 50px 0;
  }

  .section-description {
    margin-bottom: 40px;
  }

}

@media (max-width: 767px) {

  .service-card {
    padding: 25px;
  }

  .service-image img {
    max-width: 180px;
  }

}

@media (max-width: 576px) {

  .service-number {
    font-size: 38px;
  }

}

/* SECTION */
.feature-strip-section {
  padding: 70px 0;
  background: #fff;
  border-top: 1px solid #eee;
}

/* LEFT */
.feature-strip-head h2 {
  margin-bottom: 15px;
  max-width: 350px;
}

.feature-strip-head p {
  font-size: 18px;
  color: #5E5E5E;
  margin: 0;
}

/* GRID */
.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* ITEM */
.feature-strip-item {
  padding: 10px 24px;
  border-left: 1px solid #e5e5e5;
  min-height: 150px;
}

/* ICON */
.feature-strip-icon {
  margin-bottom: 20px;
}

.feature-strip-icon img {
  width: 22px;
}

/* TITLE */
.feature-strip-item h5 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.3;
}

/* LABEL */
.feature-strip-item span {
  display: block;
  font-size: 11px;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7b7b7b;
}

/* RESPONSIVE */
@media (max-width: 1199px) {

  .feature-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .feature-strip-item {
    border-left: none;
    border-top: 1px solid #eee;
    padding-top: 30px;
  }

}

@media (max-width: 991px) {

  .feature-strip-section {
    padding: 70px 0;
  }

  .feature-strip-head {
    margin-bottom: 40px;
  }

}

@media (max-width: 576px) {

  .feature-strip-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-strip-item {
    padding: 20px 0 0;
  }

}
/* SECTION */
.how-section {
  padding: 100px 0;
  background: #fff;
}

/* TABS */
.how-tabs {
  display: flex;
  gap: 12px;
  margin: 35px 0 40px;
  flex-wrap: wrap;
}

.how-tab-btn {
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.how-tab-btn.active {
  background: #1A1C1C;
  color: #fff;
  border-color: #1A1C1C;
}

/* PROCESS CONTENT */
.how-process {
  display: none;
}

.how-process.active {
  display: block;
}

/* CARD */
.process-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  transition: 0.35s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* DARK CARD */
.process-card-dark {
  background: #111;
  color: #fff;
  border-color: #111;
}

.process-card-dark p {
  color: rgba(255,255,255,0.7);
}
.process-card-dark h4{
  color: #ffff;
}
/* TOP */
.process-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.process-top span {
  color: #72bc44;
  font-weight: 600;
  font-size: 14px;
}

/* ICON */
.process-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #f3f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card-dark .process-icon {
  background: var(--primary);
}

.process-icon img {
  width: 24px;
}

/* TEXT */
.process-card h4 {
  margin-bottom: 15px;
   /* color: #fff; */
}

.process-card p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* TAGS */
.process-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.process-tags span {
  font-size: 11px;
  padding: 5px 10px;
  background: #f3f4f4;
  border-radius: 20px;
}

.process-card-dark .process-tags span {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* TIMELINE */
.process-timeline {
  margin-top: 45px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 22px;
  padding: 34px 36px;
  overflow: hidden;
}

/* WRAPPER */
.timeline-wrapper {
  display: flex;
  align-items: center;
}

/* LEFT */
.timeline-left {
  flex: 1;
  padding-right: 40px;
}

/* LABELS + TIMES */
.timeline-labels,
.timeline-times {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* LABELS */
.timeline-labels {
  margin-bottom: 18px;
}

.timeline-labels span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #666;
}

.timeline-labels .active span {
  color: #72bc44;
}

/* BAR */
.timeline-bar {
  width: 100%;
  height: 10px;
  background: #f1f1f1;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
}

/* PROGRESS */
.timeline-progress {
  width: 95%;
  height: 100%;
  background: #72bc44;
  border-radius: 30px;
  position: relative;
}

/* TIMES */
.timeline-times strong {
  font-size: 15px;
  font-weight: 600;
  color: #1A1C1C;
}

.timeline-times .active strong {
  color: #72bc44;
}

/* RIGHT BOX */
.timeline-total {
  width: 220px;
  border-left: 1px solid #e9e9e9;
  padding-left: 35px;
  text-align: center;
}

.timeline-total span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 12px;
}

.timeline-total h3 {
  font-size: 2.5rem;
  line-height: 1;
  margin: 0;
  color: #72bc44;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .timeline-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-left {
    width: 100%;
    padding-right: 0;
  }

  .timeline-total {
    width: 100%;
    border-left: none;
    border-top: 1px solid #e9e9e9;
    margin-top: 30px;
    padding-left: 0;
    padding-top: 25px;
    text-align: left;
  }

}

@media (max-width: 767px) {

  .process-timeline {
    padding: 24px;
  }

  .timeline-labels,
  .timeline-times {
    gap: 12px;
  }

  .timeline-labels span {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .timeline-times strong {
    font-size: 13px;
  }

  .timeline-total h3 {
    font-size: 2.3rem;
  }

}

@media (max-width: 576px) {

  .timeline-labels,
  .timeline-times {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 18px;
  }

  .timeline-bar {
    margin: 20px 0;
  }

}

/* RESPONSIVE */
@media (max-width: 991px) {

  .how-section {
    padding: 70px 0;
  }

 

}

@media (max-width: 576px) {

  .process-card {
    padding: 24px;
  }



}
/* CTA SECTION */
.cta-section {
  padding: 70px 0;
  background: #fff;
}

/* WRAPPER */
.cta-wrapper {
  position: relative;
  overflow: hidden;
  background: #111516;
  border-radius: 32px;
  padding: 120px 30px;
  text-align: center;
}

/* GLOW EFFECTS */
.cta-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.14);
  filter: blur(90px);
  z-index: 1;
}

.cta-glow-left {
  left: -120px;
  bottom: -120px;
}

.cta-glow-right {
  right: -120px;
  top: -120px;
}

/* CONTENT */
.cta-content {
  position: relative;
  z-index: 2;
}

/* TITLE */
.cta-content h2 {
  color: #fff;
  font-size: clamp(2.4rem, 2rem + 2vw, 5rem);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 40px;
}

.cta-content h2 span {
  color: #72bc44;
}

/* BUTTON */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 62px;
    padding: 0 32px;
    background: #72bc44;
    color: #000000;
    border-radius: 16px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.35s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid #72bc44;
}

.cta-btn:hover {
    transform: translateY(-4px);
    background: #111516;
    color: #72bc44;
    border: 2px solid;
}


/* RESPONSIVE */
@media (max-width: 991px) {

  .cta-section {
    padding: 50px 0;
  }

  .cta-wrapper {
    padding: 90px 25px;
    border-radius: 26px;
  }

  .cta-content h2 br {
    display: none;
  }

}

@media (max-width: 767px) {

  .cta-wrapper {
    padding: 70px 20px;
  }

  .cta-content h2 {
    margin-bottom: 30px;
  }

  .cta-btn {
    min-width: 180px;
    height: 56px;
    font-size: 16px;
    border-radius: 14px;
  }

}

@media (max-width: 576px) {

  .cta-wrapper {
    border-radius: 22px;
    padding: 60px 20px;
  }

  .cta-content h2 {
    font-size: 2.2rem;
    line-height: 1.15;
  }

  .cta-btn {
    width: 100%;
    max-width: 260px;
  }

}
/* FOOTER */
.main-footer {
  /*background: #101D2B;*/
  background: #231F20;
  color: #fff;
  overflow: hidden;
}

/* =========================
   TOP BAR
========================= */
.footer-top {
  background: #72bc44;
  padding: 30px 0;
}

.footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* LOGO */
.footer-brand img {
  max-height: 65px;
}

/* LOCATION */
.footer-location {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-location-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-location-icon img {
  width: 22px;
}

.footer-location p {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.6;
}

/* =========================
   MAIN FOOTER
========================= */
.footer-main {
  padding: 50px 0;
}

/* WIDGET */
.footer-widget h4,
.footer-widget h5 {
  color: #fff;
  margin-bottom: 28px;
}

.footer-widget h5 {
  font-size: 1.4rem;
}

/* ABOUT */
.footer-about p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* SUBSCRIBE */
.footer-subscribe {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
}

.footer-subscribe input {
  flex: 1;
  height: 58px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 0 24px;
  color: #fff;
  outline: none;
}

.footer-subscribe input::placeholder {
  color: rgba(255,255,255,0.45);
}

.footer-subscribe textarea {
  flex: 1;
  /*height: 58px;*/
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding:24px;
  color: #fff;
  outline: none;
}

.footer-subscribe textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.footer-subscribe button {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: #72bc44;
  color: #111;
  font-size: 22px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.footer-subscribe button:hover {
  transform: translateY(-3px);
}

/* POLICY */
.footer-policy {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-policy span {
  color: #72bc44;
  font-size: 18px;
}

.footer-policy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

/* LINKS */
.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 18px;
}

.footer-widget ul li a,
.footer-contact-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: 0.3s;
}

.footer-widget ul li a:hover,
.footer-contact-item a:hover {
  color: #72bc44;
}

/* CONTACT */
.footer-contact-item {
  margin-bottom: 24px;
}

.footer-contact-item strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
}

/* =========================
   COPYRIGHT
========================= */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.footer-row {
  justify-content: space-between;
}


.footer-widget {
  height: 100%;
}

/* BETTER SPACING */
.footer-widget ul li:last-child {
  margin-bottom: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {

  .footer-main {
    padding: 70px 0 50px;
  }

  .footer-top-inner {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 767px) {

  .footer-subscribe {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-subscribe button {
    width: 100%;
    border-radius: 14px;
  }

}

@media (max-width: 576px) {

  .footer-main {
    padding: 60px 0 40px;
  }

  .footer-brand img {
    max-height: 52px;
  }

  .footer-location {
    align-items: flex-start;
  }

  .footer-location p {
    font-size: 15px;
  }

}
/* =========================
   DDMP PROCESS
========================= */

.ddmp-top-info {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
}

.ddmp-top-info h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.ddmp-flow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ddmp-flow-tags span {
  font-size: 13px;
  color: #8a8a8a;
}

/* FLOW */
.ddmp-process-flow {
  max-width: 950px;
  margin: 0 auto;
}

/* ITEM */
.ddmp-process-item {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT SIDE */
.ddmp-process-side {
  width: 140px;
  text-align: center;
  flex-shrink: 0;
}

.ddmp-process-side span {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
}

/* ICON */
.ddmp-icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 12px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ddmp-icon-box img {
  width: 24px;
}

/* CARD */
.ddmp-process-card {
  flex: 1;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  padding: 32px;
  background: #fff;
  transition: 0.3s ease;
}

.ddmp-process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* ACTIVE FINAL */
.ddmp-process-card-active {
  background: var(--primary);
  border-color: #6EA03C;
  color: #fff;
}

.ddmp-process-card-active p,
.ddmp-process-card-active .ddmp-number {
  color: rgba(255,255,255,0.8);
}

/* NUMBER */
.ddmp-number {
  display: block;
  font-size: 13px;
  color: #d0d0d0;
  margin-bottom: 15px;
  font-weight: 600;
}

/* TITLE */
.ddmp-process-card h4 {
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 1.4;
}

/* TEXT */
.ddmp-process-card p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* ARROW */
.ddmp-arrow {
  text-align: center;
  font-size: 22px;
  color: #b5b5b5;
  margin: 14px 0;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .ddmp-process-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .ddmp-process-side {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .ddmp-process-side span {
    margin-top: 0;
  }

}

@media (max-width: 576px) {

  .ddmp-process-card {
    padding: 24px;
  }

  .ddmp-process-card h4 {
    font-size: 20px;
  }

}
@media (max-width: 767px) {

  .footer-subscribe {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .footer-subscribe input {
    width: 100%;
    min-width: 100%;
    height: 58px;
    border-radius: 14px;
    padding: 20px;
    font-size: 16px;
  }

  .footer-subscribe button {
    width: 100%;
    height: 58px;
    border-radius: 14px;
    font-size: 24px;
    flex-shrink: 0;
  }

}
/* =========================================
   TRUST SECTION
========================================= */

.rq-trust-section {
  padding: 60px 0px;
  position: relative;
}

.rq-trust-wrapper {
  background: #fff;
  border: 1px solid #E9E9E9;
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 1100px;
}

/* ITEM */
.rq-trust-item {
  /*padding: 55px 40px;*/
  padding: 30px;
  position: relative;
  transition: background-color 0.4s ease, color 0.4s ease !important;
}

.rq-trust-item h6,
.rq-trust-item .rq-trust-number,
.rq-trust-item span.counter,
.rq-trust-item small {
  transition: color 0.4s ease !important;
}

.rq-trust-item:hover,
.rq-trust-item:hover h6,
.rq-trust-item:hover .rq-trust-number,
.rq-trust-item:hover span.counter,
.rq-trust-item:hover small {
  color: white;
}

/* BORDER */
.rq-trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 100px;
  background: #bebebe;
  transform: translateY(-50%);
}

/* HOVER */
.rq-trust-item:hover {
  background: #72bc44;
  color: white;
}

.rq-trust-item:hover .rq-trust-number small {
    color: white;
}

/* NUMBER */
.rq-trust-number {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.rq-trust-number span {
  font-family: var(--fonthead);
  /* font-size: clamp(3rem, 5vw, 5rem); */
  font-size: clamp(1.5rem, 2.2vw, 5rem);
  line-height: 0.9;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -2px;
}

.rq-trust-number small {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: 4px;
  line-height: 1;
}

/* TITLE */
.rq-trust-item h6 {
  font-size: 14px;
  text-transform: uppercase;
  /*letter-spacing: 1.2px;*/
  margin-bottom: 18px;
  /*font-weight: 600;*/
  color: var(--heading);
}

/* TEXT */
.rq-trust-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--body-text);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

  .rq-trust-wrapper {
    grid-template-columns: repeat(2, 1fr);
    width: auto;
  }

  .rq-trust-item:nth-child(2)::after {
    display: none;
  }

}

@media (max-width: 767px) {

  .rq-trust-section {
    padding: 10px 0 50px;
  }

  .rq-trust-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .rq-trust-item {
    padding: 40px 28px;
  }

  .rq-trust-item::after {
    display: none !important;
  }

  .rq-trust-item:not(:last-child) {
    border-bottom: 1px solid #E9E9E9;
  }

  .rq-trust-number span {
    font-size: 2rem;
  }

}

/* =========================================
   TEAM SECTION
========================================= */

.team-section{
    padding: 110px 0;
    overflow: hidden;
}

.team-head{
    max-width: 760px;
    margin: 0 auto 70px;
}

.team-head .section-label{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 500;
}

.team-head .section-label span{
    width: 50px;
    height: 1px;
    background: var(--primary);
}

.team-head p{
    max-width: 680px;
    margin: 24px auto 0;
}

/* SLIDER */

.team-slider{
    overflow: visible;
}

.team-slider .swiper-slide{
    height: auto;
}

/* CARD */

.team-card{
    transition: all .45s cubic-bezier(.165,.84,.44,1);
}

.team-card:hover{
    transform: translateY(-8px);
}

/* IMAGE */

.team-image-wrap{
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #f2f4f7;
}

.team-image-wrap img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: all .6s ease;
    filter: grayscale(100%);
}

.team-card:hover .team-image-wrap img{
    filter: grayscale(0%);
    transform: scale(1.04);
}

/* OVERLAY */

.team-image-wrap::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0)
    );
    opacity: 0;
    transition: all .45s ease;
}

.team-card:hover .team-image-wrap::after{
    opacity: 1;
}

/* SOCIAL */

.team-social{
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all .45s ease;
    z-index: 2;
}

.team-card:hover .team-social{
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.team-social a{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    transition: all .3s ease;
    border: 1px solid rgba(255,255,255,0.15);
}

.team-social a:hover{
    background: var(--primary);
    color: #111;
    transform: translateY(-3px);
}

/* CONTENT */

.team-content{
    padding-top: 24px;
}

.team-content h4{
    margin-bottom: 8px;
    transition: all .3s ease;
}

.team-card:hover .team-content h4{
    color: var(--primary);
}

.team-content span{
    color: var(--body-text);
    font-size: 15px;
    display: block;
}

/* NAVIGATION */

.team-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 55px;
}

.team-prev,
.team-next{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    background: #fff;
    color: #111;
}

.team-prev:hover,
.team-next:hover{
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .team-section{
        padding: 90px 0;
    }

    .team-head{
        margin-bottom: 50px;
    }

}

@media(max-width:767px){

    .team-section{
        padding: 75px 0;
    }

    .team-head{
        margin-bottom: 40px;
    }

    .team-head br{
        display: none;
    }

    .team-content{
        padding-top: 18px;
    }

    .team-nav{
        margin-top: 40px;
    }

    .team-prev,
    .team-next{
        width: 48px;
        height: 48px;
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .team-section{
        padding: 90px 0;
    }

    .team-head{
        margin-bottom: 50px;
    }

}

@media(max-width:767px){

    .team-section{
        padding: 75px 0;
    }

    .team-head{
        margin-bottom: 40px;
    }

    .team-head br{
        display: none;
    }

    .team-content{
        padding-top: 20px;
    }

}

/* =========================================
   GO TO TOP BUTTON
========================================= */

.scroll-top-btn{
    position: fixed;
    right: 30px;
    bottom: 30px;

    width: 58px;
    height: 58px;

    border: none;
    outline: none;

    border-radius: 18px;

    background: #111315;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    cursor: pointer;

    z-index: 999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: all .35s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,.12);
}

.scroll-top-btn.active{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover{
    background: var(--primary);
    color: #111315;

    transform: translateY(-4px);

    box-shadow:
        0 18px 35px rgba(74,222,128,.28);
}

/* ICON */

.scroll-top-btn i{
    transition: transform .3s ease;
}

.scroll-top-btn:hover i{
    transform: translateY(-2px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:767px){

    .scroll-top-btn{
        width: 52px;
        height: 52px;

        right: 18px;
        bottom: 18px;

        border-radius: 16px;

        font-size: 16px;
    }

}
/* ========================================= */
/* SST PAGE */
/* ========================================= */

.sst-page section{
    position: relative;
    overflow: hidden;
}


/* ========================================= */
/* INNER HERO */
/* ========================================= */

.inner-hero-sst{
    /*padding: 180px 0 120px;*/
    padding: 70px 0 70px;
}

.breadcrumb-wrap{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    display: none;
}

.breadcrumb-wrap a,
.breadcrumb-wrap p{
    font-size: 14px;
    color: #7B8794;
    margin: 0;
}

.inner-label{
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 100px;
    background: #F4F8F5;
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.inner-hero-text h1{
    margin-bottom: 30px;
}

.inner-hero-text p{
    max-width: 720px;
    font-size: 20px;
    line-height: 1.9;
    color: #54657A;
}

.inner-hero-visual{
    text-align: center;
}

.inner-hero-visual img{
    max-width: 100%;
}



.sst-feature-section,
.industry-section,
.choose-sst-section{
    padding: 60px 0;
}

.section-badge{
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    border-radius: 100px;
    background: #EEF4F7;
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 28px;
}


.sst-feature-content h2{
    margin-bottom: 35px;
}

.sst-feature-content p{
    font-size: 20px;
    line-height: 2;
    color: #54657A;
    margin-bottom: 45px;
}

.btn-primary-dark{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 0 38px;
    border-radius: 18px;
    background: #111315;
    color: #fff;
    font-weight: 600;
    transition: .3s ease;
}

.btn-primary-dark:hover{
    transform: translateY(-4px);
    color: #fff;
}




.sst-info-card{
    background: #fff;
    border: 1px solid #E8EDF2;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(15,23,42,.03);
}

.info-group h6{
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8A97A6;
    margin-bottom: 30px;
}

.info-tags{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.info-tag{
    min-height: 56px;
    padding: 0 28px;
    border-radius: 8px;
    border: 1px solid #E5E9EF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.info-tag.active{
    background: var(--primary);
    color: #fff;
    border-color: #69A03A;
}

.info-divider{
    height: 1px;
    background: #E9EEF2;
    margin: 42px 0;
}

.capability-box{
    background: #F3F7FB;
    border-radius: 16px;
    padding: 35px;
    display: flex;
    gap: 22px;
}

.capability-icon{
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.capability-box h5{
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary);
}

.capability-box p{
    margin: 0;
    color: #54657A;
}




.dark-highlight-section{
    padding: 60px 0;
}

.dark-highlight-wrap{
    background: #05070A;
    border-radius: 30px;
    padding: 90px;
    overflow: hidden;
    position: relative;
}

.dark-highlight-wrap::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
    radial-gradient(circle at right,
    rgba(50,120,255,.18),
    transparent 40%);
}

.dark-label{
    display: inline-block;
    margin-bottom: 28px;
    color: var(--primary);
    letter-spacing: 3px;
    font-size: 14px;
}

.dark-highlight-content h2{
    color: #fff;
    margin-bottom: 35px;
}

.dark-highlight-content p{
    color: rgba(255,255,255,.7);
    font-size: 20px;
    line-height: 2;
}

.highlight-stats{
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin: 55px 0;
}

.highlight-stat h3{
    color: #fff;
    margin-bottom: 10px;
}

.highlight-stat p{
    font-size: 16px;
    margin: 0;
}

.feature-pills{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.feature-pills span{
    border: 1px solid rgba(255,255,255,.14);
    padding: 14px 24px;
    border-radius: 100px;
    color: rgba(255,255,255,.75);
}

.dark-highlight-image{
    text-align: center;
}

.dark-highlight-image img{
    max-width: 100%;
}



/* ========================================= */
/* INDUSTRY SECTION */
/* ========================================= */

.choose-head{
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-line-title{
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
    color: #69A03A;
    letter-spacing: 5px;
    font-size: 14px;
}

.section-line-title::before{
    content: "";
    width: 50px;
    height: 1px;
    background: #69A03A;
}



.industry-card{
    background: #fff;
    border: 1px solid #E8EDF2;
    border-radius: 16px;
    padding: 45px 38px;
    height: 100%;
    transition: .35s ease;
    box-shadow: 0 5px 20px rgba(15,23,42,.03);
}

.industry-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(15,23,42,.08);
}

.industry-icon{
    width: 78px;
    height: 78px;
    border-radius: 12px;
    background: #f3f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    color: var(--primary);
    font-size: 28px;
}

.industry-card h3{
    margin-bottom: 24px;
}

.industry-card p{
    color: #54657A;
    line-height: 1.9;
    margin-bottom: 28px;
}

.industry-card ul{
    padding-left: 20px;
}

.industry-card ul li{
    margin-bottom: 14px;
    color: #54657A;
}



/* ========================================= */
/* CHOOSE SECTION */
/* ========================================= */

.choose-card{
    background: #fff;
    border: 1px solid #E9ECEF;
    border-radius: 16px;
    padding: 42px 34px;
    height: 100%;
    transition: all .35s ease;
    box-shadow: 0 4px 20px rgba(15,23,42,.03);
}

.choose-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(15,23,42,.08);
    border-color: rgba(74,222,128,.22);
}

.choose-icon{
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(180deg,#F7FAF8 0%,#EEF7F1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary);
    font-size: 24px;
}

.choose-card h4{
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.choose-card p{
    color: #54657A;
    line-height: 1.9;
    font-size: 17px;
}



/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width: 991px){

    .inner-hero-sst{
        padding: 50px 0;
    }

    .sst-feature-section,
    .industry-section,
    .choose-sst-section,
    .dark-highlight-section{
        padding: 50px 0;
    }

    .inner-hero-text h1,
    .sst-feature-content h2,
    .dark-highlight-content h2,
    .choose-head h2{
        font-size: 48px;
    }

    .dark-highlight-wrap{
        padding: 60px 40px;
    }

    .sst-info-card{
        margin-top: 50px;
    }

    .dark-highlight-image{
        margin-top: 50px;
    }

}

@media(max-width: 767px){

    .inner-hero-text h1,
    .sst-feature-content h2,
    .dark-highlight-content h2,
    .choose-head h2{
        font-size: 38px;
    }

    .inner-hero-text p,
    .sst-feature-content p,
    .dark-highlight-content p{
        font-size: 18px;
        line-height: 1.8;
    }

    .dark-highlight-wrap{
        border-radius: 28px;
        padding: 50px 28px;
    }

    .highlight-stats{
        gap: 30px;
    }

    .industry-card,
    .choose-card,
    .sst-info-card{
        border-radius: 24px;
    }

    .capability-box{
        flex-direction: column;
    }

}

/* =========================================
SERVICES PAGE
========================================= */

.services-page{
    overflow:hidden;
}

/* =========================================
INNER HERO
========================================= */

.inner-hero{
    padding:70px 0 70px;
}

.breadcrumb-wrap{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:40px;
    font-size:14px;
    color:#7B7B7B;
    display: none;
}

.breadcrumb-wrap a{
    color:var(--heading);
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    padding:10px 18px;
    border-radius:100px;
    background:#F4F8F5;
    color:var(--primary);
    font-size:13px;
    font-weight:600;
    letter-spacing:.12em;
    margin-bottom:24px;
}

.inner-hero-content p{
    max-width:680px;
    margin-top:28px;
}

.hero-visual-card{
    background:#fff;
    border:1px solid #ECECEC;
    border-radius:32px;
    padding:40px;
    position:relative;
}

.hero-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.hero-mini-card{
    background:#F8F8F8;
    border-radius:16px;
    padding:30px 24px;
    text-align:center;
    transition:.35s ease;
}

.hero-mini-card:hover{
    transform:translateY(-6px);
    background:var(--primary);
    color:#fff;
}

.hero-mini-card i{
    font-size:30px;
    margin-bottom:14px;
}

.hero-mini-card h6{
    margin:0;
}

/* =========================================
OVERVIEW
========================================= */

.service-overview-section{
    padding:100px 0;
}

.service-overview-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-overview-card{
    background:#fff;
    border:1px solid #ECECEC;
    border-radius:28px;
    padding:40px;
    position:relative;
    transition:.35s ease;
}

.service-overview-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.06);
}

.service-number{
    position:absolute;
    top:30px;
    right:30px;
    font-size:60px;
    font-weight:700;
    line-height:1;
    color:#F2F2F2;
}

.service-icon{
    width:74px;
    height:74px;
    border-radius:22px;
    background:#F4F8F5;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    font-size:28px;
    margin-bottom:28px;
}

.service-overview-card h3{
    margin-bottom:18px;
}

.service-overview-card ul{
    margin-top:24px;
    padding-left:18px;
}

.service-overview-card ul li{
    margin-bottom:10px;
}

/* =========================================
DETAIL SECTION
========================================= */

.service-detail-section{
    padding:100px 0;
}

.service-detail-head{
    max-width:780px;
    margin-bottom:60px;
}

.service-detail-head span{
    display:block;
    margin-bottom:18px;
    font-size:13px;
    letter-spacing:.15em;
    color:var(--primary);
    font-weight:600;
    text-transform: uppercase;
}

.service-detail-head.text-light h2,
.service-detail-head.text-light p{
    color:#fff;
}

/* =========================================
FEATURE CARD
========================================= */

.service-feature-card{
    height:100%;
    background:#fff;
    border:1px solid #ECECEC;
    border-radius:28px;
    padding:36px;
    transition:.35s ease;
}

.service-feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.06);
}

.feature-icon{
    width:68px;
    height:68px;
    border-radius:20px;
    background:#F4F8F5;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    font-size:24px;
    margin-bottom:24px;
}

.service-feature-card h4{
    margin-bottom:14px;
}

/* =========================================
DARK SECTION
========================================= */

.section-dark{
    background:#111313;
}

.dark-card{
    background:#181A1A;
    border-color:#242626;
}

.dark-card h4,
.dark-card p{
    color:#fff;
}

.dark-card:hover{
    background:#1F2222;
}

/* =========================================
KPI STRIP
========================================= */

.service-kpi-strip{
    padding:0 0 100px;
}

@media (max-width: 768px) {
.service-kpi-strip{
    padding:0 0 50px;
}
}

.kpi-grid{
    border:1px solid #ECECEC;
    border-radius:28px;
    padding:50px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    background:#fff;
}

.kpi-item{
    text-align:center;
}

.kpi-item h3{
    color:var(--primary);
    margin-bottom:10px;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1199px){

    .service-overview-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .kpi-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:991px){

    .inner-hero{
        padding:60px 0 60px;
    }

    .service-overview-section,
    .service-detail-section{
        padding:50px 0;
    }

}

@media(max-width:767px){

    .hero-grid{
        grid-template-columns:1fr;
    }

    .service-overview-grid{
        grid-template-columns:1fr;
    }

    .kpi-grid{
        grid-template-columns:1fr;
        padding:40px 30px;
    }

    .hero-visual-card,
    .service-overview-card,
    .service-feature-card{
        border-radius:24px;
    }

}

@media(max-width:576px){

    .inner-hero{
        padding:50px 0;
    }

    .service-overview-card,
    .service-feature-card{
        padding:30px;
    }

    .hero-visual-card{
        padding:30px;
    }

}

.service-feature-card ul li {
    margin-bottom: 14px;
    color: #54657A;
}
.service-feature-card ul {
  padding-left: 1rem;
}
.section-dark .service-feature-card ul li{
  color: #fff;
}
/* =========================================
HOW IT WORKS HERO
========================================= */

.inner-hero-how{
    padding:70px 0 70px;
    position:relative;
    overflow:hidden;
}

.inner-hero-how .inner-label{
    display:inline-flex;
    align-items:center;
    padding:10px 18px;
    border-radius:100px;
    background:#EAF6EE;
    color:var(--primary);
    font-size:13px;
    font-weight:600;
    letter-spacing:.14em;
    margin-bottom:26px;
}

.inner-hero-how .inner-hero-text p{
    max-width:700px;
    margin-top:28px;
}

/* =========================================
PROCESS POINTS
========================================= */

.hero-process-points{
    margin-top:40px;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.hero-point{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#fff;
    border:1px solid #ECECEC;
    border-radius:24px;
    padding:22px;
    transition:.35s ease;
}

.hero-point:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 50px rgba(0,0,0,.05);
}

.hero-point-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    background:#F4F8F5;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    font-size:20px;
    flex-shrink:0;
}

.hero-point-text h6{
    margin-bottom:8px;
}

.hero-point-text p{
    margin:0;
    font-size:15px;
    line-height:1.7;
}

/* =========================================
VISUAL CARD
========================================= */

.inner-hero-how-visual{
    position:relative;
}

.how-visual-card{
    background:#111313;
    border-radius:32px;
    padding:34px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.how-visual-card::before{
    content:'';
    position:absolute;
    top:-20%;
    right:-20%;
    width:320px;
    height:320px;
    background:radial-gradient(circle, rgba(74,222,128,.25) 0%, transparent 70%);
    pointer-events:none;
}

.how-card-top{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:30px;
    position:relative;
    z-index:2;
}

.live-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#72bc44;
}

.how-card-top p{
    margin:0;
    font-size:12px;
    letter-spacing:.18em;
    color:#B8B8B8;
}

/* =========================================
FLOW LIST
========================================= */

.how-flow-list{
    display:flex;
    flex-direction:column;
    gap:18px;
    position:relative;
    z-index:2;
}

.flow-item{
    display:flex;
    align-items:center;
    gap:18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:18px;
    transition:.35s ease;
}

.flow-item.completed{
    border-color:rgba(74,222,128,.25);
}

.flow-item.active{
    background:rgba(74,222,128,.12);
    border-color:rgba(74,222,128,.35);
}

.flow-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    background:rgba(255,255,255,.06);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#72bc44;
    flex-shrink:0;
}

.flow-content h6{
    margin-bottom:5px;
    color:#fff;
}

.flow-content span{
    font-size:14px;
    color:#BDBDBD;
}

/* =========================================
PROCESS TIME
========================================= */

.how-process-time{
    margin-top:34px;
    position:relative;
    z-index:2;
}

.time-line{
    width:100%;
    height:8px;
    border-radius:100px;
    background:linear-gradient(90deg, #72bc44 0%, #1E5B38 100%);
    margin-bottom:22px;
}

.time-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.time-meta h5{
    color:#72bc44;
    margin-bottom:6px;
}

.time-meta p{
    margin:0;
    font-size:14px;
    color:#BDBDBD;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .inner-hero-how{
        padding:60px 0;
    }

}

@media(max-width:767px){

    .how-visual-card{
        border-radius:28px;
        padding:28px;
    }

    .hero-point{
        padding:18px;
    }

    .time-meta{
        flex-direction:column;
        align-items:flex-start;
    }

}

@media(max-width:576px){

    .inner-hero-how{
        padding:50px 0;
    }

    .hero-point{
        flex-direction:column;
    }

}
/* =========================================
WHY RECHARGE QATAR HERO
========================================= */

.inner-hero-why{
    position:relative;
    overflow:hidden;
    /*padding:140px 0 100px;*/
    padding:70px 0 70px;
}

/* =========================================
CONTENT
========================================= */

.why-hero-content .hero-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:100px;
    background:#EAF6EE;
    color:var(--primary);
    font-size:13px;
    font-weight:600;
    letter-spacing:.14em;
    margin-bottom:24px;
}

.why-hero-content p{
    max-width:720px;
    margin-top:28px;
}

/* =========================================
STATS
========================================= */

.why-hero-stats{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
    margin-top:40px;
}

.hero-stat-item{
    min-width:180px;
    background:#fff;
    border:1px solid #ECECEC;
    border-radius:24px;
    padding:22px 24px;
    transition:.35s ease;
}

.hero-stat-item:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,.05);
}

.hero-stat-item h4{
    color:var(--primary);
    margin-bottom:8px;
}

.hero-stat-item span{
    display:block;
    font-size:14px;
    color:var(--body-text);
    line-height:1.6;
}

/* =========================================
VISUAL CARD
========================================= */

.why-hero-visual{
    position:relative;
}

.why-visual-card{
    position:relative;
    background:#111313;
    border-radius:32px;
    padding:34px;
    overflow:hidden;
    color:#fff;
}

.why-visual-card::before{
    content:'';
    position:absolute;
    top:-20%;
    right:-20%;
    width:320px;
    height:320px;
    background:
    radial-gradient(circle,
    rgba(74,222,128,.22) 0%,
    transparent 70%);
}

/* =========================================
TOP
========================================= */

.why-card-top{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    gap:18px;

    margin-bottom:30px;
}

.top-icon{
    width:70px;
    height:70px;
    border-radius:22px;
    background:rgba(255,255,255,.06);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#72bc44;
    font-size:24px;

    flex-shrink:0;
}

.why-card-top h5{
    color:#fff;
    margin-bottom:8px;
}

.why-card-top p{
    margin:0;
    color:#BDBDBD;
    line-height:1.7;
}

/* =========================================
FLOW GRID
========================================= */

.why-flow-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.why-flow-item{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:22px;

    transition:.35s ease;
}

.why-flow-item.active{
    background:rgba(74,222,128,.12);
    border-color:rgba(74,222,128,.3);
}

.why-flow-item:hover{
    transform:translateY(-5px);
}

.flow-icon{
    width:52px;
    height:52px;

    border-radius:16px;

    background:rgba(255,255,255,.06);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#72bc44;

    margin-bottom:18px;
}

.why-flow-item span{
    display:block;
    color:#fff;
    line-height:1.6;
}

/* =========================================
BOTTOM
========================================= */

.why-card-bottom{
    position:relative;
    z-index:2;

    margin-top:34px;
}

.bottom-line{
    width:100%;
    height:8px;

    border-radius:100px;

    background:
    linear-gradient(
    90deg,
    #72bc44 0%,
    #1E5B38 100%);

    margin-bottom:24px;
}

.bottom-meta{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
}

.bottom-meta h6{
    color:#72bc44;
    margin-bottom:8px;
}

.bottom-meta p{
    margin:0;
    font-size:14px;
    color:#BDBDBD;
    line-height:1.7;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .inner-hero-why{
        padding:50px 0;
    }

    .why-hero-visual{
        margin-top:10px;
    }

}

@media(max-width:767px){

    .why-visual-card{
        border-radius:28px;
        padding:28px;
    }

    .why-flow-grid{
        grid-template-columns:1fr;
    }

    .bottom-meta{
        flex-direction:column;
    }

}

@media(max-width:576px){

    .inner-hero-why{
        padding:50px 0;
    }

    .hero-stat-item{
        width:100%;
    }

    .why-card-top{
        flex-direction:column;
        align-items:flex-start;
    }

}

/* =========================================
TEAM PAGE
========================================= */

.team-page{
    overflow:hidden;
}

/* =========================================
TEAM HERO
========================================= */

.inner-hero-team{
    /*padding:140px 0 100px;*/
    padding:140px 0 70px;
    position:relative;
    overflow:hidden;
}

.team-hero-content .hero-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:100px;
    background:#EAF6EE;
    color:var(--primary);
    font-size:13px;
    font-weight:600;
    letter-spacing:.14em;
    margin-bottom:24px;
}

.team-hero-content p{
    max-width:720px;
    margin-top:28px;
}

/* =========================================
META
========================================= */

.team-hero-meta{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-top:40px;
}

.meta-item{
    background:#fff;
    border:1px solid #ECECEC;
    border-radius:24px;
    padding:22px 24px;
    min-width:220px;
    transition:.35s ease;
}

.meta-item:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 50px rgba(0,0,0,.05);
}

.meta-item h5{
    margin-bottom:8px;
    color:var(--primary);
}

.meta-item span{
    display:block;
    font-size:14px;
    line-height:1.7;
    color:var(--body-text);
}

/* =========================================
VISUAL CARD
========================================= */

.team-visual-card{
    background:#111313;
    border-radius:32px;
    padding:34px;
    position:relative;
    overflow:hidden;
    color:#fff;
}

.team-visual-card::before{
    content:'';
    position:absolute;
    top:-20%;
    right:-20%;
    width:320px;
    height:320px;

    background:
    radial-gradient(circle,
    rgba(74,222,128,.22) 0%,
    transparent 70%);
}

/* =========================================
TOP
========================================= */

.team-visual-top{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    gap:18px;

    margin-bottom:30px;
}

.team-circle{
    width:72px;
    height:72px;

    border-radius:22px;

    background:rgba(255,255,255,.06);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#72bc44;
    font-size:24px;

    flex-shrink:0;
}

.team-visual-top h5{
    color:#fff;
    margin-bottom:8px;
}

.team-visual-top p{
    margin:0;
    color:#BDBDBD;
    line-height:1.7;
}

/* =========================================
VISUAL GRID
========================================= */

.team-visual-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.visual-item{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:24px;

    transition:.35s ease;
}

.visual-item:hover{
    transform:translateY(-5px);
}

.visual-item h4{
    color:#72bc44;
    margin-bottom:10px;
}

.visual-item span{
    display:block;
    color:#C7C7C7;
    line-height:1.7;
    font-size:14px;
}

/* =========================================
TEAM LIST SECTION
========================================= */

.team-list-section{
    padding:70px 0;
}

.team-list-section .team-head{
    max-width:760px;
    margin:0 auto 60px;
}

.team-list-section .team-head p{
    max-width:680px;
    margin:24px auto 0;
}

/* =========================================
TEAM CARD
========================================= */

.team-card{
    position:relative;
    transition:all .45s cubic-bezier(.165,.84,.44,1);
}

.team-card:hover{
    transform:translateY(-8px);
}

/* IMAGE */

.team-image-wrap{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    background:#F3F4F6;
}

.team-image-wrap img{
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;

    transition:all .6s ease;

    filter:grayscale(100%);
}

.team-card:hover .team-image-wrap img{
    filter:grayscale(0%);
    transform:scale(1.04);
}

/* OVERLAY */

.team-image-wrap::after{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.45),
    rgba(0,0,0,0));

    opacity:0;

    transition:.45s ease;
}

.team-card:hover .team-image-wrap::after{
    opacity:1;
}

/* SOCIAL */

.team-social{
    position:absolute;
    left:50%;
    bottom:22px;

    transform:
    translateX(-50%)
    translateY(20px);

    display:flex;
    align-items:center;
    gap:10px;

    opacity:0;
    visibility:hidden;

    transition:.45s ease;

    z-index:2;
}

.team-card:hover .team-social{
    opacity:1;
    visibility:visible;

    transform:
    translateX(-50%)
    translateY(0);
}

.team-social a{
    width:42px;
    height:42px;

    border-radius:50%;

    background:rgba(255,255,255,.14);

    backdrop-filter:blur(10px);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:15px;

    border:1px solid rgba(255,255,255,.15);

    transition:.3s ease;
}

.team-social a:hover{
    background:var(--primary);
    color:#111;
    transform:translateY(-3px);
}

/* CONTENT */

.team-content{
    padding-top:22px;
}

.team-content h4{
    margin-bottom:8px;
    transition:.3s ease;
}

.team-card:hover .team-content h4{
    color:var(--primary);
}

.team-content span{
    display:block;
    color:var(--body-text);
    font-size:15px;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .inner-hero-team{
        padding:80px 0;
    }

    .team-list-section{
        padding:80px 0;
    }

}

@media(max-width:767px){

    .team-visual-card{
        border-radius:28px;
        padding:28px;
    }

    .team-visual-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

    .inner-hero-team{
        padding:70px 0;
    }

    .team-list-section{
        padding:50px 0;
    }

    .team-hero-meta{
        flex-direction:column;
    }

    .meta-item{
        width:100%;
    }

    .team-visual-top{
        flex-direction:column;
        align-items:flex-start;
    }

}
/* =========================================
PARTNERS PAGE
========================================= */

.partners-page{
    overflow:hidden;
}

/* =========================================
HERO
========================================= */

.inner-hero-partners{
    padding:70px 0 70px;
    position:relative;
    overflow:hidden;
}

.partners-hero-content .hero-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 18px;

    border-radius:100px;

    background:#EAF6EE;

    color:var(--primary);

    font-size:13px;
    font-weight:600;
    letter-spacing:.14em;

    margin-bottom:24px;
}

.partners-hero-content p{
    max-width:720px;
    margin-top:28px;
}

/* =========================================
META
========================================= */

.partner-hero-meta{
    display:flex;
    flex-wrap:wrap;
    gap:18px;

    margin-top:40px;
}

.meta-item{
    min-width:220px;

    background:#fff;

    border:1px solid #ECECEC;

    border-radius:24px;

    padding:22px 24px;

    transition:.35s ease;
}

.meta-item:hover{
    transform:translateY(-5px);

    box-shadow:0 20px 50px rgba(0,0,0,.05);
}

.meta-item h5{
    margin-bottom:8px;
    color:var(--primary);
}

.meta-item span{
    display:block;
    color:var(--body-text);
    font-size:14px;
    line-height:1.7;
}

/* =========================================
VISUAL CARD
========================================= */

.partners-visual-card{
    position:relative;
    overflow:hidden;

    background:#111313;

    border-radius:32px;

    padding:34px;

    color:#fff;
}

.partners-visual-card::before{
    content:'';

    position:absolute;

    top:-20%;
    right:-20%;

    width:320px;
    height:320px;

    background:
    radial-gradient(circle,
    rgba(74,222,128,.22) 0%,
    transparent 70%);
}

/* TOP */

.visual-top{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    gap:18px;

    margin-bottom:30px;
}

.visual-icon{
    width:72px;
    height:72px;

    border-radius:22px;

    background:rgba(255,255,255,.06);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#72bc44;

    font-size:24px;

    flex-shrink:0;
}

.visual-top h5{
    color:#fff;
    margin-bottom:8px;
}

.visual-top p{
    margin:0;
    color:#BDBDBD;
    line-height:1.7;
}

/* GRID */

.partners-visual-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.partner-mini-card{
    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:24px;

    transition:.35s ease;
}

.partner-mini-card:hover{
    transform:translateY(-5px);
}

.partner-mini-card h4{
    color:#72bc44;
    margin-bottom:10px;
}

.partner-mini-card span{
    display:block;
    color:#C7C7C7;
    font-size:14px;
    line-height:1.7;
}

/* =========================================
PARTNERS GRID
========================================= */

.partners-grid-section{
    padding:80px 0;
}

.partners-head{
    max-width:780px;
    margin:0 auto 60px;
}

.partners-head p{
    max-width:700px;
    margin:24px auto 0;
}

/* CARD */

.partner-card{
    height:100%;

    background:#fff;

    border:1px solid #ECECEC;

    border-radius:28px;

    padding:20px;

    transition:.35s ease;
}

.partner-card:hover{
    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.05);
}

/* LOGO */

.partner-logo{
    height:120px;

    border-radius:22px;

    background:#F6F7F8;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:20px;

    /*margin-bottom:28px;*/
}

.partner-logo img{
    max-width:100%;
    max-height:75px;

    object-fit:contain;

    filter:grayscale(0%);

    transition:.35s ease;
}

.partner-card:hover .partner-logo img{
    filter:grayscale(100%);
}

/* CONTENT */

.partner-content h5{
    margin-bottom:14px;
}

.partner-content p{
    margin:0;
}

/* =========================================
VALUES SECTION
========================================= */

.partner-values-section{
    padding:0 0 100px;
}

.partner-values-content h6{
    margin-bottom:20px;
}

.partner-values-content p{
    margin-top:24px;
    max-width:650px;
}

/* LIST */

.values-list{
    margin-top:40px;

    display:flex;
    flex-direction:column;
    gap:22px;
}

.value-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.value-icon{
    width:64px;
    height:64px;

    border-radius:20px;

    background:#F4F8F5;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--primary);

    font-size:22px;

    flex-shrink:0;
}

.value-item h5{
    margin-bottom:10px;
}

.value-item p{
    margin:0;
}

/* =========================================
VALUES CARD
========================================= */

.values-card{
    background:#111313;

    border-radius:32px;

    padding:34px;

    color:#fff;

    position:relative;
    overflow:hidden;
}

.values-card::before{
    content:'';

    position:absolute;

    top:-20%;
    right:-20%;

    width:320px;
    height:320px;

    background:
    radial-gradient(circle,
    rgba(74,222,128,.22) 0%,
    transparent 70%);
}

.values-card-top{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:34px;
}

.live-dot{
    width:10px;
    height:10px;

    border-radius:50%;

    background:#72bc44;
}

.values-card-top p{
    margin:0;

    font-size:12px;

    letter-spacing:.18em;

    color:#BDBDBD;
}

/* PROGRESS */

.values-progress-list{
    position:relative;
    z-index:2;

    display:flex;
    flex-direction:column;
    gap:28px;
}

.progress-head{
    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:14px;
}

.progress-head h6{
    color:#fff;
}

.progress-head span{
    color:#72bc44;
}

.progress-line{
    width:100%;
    height:10px;

    border-radius:100px;

    background:rgba(255,255,255,.08);

    overflow:hidden;
}

.progress-fill{
    height:100%;

    border-radius:100px;

    background:linear-gradient(
    90deg,
    #72bc44 0%,
    #1E5B38 100%);
}

.w-95{
    width:95%;
}

.w-92{
    width:92%;
}

.w-98{
    width:98%;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .inner-hero-partners{
        padding:60px 0;
    }

    .partners-grid-section{
        padding:80px 0;
    }

    .partner-values-section{
        padding:0 0 80px;
    }

}

@media(max-width:767px){

    .partners-visual-card,
    .values-card{
        border-radius:28px;
        padding:28px;
    }

    .partners-visual-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

    .inner-hero-partners{
        padding:50px 0;
    }

    .partner-hero-meta{
        flex-direction:column;
    }

    .meta-item{
        width:100%;
    }

    .visual-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .partner-values-section{
        padding:0 0 70px;
    }

}

/* =========================================
FAQ PAGE
========================================= */

.faq-page{
    overflow:hidden;
}

/* =========================================
FAQ HERO
========================================= */

.faq-hero{
    padding:70px 0 70px;
}

.faq-hero-content{
    max-width:760px;
    margin:0 auto;
}

.faq-hero .inner-label{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:100px;
    background:#EAF6EE;
    color:var(--primary);
    font-size:13px;
    font-weight:600;
    letter-spacing:.14em;
    margin-bottom:24px;
}

.faq-hero-content h1{
    margin-bottom:20px;
}

.faq-hero-content p{
    max-width:680px;
    margin:0 auto;
}

/* =========================================
FAQ TABS
========================================= */

.faq-tabs-sec{
    padding:0 0 40px;
}

.faq-tabs{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
}

.faq-tab-btn{
    border:none;
    background:#fff;
    border:1px solid #ECECEC;
    padding:14px 22px;
    border-radius:100px;
    font-family:inherit;
    font-size:15px;
    font-weight:500;
    color:var(--heading);
    transition:.35s ease;
    cursor:pointer;
}

.faq-tab-btn:hover{
    transform:translateY(-3px);
    border-color:var(--primary);
}

.faq-tab-btn.active{
    background:var(--primary);
    color:#111;
    border-color:var(--primary);
}

/* =========================================
FAQ MAIN
========================================= */

.faq-main-sec{
    padding:40px 0 70px;
}

.faq-side-content{
    position:sticky;
    top:120px;
}

.section-mini-title{
    display:inline-block;
    font-size:13px;
    font-weight:600;
    letter-spacing:.14em;
    color:var(--primary);
    margin-bottom:18px;
}

.faq-side-content h2{
    margin-bottom:20px;
}

.faq-side-content p{
    max-width:360px;
}

/* =========================================
FAQ PANELS
========================================= */

.faq-panel{
    display:none;
}

.faq-panel.active{
    display:block;
    animation:fadeFaq .4s ease;
}

@keyframes fadeFaq{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================================
ACCORDION
========================================= */

.custom-faq-accordion{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.custom-faq-accordion .accordion-item{
    border:none;
    background:#fff;
    border:1px solid #ECECEC;
    border-radius:16px !important;
    overflow:hidden;
    box-shadow:none;
    transition:.35s ease;
}

.custom-faq-accordion .accordion-item:hover{
    box-shadow:0 20px 50px rgba(0,0,0,.04);
}

.custom-faq-accordion .accordion-button{
    background:#fff;
    box-shadow:none;
    padding:24px 28px;
    font-weight:600;
    color:var(--heading);
    font-size:17px;
    border:none;
}

.custom-faq-accordion .accordion-button:not(.collapsed){
    background:#fff;
    color:var(--heading);
    box-shadow:none;
}

.custom-faq-accordion .accordion-button:focus{
    box-shadow:none;
    border:none;
}

.custom-faq-accordion .accordion-body{
    padding:0 28px 24px;
    color:var(--body-text);
    line-height:1.8;
}

.custom-faq-accordion .accordion-button::after{
    width:18px;
    height:18px;
    background-size:18px;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .faq-main-sec{
        padding:30px 0 80px;
    }

    .faq-side-content{
        position:static;
        top:auto;
    }

}

@media(max-width:767px){

    .faq-tabs{
        justify-content:flex-start;
    }

    .faq-tab-btn{
        font-size:14px;
        padding:12px 18px;
    }

    .custom-faq-accordion .accordion-button{
        padding:20px;
        font-size:16px;
    }

    .custom-faq-accordion .accordion-body{
        padding:0 20px 20px;
    }

}

@media(max-width:576px){

    .faq-hero{
        padding:50px 0;
    }

    .faq-main-sec{
        padding:20px 0 70px;
    }

}


.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    z-index: 0;
    display: flex;
    flex-direction: column;
}
 

.service-card::before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: black;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, 
    -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    z-index: 0;
}


.service-card:hover::before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    z-index: -1;
}

.service-card h4 {
    transition: color 0.3s ease-in-out; 
}

.service-card:hover h4 {
    color: white;
}

.service-card p {
    transition: color 0.3s ease-in-out; 
}

.service-card:hover p {
    color: white;
}

.service-card .service-link {
    transition: color 0.3s ease-in-out; 
}

.service-card:hover .service-link {
    color: white;
}

.re-card h4 {
    transition: color 0.3s ease-in-out; 
}

.re-card:hover h4 {
    color: white;
}

.re-card p {
    transition: color 0.3s ease-in-out; 
}

.re-card:hover p {
    color: white;
}

.nav-hover .dropdown-toggle::after {
    vertical-align: 1px;
}

.btn-dark-cust {
    background: #1A1C1C;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.btn-dark-cust:hover{
    background: #72bc44;
    color: #fff;
}

i.fa-solid.fa-arrow-trend-up {
    transform: rotate(135deg);
    font-size: 18px;
}

section.about-section {
    padding: 60px 0;
}

section.about-inn-cust {
    text-align: center;
    padding: 35px 0;
    background: #72bc44;
    background: linear-gradient(90deg, #72bc44 0%, #1cb15b 100%);
}

section.about-inn-cust p {
    margin: 0;
    font-size: 18px;
    line-height: 1.9;
    color: white;
}


  .rq-ddmp-feature-section {
    padding: 70px 0;
    background-color: #f8f9fa;
  }

  .rq-ddmp-box {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .rq-ddmp-box:hover {
    /*transform: translateY(-8px);*/
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-bottom-color: #72bc44;
  }

  .rq-ddmp-icon {
    width: 60px;
    height: 60px;
    background: rgba(114, 188, 68, 0.15); 
    color: #72bc44;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }

  .rq-ddmp-box:hover .rq-ddmp-icon {
    background: #72bc44;
    color: #ffffff;
  }

  .rq-ddmp-box h6 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: #212529;
  }

  .rq-ddmp-box p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
  }
  
  .rq-modules-section {
    padding: 80px 0;
    background-color: #ffffff;
  }

  .rq-modules-header {
    text-align: center;
    margin-bottom: 50px;
  }


  .rq-module-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
    cursor: default;
  }

  .rq-module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(114, 188, 68, 0.15);
    border-color: #72bc44;
  }

  .rq-module-icon {
    width: 48px;
    height: 48px;
    background: rgba(114, 188, 68, 0.12);
    color: #72bc44;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    margin-right: 16px;
    transition: all 0.3s ease;
  }

  .rq-module-card:hover .rq-module-icon {
    background: #72bc44;
    color: #ffffff;
  }

  .rq-module-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2b2b2b;
    margin: 0;
    line-height: 1.4;
    text-transform: capitalize;
  }
  
  
  /*________________*/
  
  .wallet-features-section {
    background-color: #ffffff;
    padding: 70px 0;
}



.feature-section-desc {
    font-size: 1.1rem;
    color: #64748b;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    gap: 24px;
}

.feature-box:hover {
    background: #ffffff;
    border-color: rgba(114, 188, 68, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04), 0 5px 15px rgba(114, 188, 68, 0.08);
    transform: translateY(-4px);
}

.feature-icon-wrap {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #94a3b8;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon-wrap {
    background: #72bc44;
    color: #ffffff;
    border-color: #72bc44;
    box-shadow: 0 8px 20px rgba(114, 188, 68, 0.25);
    transform: scale(1.05);
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.feature-content p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.feature-box:hover .feature-content h4 {
    color: #72bc44;
}

@media (max-width: 767px) {
    .feature-box {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
    
    
}

/*____________*/


.wallet-mesh-section {
    background-color: #f8fafc;
    padding: 80px 0;
}

.z-index-1 {
    position: relative;
    z-index: 1;
}

.mesh-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #ffffff;
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.mesh-card:hover {
    /*transform: translateY(-8px);*/
    /*background: #ffffff;*/
    /*box-shadow: 0 20px 40px rgba(114, 188, 68, 0.12);*/
    /*border-color: rgba(114, 188, 68, 0.3);*/
    box-shadow: 0 20px 45px rgba(15, 23, 42, .08);
}

.mesh-icon-wrap {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    margin-bottom: 25px;
    border: 1px solid #f1f5f9;
}

.mesh-icon {
    font-size: 1.5rem;
    color: #94a3b8;
    transition: color 0.3s;
}

.mesh-card:hover .mesh-icon {
    color: #72bc44;
}

.mesh-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.mesh-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    min-height: 80px;
}

.mesh-divider {
    height: 1px;
    background: linear-gradient(90deg, #e2e8f0 0%, transparent 100%);
    margin: 25px 0;
}

.mesh-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mesh-list li {
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.mesh-list li i {
    color: #cbd5e1;
    font-size: 0.85rem;
    margin-right: 12px;
    background: #f8fafc;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mesh-card-active {
    background: #ffffff;
    border: 1.5px solid #72bc44;
    /*box-shadow: 0 15px 45px rgba(114, 188, 68, 0.15);*/
    transform: scale(1.04);
    z-index: 5;
}

/*.mesh-card-active:hover {*/
/*    transform: scale(1.04) translateY(-5px);*/
/*}*/

.active-icon-wrap {
    background: #72bc44;
    border-color: #72bc44;
    box-shadow: 0 8px 25px rgba(114, 188, 68, 0.3);
}

.active-icon {
    color: #ffffff !important;
}

.active-list li i {
    color: #72bc44;
    background: rgba(114, 188, 68, 0.1);
}

.mesh-badge {
    position: absolute;
    top: -14px;
    right: 35px;
    background: #1e293b;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 15px rgba(30, 41, 59, 0.2);
}

@media (max-width: 991px) {
    .mesh-card-active {
        transform: scale(1);
        margin: 20px 0;
    }
    .mesh-card-active:hover {
        transform: scale(1) translateY(-5px);
    }
    .mesh-desc {
        min-height: auto;
    }
    
    .top-footer p a {
        display: contents !important;
    }
    
    .loc-box {
        margin-bottom: 20px;
    }
}




.top-footer p a {
    
    display: block;
}  

/*_____________*/

@media (max-width: 767px) {
    .top-footer p a img {
    height: 35px;
}
}
