/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
  }
  
  /* TOP HEADER */
  .topbar {
    background: #000000;
    color: #fff;
    font-size: 13px;
    padding: 7px 0;
  }
  
  .topbar .green {
    color: #EB7E00;
  }
  
  .search-box {
    position: relative;
    margin-right: 12px;
  }
  
  .search-box input {
    border-radius: 25px;
    padding: 6px 35px 6px 15px;
    border: none;
    outline: none;
  }
  
  .search-box .mic {
    position: absolute;
    right: 10px;
    top: 5px;
  }
  
  .profile {
    background: #EB7E00;
    border: none;
    color: #fff;
    border-radius: 25px;
    padding: 6px 16px;
    margin-right: 15px;
    font-size: 13px;
  }
  
  /* SOCIAL ICONS */
  .social a {
    width: 32px;
    height: 32px;
    background: #EB7E00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 8px;
    color: #fff;
    transition: 0.3s;
  }
  
  .social a:hover {
    color: #281e12;
  }
  
  /* NAVBAR */
  .nav-main {
    background: #000000;
    padding: 12px 0;
  }
  
  .nav-link {
    color: #fff !important;
    margin: 0 10px;
    font-size: 14px;
    cursor: pointer;
  }
  
  .nav-link.active {
    color: #EB7E00 !important;
    font-weight: 500;
  }
  
  /* MEGA MENU */
  .mega {
    position: relative;
  }
  
  .mega-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1140px;
    top: 58px;
    display: none;
    z-index: 1000;
  }
  
  .mega-box {
    display: flex;
    background: #eeeeee;
    border-radius: 14px;
    border-top: 4px solid #EB7E00;
    border-bottom: 4px solid #EB7E00;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    overflow: hidden;
  }
  
  /* LEFT PANEL */
  .left-panel {
    width: 275px;
    background: #f7f7f7;
    border-right: 1px solid #dcdcdc;
  }
  
  .left-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .left-panel li {
    padding: 13px 18px;
    font-size: 14px;
    border-bottom: 1px solid #e1e1e1;
    position: relative;
    cursor: pointer;
  }
  
  .left-panel li.active {
    background: linear-gradient(90deg, #000000 0%, #EB7E00 50%, #000000 100%);
    color: #fff;
  }
  
  /* ARROW */
  .left-panel li.active::after {
    content: "";
    position: absolute;
    right: -21px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 21px solid transparent;
    border-bottom: 21px solid transparent;
    border-left: 21px solid #000000;
  }
  
  /* RIGHT PANEL */
  .right-panel {
    flex: 1;
    padding: 25px 35px;
  }
  
  .right-panel h6 {
    color: #EB7E00;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .right-panel ul {
    list-style: none;
    padding: 0;
  }
  
  .right-panel li {
    font-size: 14px;
    padding: 5px 0;
  }
  
  /* TABS */
  .tab {
    display: none;
  }
  
  .tab.active {
    display: block;
  }
  
  /* DESKTOP HOVER */
  @media (min-width: 992px) {
    .mega:hover .mega-wrap {
      display: block;
    }
  }
  
  /* MOBILE */
  @media (max-width: 991px) {
  
    .topbar .container {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
  
    .search-box input {
      width: 100%;
    }
  
    .mega-wrap {
      position: static;
      transform: none;
      width: 100%;
    }
  
    .mega-box {
      flex-direction: column;
      border-radius: 0;
    }
  
    .left-panel {
      width: 100%;
    }
  
    .left-panel li.active::after {
      display: none;
    }
  
    .right-panel {
      padding: 15px;
    }
  
    .mega.active .mega-wrap {
      display: block;
    }
  
  }
  
  /* TOGGLER */
  .navbar-toggler {
    border: none;
    color: #fff;
    font-size: 22px;
  }




  /* her section start  */
  /* HERO */
  .hero {
    position: relative;
    height: calc(100vh - 120px);
    overflow: hidden;
  }
  
  /* VIDEO */
  .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  
  /* OVERLAY */
  .hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2;
  }
  
  /* CONTENT */
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 0 15px;
  }
  
  /* TEXT */
  .hero-content h1 {
    font-size: 52px;
    font-weight: 600;
    margin: 0;
  }
  
  .hero-content p {
    font-size: 18px;
    margin: 15px 0 25px;
  }
  
  /* BUTTONS */
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  /* PRIMARY BUTTON */
  .btn-primary {
    background: linear-gradient(90deg, #EB7E00, #000);
    padding: 12px 28px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
  }
  
  /* OUTLINE BUTTON */
  .btn-outline {
    border: 2px solid #fff;
    padding: 10px 25px;
    border-radius: 30px;
    color: #fff;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 28px;
    }
  
    .hero-content p {
      font-size: 14px;
    }
  }
  



  
  /* about section start */
  
  .corp-section{
    padding:70px 20px;
    background:#f6f8fb;
    font-family:'Poppins',sans-serif;
  
  }
  
  .corp-title{
    text-align: center;
  
    /* FONT SIZE (responsive) */
    font-size: 32px;
    font-weight: 600;
    line-height: 120%;
    font-family: "Roboto", sans-serif !important;
  
    /* GRADIENT */
    background: linear-gradient(90deg, #000000 0%, #EB7E00 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
    /* SPACING */
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  
    /* DEPTH */
    text-shadow: 0 2px 12px rgba(0,0,0,0.15);
  
    position: relative;
  }
  
  
  .corp-subtitle{
    text-align: center;
    font-size: clamp(14px, 2vw, 18px);
    color: #555;
    margin-bottom: 40px;
  }
  
  .corp-wrapper{
    max-width:1250px;
    margin:auto;
    display:flex;
    gap:35px;
  }
  
  .corp-left-menu{
    width:270px;
  }
  
  .corp-menu-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:8px;
    border-radius:12px;
    background:#edf2f7;
    margin-bottom:12px;
    cursor:pointer;
  }
  
  .corp-menu-item.active{
      background: linear-gradient(90deg, #000000 0%, #EB7E00 50%, #000000 100%);
    color:#fff;
  }
  
  .corp-icon{
    width:30px;
    height:30px;
    border-radius:50%;
    background:#EB7E00;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  
  .corp-icon img{
    width:20px;
  }
  
  .corp-right{
    flex:1;
  }
  
  .corp-tab{
    display:none;
    justify-content:space-between;
    gap:30px;
  }
  
  .corp-tab.active{
    display:flex;
  }
  
  .corp-text h3{
  font-size: 24px;
    font-weight: 550;
    line-height: 120%;
    font-family: "Roboto", sans-serif !important;
  }
  
  .corp-list{
    margin-top:20px;
  }
  
  .corp-item{
    background:#dfe5ee;
    padding:8px 15px;
    border-radius:40px;
    margin-bottom:10px;
    display:flex;
    justify-content:space-between;
  }
  
  .corp-left{
    display:flex;
    gap:10px;
  }
  
  .corp-tick{
    background:#EB7E00;
    width:22px;
    height:22px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
  }
  
  .corp-arrow{
    color:#EB7E00;
  }
  
  .corp-image img{
    width:400px;
  }
  
  @media(max-width:992px){
    .corp-wrapper{
      flex-direction:column;
    }
    .corp-tab{
      flex-direction:column;
      text-align:center;
    }
  }


  /* stats start */

  .stats-container {
    max-width: 1200px;
  
    margin: auto;
    padding: 40px 20px;
    border-radius: 15px;
    background: linear-gradient(90deg, #000000 0%, #EB7E00 50%, #000000 100%);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.stat {
    flex: 1;
    min-width: 200px;
    margin: 20px 0;
    color: #fff;
}

.icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.number {
    font-size: 42px;
    font-weight: bold;
    color: #39FF14;
}

.label {
    margin-top: 10px;
    font-size: 18px;
    color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
    }
}


/* starts end  */


/* testmonials start */


/* SECTION */
.pu-section{
    background: linear-gradient(90deg, #000000 0%, #EB7E00 50%, #000000 100%);
    padding:60px 20px 90px;
    color:#fff;
  }
  
  /* TOP TEXT */
  .pu-top{
    text-align:center;
    color:#ffd700;
    font-size:20px;
    margin-bottom:40px;
  }
  .pu-top::after{
    content:"";
    width:40px;
    height:3px;
    background:#ffd700;
    display:block;
    margin:12px auto 0;
  }
  
  /* LAYOUT */
  .pu-wrap{
    max-width:1250px;
    margin:auto;
    display:flex;
    gap:40px;
  }
  
  /* LEFT PANEL */
  .pu-left{
    width:30%;
  }
  .pu-left h3{
    color:#ffd700;
    margin-bottom:28px;
  }
  
  .pu-rating{
    display:flex;
    gap:12px;
    align-items:center;
    margin-bottom:18px;
  }
  .pu-rating img{width:34px}
  .pu-rating div{font-size:15px}
  .pu-rating strong{color:#ffd700}
  
  .jd-logo svg{width:34px;height:34px}
  
  .pu-exp{
    margin-top:30px;
    display:flex;
    gap:12px;
    align-items:center;
  }
  .pu-exp-num{
    font-size:72px;
    font-weight:800;
    background:linear-gradient(#ffd700,#ffb300);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
  }
  .pu-exp-text{
    font-size:14px;
  }
  .pu-exp-text span{
    letter-spacing:4px;
    font-weight:600;
  }
  
  /* RIGHT SLIDER */
  .pu-right{
    width:70%;
    overflow:hidden;
    position:relative;
  }
  
  .pu-track{
    display:flex;
    transition:transform .6s ease;
  }
  
  .pu-slide{
    min-width:100%;
    display:flex;
    gap:22px;
  }
  
  /* CARD */
  .pu-card{
    background:#fff;
    color:#2c4a6e;
    border-radius:20px;
    border:2px solid #8de4b7;
    padding:28px 26px;
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
  }
  
  .pu-card p{
    font-size:16px;
    line-height:1.7;
  }
  
  .pu-user{
    display:flex;
    gap:12px;
    align-items:center;
    margin-top:25px;
  }
  
  .pu-avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#2f7d1f;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
  }
  
  .pu-avatar-img{
    width:42px;
    height:42px;
    border-radius:50%;
    object-fit:cover;
  }
  
  .pu-google{
    display:flex;
    align-items:center;
    gap:6px;
    margin-top:4px;
    color:#f6b800;
  }
  .pu-google img{width:16px}
  
  /* DOTS */
  .pu-dots{
    text-align:center;
    margin-top:18px;
  }
  .pu-dots span{
    width:8px;
    height:8px;
    background:#9bb9d1;
    border-radius:50%;
    display:inline-block;
    margin:0 4px;
    cursor:pointer;
  }
  .pu-dots .active{background:#fff}
  
  /* ARROWS */
  .pu-arrow{
    position:absolute;
    bottom:-50px;
    width:36px;
    height:36px;
    border-radius:50%;
    border:none;
    background:#fff;
    cursor:pointer;
    font-size:18px;
  }
  .pu-prev{left:0}
  .pu-next{left:48px}
  
  /* MOBILE */
  @media(max-width:900px){
    .pu-wrap{flex-direction:column}
    .pu-left,.pu-right{width:100%}
    .pu-slide{flex-direction:column}
  }
  
/* testmonial end */



  /* trusted partner start */

  /* SECTION */
  .trusted-section{
    padding:70px 20px 80px;
  }
  
  /* HEADING */
  .trusted-heading{
    text-align:center;
    margin-bottom:48px;
  }
  .trusted-heading h2{
    font-size:32px;
    font-weight:600;
    color:#EB7E00;
    position:relative;
    display:inline-block;
  }
  .trusted-heading h2::after{
    content:"";
    width:42px;
    height:4px;
    background:#2e8b73;
    display:block;
    margin:8px auto 0;
    border-radius:4px;
  }
  
  /* SLIDER */
  .trusted-slider{
    max-width:1200px;
    margin:auto;
    overflow:hidden;
    padding:1px 0; /* breathing space */
  }
  
  /* ROW */
  .trusted-row{
    width:100%;
    padding:15px 0;
  }
  .trusted-row + .trusted-row{
    margin-top:30px;
  }
  
  /* TRACK */
  .trusted-track{
    display:flex;
    width:max-content;
    animation-timing-function:linear;
    animation-iteration-count:infinite;
    animation-duration:150s;
  }
  
  /* CARD */
  .trusted-card{
    width:160px;
    min-width:160px;
    height:100px;
    background:#ffffff;
    border-radius:18px;
    margin:0 14px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 22px rgba(0,0,0,0.08);
    border:1px solid rgba(0,0,0,0.04);
    transition:
      transform .35s ease,
      box-shadow .35s ease,
      border-color .35s ease;
  }
  
  /* LOGO */
  .trusted-card img{
    max-width:120px;
    max-height:55px;
    object-fit:contain;
    opacity:.85;
    transition:opacity .35s ease, filter .35s ease;
  }
  
  /* ✨ LUXURY HOVER ✨ */
  .trusted-card:hover{
    transform:translateY(-7px);
    box-shadow:0 18px 38px rgba(0,0,0,0.14);
    border-color:#2e8b73;
  }
  .trusted-card:hover img{
    opacity:1;
    filter:contrast(1.05);
  }
  
  /* ANIMATIONS */
  @keyframes slide-left{
    0%{transform:translateX(0)}
    100%{transform:translateX(-50%)}
  }
  @keyframes slide-right{
    0%{transform:translateX(-50%)}
    100%{transform:translateX(0)}
  }
  
  .row-left .trusted-track{
    animation-name:slide-left;
  }
  .row-right .trusted-track{
    animation-name:slide-right;
  }
  
  /* RESPONSIVE */
  @media(max-width:768px){
    .trusted-card{
      width:150px;
      min-width:150px;
      height:90px;
      margin:0 10px;
    }
  }

  /* trusted partner end */


  /* why section start */


/* SECTION */
.why-pu{
    padding:30px 20px;
    background-color: #fefcfc;
  }
  
  /* WRAPPER */
  .why-pu-wrap{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:60px;
    align-items:center;
  }
  
  /* LEFT IMAGE */
  .why-pu-image{
    position:relative;
    display:flex;
    justify-content:center;
  }
  .why-pu-image img{
    max-width:80%;
    height:auto;
  }
  
  /* RIGHT CONTENT */
  .why-pu-content h2{
    font-size:32px;
    font-weight:600;
    color:#EB7E00;
    font-family: "Roboto", sans-serif !important;
    margin-bottom:18px;
  }
  
  .why-pu-content p{
    font-size:16.5px;
    line-height:1.75;
    color:#374151;
    margin-bottom:34px;
  }
  
  .why-pu-content a{
    color:#EB7E00;
    text-decoration:none;
  }
  
  /* FEATURES GRID */
  .why-pu-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:34px 60px;
  }
  
  /* FEATURE ITEM */
  .pu-feature{
    display:flex;
    align-items:center;
    gap:16px;
  }
  
  /* ICON */
  .pu-icon{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#EB7E00;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 14px rgba(253, 159, 18, 0.4);
  }
  
  .pu-icon img{
    width:30px;
    height:30px;
  }
  
  /* TEXT */
  .pu-feature span{
    font-size:18px;
    font-weight:600;
    color:#0b3a6f;
  }
  
  /* RESPONSIVE */
  @media(max-width:1000px){
    .why-pu-wrap{
      grid-template-columns:1fr;
      text-align:center;
    }
    .why-pu-features{
      grid-template-columns:1fr;
    }
    .pu-feature{
      justify-content:center;
    }
  }

  /* why section end */


/* team start */


/* SECTION */
.utx-wrapper {
  background: linear-gradient(90deg, #000000 0%, #EB7E00 50%, #000000 100%);
  padding: 50px 20px;
  border-radius: 15px;
  max-width: 1200px;
  margin: 60px auto;
  color: #fff;
}

/* FLEX */
.utx-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

/* LEFT */
.utx-content {
  flex: 1 1 500px;
}

.utx-heading {
  font-size: 34px;
  margin-bottom: 20px;
}

.utx-highlight {
  color: gold;
  border-bottom: 3px solid gold;
}

.utx-para {
  line-height: 1.7;
  margin-bottom: 15px;
}

/* BUTTONS */
.utx-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.utx-btn-main {
  background: gold;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.utx-btn-alt {
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

/* RIGHT */
.utx-slider-box {
  flex: 1 1 350px;
  overflow: hidden;
  position: relative;
}

.utx-track {
  display: flex;
  transition: 0.5s;
}

.utx-item {
  min-width: 100%;
  display: flex;
  gap: 15px;
}

/* IMAGES */
.utx-main-img img {
  width: 400px;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}

/* .utx-thumb-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.utx-thumb-list img {
  width: 100px;
  height: 75px;
  border-radius: 8px;
  object-fit: cover;
} */

/* NAV */
.utx-controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.utx-controls button {
  padding: 8px 12px;
  border: none;
  margin-left: 5px;
  cursor: pointer;
  border-radius: 5px;
}

/* MOBILE */
@media(max-width:768px){
  .utx-flex {
    flex-direction: column;
  }

  .utx-main-img img {
    width: 150px;
    height: 200px;
  }

  .utx-thumb-list img {
    width: 80px;
    height: 60px;
  }
}



/* contact us start */


/* SECTION */
.premiumContactSectionZ{
  padding:60px 20px;
 
}

.premiumTitleZ{
  text-align:center;
  font-size:36px;
  color:#0f172a;
  margin-bottom:50px;
  position:relative;
 
}

.premiumTitleZ::after{
  content:"";
  width:60px;height:4px;
  background: #EB7E00;
  display:block;
  margin:10px auto 0;
  border-radius:10px;
}

/* GRID */
.premiumGridZ{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

/* LEFT CARDS */
.premiumCardsZ{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.premiumCardZ{
 
  padding:30px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

.premiumCardZ::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,#22c55e,transparent);
  opacity:0;
  transition:0.4s;
}

.premiumCardZ:hover::before{
  opacity:0.08;
}

.premiumCardZ:hover{
  transform:translateY(-8px);
}

.premiumIconZ{
  font-size:28px;
  color: #EB7E00;
  margin-bottom:15px;
}

.premiumCardZ h3{
  margin-bottom:10px;
  color:#0f172a;
}

.premiumCardZ p{
  color:#64748b;
  font-size:14px;
}

/* FORM */
.premiumFormWrapZ{
  background:#fff;
  padding:20px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.premiumFormWrapZ h2{
  margin-bottom:20px;
  color:#0f172a;
  position:relative;
}

.premiumFormWrapZ h2::after{
  content:"";
  width:40px;height:3px;
  background:#22c55e;
  display:block;
  margin-top:8px;
}

.premiumFormGridZ{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

.premiumInputZ{
  width:100%;
  padding:10px;
  border-radius:10px;
  border:1px solid #e2e8f0;
  outline:none;
  transition:0.3s;
}

.premiumInputZ:focus{
  border-color: #EB7E00;
  box-shadow:0 0 0 3px rgba(34,197,94,0.1);
}

.premiumTextareaZ{
  grid-column:1/3;
}

.premiumBtnZ{
  margin-top:15px;
  padding:10px;
  border:none;
  border-radius:10px;
  background: #EB7E00;
  color:#fff;
  cursor:pointer;
  font-size:16px;
  transition:0.3s;
}

.premiumBtnZ:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(34,197,94,0.3);
}



/* RESPONSIVE */
@media(max-width:900px){
  .premiumGridZ{grid-template-columns:1fr}
  .premiumCardsZ{grid-template-columns:1fr}
  .premiumFormGridZ{grid-template-columns:1fr}
  .premiumTextareaZ{grid-column:auto}
}


/* contact us end  */




/* ===== BODY ===== */
.ultra-body-x7a {
 
  padding: 30px;
  font-family: 'Inter', sans-serif;
}

/* ===== BANNER ===== */
.ultra-fintech-banner-x7a {
  max-width: 1400px;
  height: 260px;
  margin: auto;
  border-radius: 16px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  background: linear-gradient(90deg, #000000 0%, #EB7E00 50%, #000000 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* subtle overlay */
.ultra-fintech-banner-x7a::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,255,150,0.25), transparent);
  filter: blur(90px);
}

/* ===== LEFT ===== */
.ultra-content-x7a {
  max-width: 720px;
  z-index: 2;
}

.ultra-heading-x7a {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 14px;
}

.ultra-heading-x7a span {
  color: #39ff14;
}

/* blinking cursor effect */
.ultra-cursor-x7a {
  display: inline-block;
  width: 3px;
  height: 30px;
  background: #39ff14;
  margin-left: 4px;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.ultra-desc-x7a {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 22px;
  max-width: 600px;
}

/* ===== BUTTON ===== */
.ultra-btn-x7a {
  display: inline-block;
  background: #39ff14;
  color: #003300;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 6px 15px rgba(0,255,100,0.35);
  transition: all 0.25s ease;
}

.ultra-btn-x7a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,255,100,0.5);
}

/* ===== RIGHT IMAGE ===== */
.ultra-image-wrap-x7a {
  position: relative;
  z-index: 2;
}

.ultra-image-wrap-x7a img {
  height: 260px;
  width: auto;
  object-fit: contain;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .ultra-fintech-banner-x7a {
    height: auto;
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .ultra-heading-x7a {
    font-size: 26px;
  }

  .ultra-image-wrap-x7a img {
    height: 180px;
    margin-top: 20px;
  }
}



.rc-center-hero {
  padding: 30px 20px;

}

/* Card */
.rc-center-hero-box {
  max-width: 1300px;
  margin: auto;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  color: #fff;

  background: linear-gradient(
      90deg,
      #000000 0%,
      #ff7a00 50%,
      #003d1f 100%
  );
}

/* Heading */
.rc-center-hero-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.rc-center-hero-title span {
  color: #39ff14;
}

/* Text */
.rc-center-hero-text {
  font-size: 18px;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

/* Button */
.rc-center-hero-btn {
  display: inline-block;
  background: #39ff14;
  color: #000;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.rc-center-hero-btn:hover {
  background: #2be60f;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .rc-center-hero-title {
      font-size: 28px;
  }

  .rc-center-hero-text {
      font-size: 16px;
  }
}

@media (max-width: 480px) {
  .rc-center-hero-box {
      padding: 40px 20px;
  }

  .rc-center-hero-title {
      font-size: 22px;
  }
}

/* footer start */

  .footer {
    padding: 60px 100px;
    background: linear-gradient(135deg, #000000, #0f172a, #000000);
    border-radius: 30px;
    max-width: 100%;
    margin: 80px auto 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
  }

  .footer h3 {
    font-size: 18px;
    color: #EB7E00;
    margin-bottom: 20px;
    position: relative;
    padding-left: 12px;
  }

  .footer h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 18px;
    background: #EB7E00;
    border-radius: 2px;
  }

  .footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer ul li {
    margin-bottom: 10px;
    color: #cbd5e1;
    cursor: pointer;
    transition: 0.3s;
  }

  .footer ul li:hover {
    color: #EB7E00;
    transform: translateX(5px);
  }

  .footer p {
    color: #cbd5e1;
    line-height: 1.6;
  }

  .social-icons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
    background: #EB7E00;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    transition: 0.3s;
  }

  .social-icons a:hover {
    transform: scale(1.2) rotate(5deg);
    background: #ffd700;
  }

  .footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
  }