@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&display=swap');@import url('https://fonts.googleapis.com/css2?family=Josefin+Slab:ital,wght@0,100..700;1,100..700&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');





body {
  font-family: 'Poppins', sans-serif;
  margin: 0%;
  padding: 0%;
  background-color:  linear-gradient(135deg, #1e293b, #0f172a) ;

}

.show {
  display: block !important;
}

.feature-section {
  display: flex;
  justify-content: space-between;
  gap: 5rem; /* space between text and image */
  margin: 2rem;
  border-radius: 0.3rem;
  padding: 1rem;
}

.text-content {
  flex: 1;
}

.text-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d1b2a; /* dark blue for professionalism */
  margin-bottom: 1.5rem;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #334e68; /* softer dark color for readability */
}

.image-content {
  flex: 1;
  text-align: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem; /* subtle rounding for modern look */
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonials {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: white;
  padding: 2rem;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.testimonial-container {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  position: relative;
}

.test-image {
  width: 700px;
  height: 360px;
  transition: 0.5s ease-in-out;
}

.title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
}

.profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  margin-top: 1.3rem;
  transition: 0.5s ease-in;
}

.testimonial-content {
  display: flex;
  background-color: rgba(63, 62, 62, 0.3);
  backdrop-filter: blur(5px);
  padding: 0.3rem;
  padding-right: 0.5rem; 
  padding-left: 0.8rem;
  border-radius: 1rem;
  padding-bottom: 0.7rem;
  position: absolute;
  top: 55%;
  left: -20%;
  gap: 1rem;
}

/* Metrics Section */

.metrics {
  padding: 4rem 2rem;
}

.metrics-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.metric-card {
  background-color:  #212a38 ;
  backdrop-filter: blur(5px);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
  color: white;
  padding: 0.5rem;
  padding-left: 4rem;
  padding-right: 4rem;
}

.metric-card:hover {
  transform: translateY(-5px);
}

.metric-value {
  font-size: 2rem;
  font-weight: 900;
  color: white; /* deep navy blue for trust */
  margin: 0%;
  font-family: 'Poppins';
}

.shot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 6rem 5rem;
  
}

.shot-text {
  max-width: 520px;
}

.shot-text h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  color: #000000c4;
}

.shot-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgb(142, 139, 139);
}

.shot img {
  width: 400px;
  max-width: 100%;
  height: 700px;
  border-radius: 1.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.metric-title {
  font-size: 1rem;
  font-weight: 500;
  color: white;
  margin: 0%;
}

.cta-container {
  text-align: center;
  background-color: #0e182d;
  padding: 5rem 3rem;
  color: white;
}

.cta-text {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  margin-right: 1rem;
}

.whats-nxt {
  font-family: 'Parisienne', cursive;
  font-size: 4rem;
  font-weight: 900;
  color: #0a72ae; /* accent color for emphasis */
}

.cta-button {
  background-color: #0a72ae; /* accent color */
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 2rem;
  font-family: 'Poppins', sans-serif;
}

.cta-button:hover {
  background-color: #084d73; /* darker shade on hover */
}

.down {
  background: linear-gradient(135deg, #1e293b, #051e58);
  padding: 1rem;
  border: none;
  color: white;
}

.phone-cont {
  display: flex;
  flex-direction: column-reverse;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin: 1rem;
  border-radius: 1rem;
}

.bg {
  background-color: #f8f9fb;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pin-container {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media(max-width : 400px) {
  .input-cont {
  display: block !important;
}
}

.pin-inputs {
  display: flex;
  gap: 1rem;
}

.pin-input {
  width: 50px;
  height: 50px;
  font-size: 28px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: transparent;
  border: 2px solid white;
  transition: border 0.2s;
  color: white;
}

.pin-input:focus {
  border: 2px solid #007bff;
  outline: none;
}

/* Responsive */

@media screen and (max-width: 1024px) {
  .feature-section {
    flex-direction: column-reverse;
    margin: 0;
    gap: 1rem;
    text-align: center;
  }

  .text-content h2 {
    font-size: 2rem;
  }

  .text-content p {
    font-size: 1rem;
  }
    .testimonial-container {
    flex-direction: column;
    align-items: center;
  }

  .testimonials {
    padding: 1rem;
  }

  .test-image {
    height: auto;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .metrics {
    padding: 0rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .disclaimer {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }

  .testimonial-content {
    left: 1rem !important;
    bottom: 1rem !important;
    height: 100px;
  }
   
 
}

@media screen and (max-width: 768px) {


  .metrics-wrapper {
    display: flex;
    flex-direction: column;
  }

  .test-image {
    border-radius: 1rem;
  }

   .text {
    font-size: 0.8rem !important;
    line-height: 1rem   !important;
    margin: 0 !important;
  }
  .det {
    font-size: 0.7rem !important;
    margin: 0% !important;
    line-height: 0%;
  }
  .testimonial-content {
    top: 50%; /* adjust top positioning */
    left: 50%; /* center horizontally */
    transform: translateX(-50%); /* center horizontally */
    gap: 0.5rem; /* reduce gap */
    padding: 0.5rem; 
    margin-right: 0.5rem;
    height: 60px;
  }

   .profile-pic {
    width: 35px;
    height: 35px;
    margin-top: 0.3rem;
    border-radius: 17.5px;
    object-fit: cover; 
  }
  .title {
    font-size: 2rem;
    width: 100% !important;
  }
  .cta-text {
    font-size: 2rem;
    margin-right: 1rem;
  }
  .whats-nxt {
    font-size: 3rem;
  }
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  .cta-container {
    padding: 3rem 1rem;
  }

  .shot {
    flex-direction: column;
    padding: 1rem;
    padding-bottom: 3rem;
  }

  .shot img {
    width: 200px;
    height: auto;
  }

  .shot h2 {
    font-size: 1.2rem;
  }

  .shot p {
    font-size: 0.9rem;
  }
}

.about-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

  color: #1a1a1a;
}

.about-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.about-header h2 {
  font-size: 26px;
  font-weight: 700;
}

.version {
  font-size: 14px;
  color: #888;
}

.about-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.about-section {
  margin-top: 20px;
}

.bank-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-right: 15px;
  border-radius: 2rem;
}

.about-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.about-section p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Dark mode support */

body.dark .about-card {
  background: #1e1e1e;
  color: #ddd;
}

body.dark .about-section p {
  color: #bbb;
}

body.dark .version {
  color: #999;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;

}

/* Background image */

.hero-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

/* Content wrapper */

.gb-content {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 5%;
  gap: 4rem;
  color: #fff;
}

/* Create account card */

.create-acct-cont {
  background: whitesmoke;
  padding: 2.5rem;
  width: 350px;
}

/* Tabs */

.tabs {
  display: flex;
  gap: 0.5rem;
}

.tabs button {
  flex: 1;
  padding: 0.7rem;
  border: none;
  cursor: pointer;
  font-family: 'Poppins';
}

/* Inputs */

.inputs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.inputs input {
  padding: 0.9rem;
  border: 1px solid #000;
  outline: none;
  font-family: 'Poppins';
}

/* CTA button */

.cra {
  margin-top: 2rem;
  padding: 1rem;
  width: 100%;
  border: none;
  color: white;
  background: linear-gradient(135deg, #101620, #142243);
  font-family: 'Poppins';
}

/* Text section */

.write-Up {
  max-width: 600px;
}

.write-Up h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.write-Up .ouse {
  margin-top: 1rem;
  font-size: 1.3rem;
  line-height: 1.6;
 
}

.write-Up button {
  margin-top: 3rem;
  padding: 1rem 3rem;
  border: none;
  border-radius: 0.2rem;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: white;
  font-family: 'Poppins';
  font-weight: 600;
  width: fit-content;
  display: none; /* keep if intentional */
}

/* =========================
   RESPONSIVE FIXES
========================= */

@media (max-width: 1024px) {
  .gb-content {
    display: block;
    margin-top: 3rem;
  }

  .write-Up h1 {
    font-size: 2.4rem;
  }

  .create-acct-cont {
    display: none;
  }

  .write-Up button {
    display: block;
  }
}

@media (max-width: 600px) {
  .gb-content {
    padding: 5rem 1.5rem;
  }

  .write-Up h1 {
    font-size: 2rem;
  }

  .write-Up .ouse {
    font-size: 1rem;
  }

 
}

.topzy {
  
  font-size: 1.9rem;
  width: 100%;
}

@media (max-width: 500px) {
  .hero-section img  {
    height: 600px;
  }

  .gb-content {
    height: 600px;
  }

  .hero-section {
    height: 600px;
    min-height: 0;
  }

  .topzy {
    font-size: 1.3rem;
    font-weight: 600;
  }

  .ouse {
    font-size: 1rem;
  }
}


.menu_cont {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
 
}

/* MAIN NAV BAR */
.menu {
  background-color: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  width: 100px;
  object-fit: contain;
}

/* DESKTOP LINKS */
.menu-inner {
  display: flex;
  gap: 24px;
  text-decoration: underline;
}

.menu-inner a {
  color: black;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

/* MENU BUTTON */

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;

  position: relative;
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* both icons */
.menu-btn .icon {
  position: absolute;
  transition:
    transform 0.6s ease,
    opacity 0.4s ease;
}

/* hamburger default */
.menu-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* close icon default (hidden) */
.close-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
}

/* WHEN OPEN */
.menu-btn.open .menu-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}

.menu-btn.open .close-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}


.menu-btn img {
  width: 24px;
  height: 24px;
}

/* MOBILE FIX */
@media (max-width: 800px) {
  .menu-inner {
    display: none;
  }

  .logo {
    max-width: 50px;
  }
}


/* =========================
   MOBILE DROPDOWN CONTAINER
   ========================= */
 .dropdown-cc {
  position: fixed;
  margin-top: 0.9rem;
  top: 60px;
  left: 0;
  right: 0;
  height: calc(100dvh - 60px);
  background: #ffffff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.2rem;
  z-index: 999;

  /* initial state (closed) */
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.3s ease;
}

.dropdown-cc.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.dropdown-cc.closed {
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
}

/* =========================
   DROPDOWN CONTENT
   ========================= */

.dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* =========================
   AUTH BUTTONS
   ========================= */

.authButtons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login {
  background: linear-gradient(135deg, #1e293b, #161e36);
  color: white;
  border: none;
  padding: 0.6rem;
  font-weight: 600;
  border-radius: 0.2rem;
  font-family: 'Poppins';
}



.signup {
  background: transparent;
  color: #1e293b;
  border: 2px solid #1e293b;
  padding: 0.6rem;
  font-weight: 600;
  border-radius: 0.2rem;
  font-family: 'Poppins';
}




/* =========================
   LINKS
   ========================= */

.links div {
  padding: 0.9rem 0;
  border-top: 1px solid #e2e8f0;
}

.links a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
  font-size: 0.95rem;
}

/* =========================
   NEWSLETTER
   ========================= */

.newsLetter {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsLetter h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}

.newsLetter input {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  font-family: "Poppins", sans-serif;
}

.newsLetter button {
  background: #1e293b;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}


.size {
  width: 400px;
}

.menu-inner {
  align-items: center;
  gap: 50px;
  display: none;
}

@media (min-width: 800px) {
  .menu-inner {
    display: flex;
  }
}

.ewo {
  padding: 0.5rem 1rem;
  border-radius: 0.2rem;
  background-color: #1e293b;
  color: white;
  border: none;
  font-family: 'Poppins';
  font-weight: 600;
  cursor: pointer;
}

.outta {
  display: flex;
  align-items: center;
  gap: 5px;
}.footer {
  color: #fff;
  font-family: 'Poppins';
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.general {
  background: linear-gradient(135deg, #101620, #142243);
  padding-bottom: 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-family: 'Poppins';
  margin-bottom: 2rem;
}

.desc-cont {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Poppins';
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 2rem;
}

.footer-column h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.footer-column ul li:hover {
  text-decoration: underline;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid #1e2f55;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links {
  margin-bottom: 1rem;
}

.social-links span {
  margin-right: 0.5rem;
}

.social-links a {
  margin: 0 0.5rem;
  color: #cbd5e1;
  text-decoration: none;
}

.social-links a:hover {
  text-decoration: underline;
}


.disclaimer {
  color: grey;
  font-size: 0.8rem;
  margin-top: 4rem;
  border-top: 1px solid white;
  padding-top: 1rem;
  max-width: 1300px;
  margin: 0 auto;
  font-family: 'Poppins';
}

.subscribe {
  padding: 1rem 3rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #101620, #0b2970);
  font-family: 'Poppins';
  border: none;
  color: white;
  font-size: 1.1rem;
}

.socials {
  display: flex;
  gap: 0.5rem;
}

.copyrightContainer {
  padding: 1rem;
  background-color: #1e293b;
  margin-top: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media(max-width : 768px) {
  .footer-container {
    display: block;
  }
  .general {
    padding-bottom: 0;
  }
}.faq-section {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  background-color:  #f8f9fa;
  padding-top: 4rem;
}

.faq-title {
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Poppins';
  width: 400px;
  line-height: 3.5rem;
  color : linear-gradient(135deg, #101620, #142243);
}



.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.inner-cont {
  width: 700px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-answer.open {
  max-height: 500px; /* large enough to hold content */
  opacity: 1;
  margin-top: 0.5rem;
  padding: 1rem;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
}

.faq-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-question:hover .faq-icon {
  transform: scale(1.1);
}

.question {
  font-size: 1.7rem;
  width: 500px;
  text-align: start;
  font-family: 'Poppins';
}


@media (max-width: 1215px) {
  .faq-title {
    font-size: 1.7rem;
    width: 400px;
    line-height: 2rem;
  }

  .faq-section {
    display: block;
    margin: 0 auto;
    max-width: 1200px;
  }
  .inner-cont {
    width: 100%;
  }
  .question {
    font-size: 1.2rem;
    width: 100%;
  }
}

@media (max-width : 768px) {
  .faq-section {
    padding: 1rem;
    padding-top: 3rem;
  }
  .faq-question {
    padding: 0;
  }
  .question {
    font-size: 0.9rem;
  }
  .faq-title {
    font-size: 1rem;
    width: 340px;
  }
  .faq-answer.open {
    padding: 0;
    color: rgb(45, 44, 44);
  }
}/* Services Section */
.services-section {
  background: #f9f9f9;
  text-align: center;
  padding: 6rem 2rem;
}

.services-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #101620;
}

.services-section .services-intro {
  font-size: 1.2rem;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  line-height: 1.7;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  justify-items: center;
  align-items: stretch;
}

/* Service Card */
.service-card {
  background: white;
 
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 350px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card img {
  width: 100%;
  margin-bottom: 1.5rem;
  object-fit: contain;
 
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #101620;
}

.service-card p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .services-section {
    padding: 4rem 1rem;
  }

  .services-section h2 {
    font-size: 2rem;
  }

  .services-section .services-intro {
    font-size: 1.1rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}
.why-section {
  padding: 4rem 1rem;
  text-align: center;
  background: #f8f9fb;
}

.why-heading {
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #0a2540; /* adjust if dark bg */
  text-align: start;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  
  margin: 0 auto;
}

.why-card {
  background: white; /* dark gray */
  color: black;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(184, 180, 180, 0.4);
  transition: box-shadow 0.3s ease;
}

.why-card:hover {
  box-shadow: 0 6px 16px rgba(249, 246, 246, 0.6);
}

.why-icon {
  font-size: 2.5rem;
  color: linear-gradient(135deg, #1e293b, #0f172a);
  margin-bottom: 1rem;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-description {
  color: black; /* lighter gray text */
  font-size: 0.95rem;
  line-height: 1.5;
}


@media (max-width : 450px) {
 .why-heading {
  font-size: 2rem;
  font-weight: 500;
 }
 .why-section {
  padding: 1rem 1rem;
 }
}.empower {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: white;
}

.offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  border-bottom: 1px solid #334155;
  padding-bottom: 2rem ;
}



@media (max-width: 768px) {
  .offer {
    flex-direction: column;
    gap: 1rem;
  }

  .offer p {
    width: 100% !important;
    margin-top: 1rem;
   
  }
  .head {
    font-size: 1.7rem !important;
  }
  .empower {
    padding: 1rem !important;
  }
}.stats {
  background: #f8f9fa;
  padding: 80px 2rem;
  
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.stat-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 2px solid grey;
}

.stat-box:hover {
  transform: translateY(-5px);

}

.stat-number {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.stat-box-txt {
  font-size: 1rem;
  color: #555;
}



.intro-text {
  display: flex;
  justify-content: space-between;
  gap: 10rem;
  
}

.head-text {
  font-size: 3rem;
  color: #0a2540;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-container {
   flex-direction: column;
   justify-content: flex-start;
   gap: 1rem;
  }
  .intro-text {
    flex-direction: column;
    gap: 0rem;
    justify-content: flex-start;
  }
  .stat-box {
    margin-top: 0rem;
  }
  .stats {
    padding: 1rem;
  }
  .offer {
    margin-bottom: 0rem !important;
  }
}


a {
  text-decoration: none;
  color :  rgb(45, 46, 47);
}.ready {
  position: relative;
  display: flex;
  align-items: center;
  padding: 6rem 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, #101620, #142243);
}

.newblob {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(3, 40, 96, 0.9), rgba(55, 195, 241, 0.4),  #0f172a );
  border-radius: 50%;
  right: 50%;
  animation: pulse 2.5s infinite ease-in-out;
  position: absolute;
  left: 50%;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

.ready-content {
  position: relative;
  max-width: 600px;
  z-index: 1;
}

.ready-text-header {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.ready-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: white;
}

.ready-btn {
  background: linear-gradient(135deg, #1e293b, #1445b7);
  color: white;
  padding: 1rem 2rem;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
  font-family: 'Poppins';
}

.ready-btn:hover {
  transform: scale(1.05);
  background: #022f4f;
}

@media (max-width: 768px) {
  .ready {
    flex-direction: column;
    padding: 4rem 1rem;
  }

  .ready-content {
    max-width: 100%;
  }

  .ready-text-header {
    font-size: 2rem;
  }

  .ready-text {
    font-size: 1rem;
  }
}/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */
.blog-slider-container {
  position: relative;
  width: 100%;
  padding: 2rem 0;
}

.blog-swiper {
  padding: 1rem;
}

.blog-slide {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  padding: 1rem;
  text-align: left;
}

.blog-slide-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.blog-slide-title {
  font-size: 1.2rem;
  margin: 0.75rem 0;
  font-weight: 600;
}

.blog-slide-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.blog-slide-link {
  color: #0066ff;
  font-weight: 500;
  text-decoration: none;
}

/* navigation buttons */
.blog-slider-prev,
.blog-slider-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 2rem;
  background: rgba(255,255,255,0.9);
  border-radius: 2rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: background 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.blog-slider-prev:hover,
.blog-slider-next:hover {
  background: #0066ff;
  color: #fff;
}

.blog-slider-prev {
  left: 2rem;

}

.blog-slider-next {
  right: 2rem;
  
}:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform,
        200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
        200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
.video-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e293b, #161e36);
  display: flex;
  justify-content: center;
  align-items: center;

}

.loader {
  width: 100px;
  margin: 0 , auto;
  max-width: 200px;
}
.services-detail {
  font-family: 'Poppins';
  color: #1a1a1a;
  line-height: 1.6;
  background: #f9fafa;
}


.service-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: grey;
}

.service-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.service-hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;

}

.service-hero-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.service-hero-overview {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.8;
}


.service-content {
  padding: 0 2rem;
}

.service-content > div > p:first-child {
  font-size: 2rem;
  font-weight: 900;
  color: #0a2540;
  margin-bottom: 1rem;
}

.service-content > div > p:last-child {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.75;
}


.service-section {
  margin-bottom: 3rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease;
}

.service-section:hover {
  transform: translateY(-4px);
}

.service-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0a2540;
  border-left: 4px solid #0077ff;
  padding-left: 1rem;
}

.service-section-list {
  list-style: none;
  padding-left: 0;
}

.service-point {
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: flex-start;
  color: #333;
}


.bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: #0077ff;
  flex-shrink: 0;
}

  

  

@media (max-width: 768px) {
  .service-hero {
    height: 50vh;
    
  }

  .service-hero-overlay {
    width: 400px;
  }

  .service-hero-title {
    font-size: 1rem;
  }

  .service-hero-overview {
    font-size: 1rem;
  }

  .service-section {
    padding: 1.5rem;
  
  }

  .service-content {
    padding: 1rem;
  }

  .service-content > div > p:first-child {
  font-size: 1.5rem;

}
@media (max-width: 450px) {
    .service-hero-overlay {
      width: 340px;
    }
  }

  
}

.hero {
  background:linear-gradient(135deg, #1e293b, #161e36);
  color: white;
  display: flex;
  flex-direction: column;
  
}

.nav3 {
  background-color:  #0f172a ;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1rem;
  padding: 1rem;
  padding-right: 1rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
   background:   linear-gradient(135deg, #1e293b, #161e36);;
  position: fixed;
  left: 0;
  right: 0%;
  z-index: 999;
  font-family: 'Poppins';
  padding-left: 1rem;
  padding-right: 1rem;
  
}

.hero-small {
  background-color: #1a2a44;
  color: white;
  font-family: 'Poppins';
}

.nav2 {
  display: flex;
  justify-content: space-between;
  align-items: center;  
  padding: 1rem 1rem;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1000;
}

.logo {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
}

.tagline {
  font-size: 1.2rem;
  color: #a3bffa;
  margin: 0.5rem 0;
  font-weight: 500;
}

.hero-cont-mobile {
  padding-top: 6rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background: linear-gradient(135deg, #1a2946, #040f27);
}

.mobile-logo {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
  color: #fff;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1rem;
  margin: 0.8rem 0;
  color: #d1d9e6;
}

.mobile-icon {
  color: #a3bffa;
}

.get-started-btn {
  background-color: #3b5998;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s;
  font-family: 'Poppins';
}

.get-started-btn:hover {
  background-color: #2d4373;
}
.text {
  max-width: 500px;
}

.text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta {
  background: linear-gradient(135deg, #101620, #14337b);
  color: white;
  border: none;
  padding: 1.4rem 2.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Poppins';

}

.cta:hover {
  background: linear-gradient(135deg, #101620, #14337b);
}

.visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blob {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(3, 40, 96, 0.9), rgba(55, 195, 241, 0.4),  #0f172a );
  border-radius: 50%;
  animation: pulse 2.5s infinite ease-in-out;

}



.hero-content {
  display: flex;
  padding: 1rem;
  padding-top: 7rem;
  padding-bottom: 2rem;
}

.hero-image {
  width: 100%;
  border-radius: 10px;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}




@media (max-width: 1024px) {
  .blob {
    width: 180px;
    height: 180px;
  }
  .text h1 {
    font-size: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .visual {
    margin-top: 2rem;
  }
  .blob {
    position: absolute;
    top: -80px;
  }
  .text h1 {
    font-size: 2rem;
  }
  .text p {
    font-size: 1.1rem;
  }
  .hero-image {
   height: 100% !important;
  }
  .visual {
    display: block;
  }
  .text {
    max-width: 700px;
  }
}


@media (max-width : 450px) {
  .hero-content {
    display: block;
  }
  .text {
    max-width: 100%;
  }
  .text p {
    margin-bottom: 0.7rem;
  }
  .hero-content{
    gap: 0rem;
  }
}body.no-scroll {
  overflow: hidden;
}
.sidenav {
  position: fixed;
  top: -100%; /* hidden above */
  left: 0;
  right: 0;
  max-height: 100%;
  background: linear-gradient(135deg, #101620, #142243);
  display: flex;
  flex-direction: column;
  padding: 1rem;
  padding-bottom: 10rem;
  transition: top 0.5s ease;
  z-index: 1000;
  padding: 1rem;
  overflow-y: auto; /* scroll only if needed */
  scrollbar-width: none; /* hide firefox scrollbar */
}
.sidenav::-webkit-scrollbar {
  display: none; /* hide chrome/safari scrollbar */
}

.sidenav.active {
  animation: slideDown 0.5s ease forwards;
}

.subs {
  display: flex;
  flex-direction: column;
  border: 1px solid grey;
  padding: 1rem;
  margin-bottom: 2rem;
  gap: 0;
  border-radius: 0.3rem;
  color: white;
}

.subs button {
  padding: 1rem;
  border: none;
  font-family: 'Poppins';
  background: linear-gradient(135deg, #1f5aba, #0f172a);
  color: white;
  border-radius: 0.3rem;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-btns button {
  padding: 1rem;
  border: none;
  font-family: 'Poppins';
  background: linear-gradient(135deg, #1e293b, #0d2763);
  color: white;
  border-radius: 0.3rem;
}

@keyframes slideDown {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  padding: 1rem;
  border-radius: 0.3rem;
}

.list:hover {
  background-color: #1e293b;
}

.elite {
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: white;
}

.sidebar-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
 border-bottom: 1px solid grey;
  padding-left: 1rem;
  padding-right: 1rem;
}

.dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  padding: 1rem;
  border-radius: 0.3rem;
}

.close {
  padding: 0.6rem;
  border-radius: 0.2rem;
  font-size: 1.3rem;
  font-family: 'Poppins';
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1e293b;
  padding: 10px;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
}

.dropdown-menu li:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #38bdf8;
}

nav {
  margin: 0;
  padding: 0;
}

@media (max-width : 768px) {
  li {
    font-size: 0.9rem;
  }
}.blog-hero  {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #101620, #142243);
  color: white;
  padding: 1rem;
}

.summary-cont {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 2rem;
}

.alleged-hero {
  width: 700px;
  border-radius: 2rem;
}

.hero-title {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: white;
}



.published-info {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #666;
  text-align: start;
}




.blog-section h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-section p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.blog-section ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.blog-section li {
  margin-bottom: 0.5rem;
}

.blog-not-found {
  text-align: center;
  padding: 5rem 2rem;
  font-size: 1.5rem;
}

.blog-content {
  padding: 2rem;
}

@media (max-width : 768px) {
  .summary-cont {
    flex-direction: column;
  }
  .alleged-hero {
    width: 100%;
  }
  .blog-section h2 {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
 p {
  font-size: 0.9rem;
 }
 .blog-section p {
  font-size: 0.9rem;
}
.published-info {
  padding: 1;
}
.blog-hero {
  padding: 2rem;
}
.summary-cont {
  gap: 1rem;
}
.blog-content {
  padding: 0;
  padding-left: 2rem;
  padding-right: 2rem;

}

}.auth-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #13171e, #121727);
  padding: 1.5rem;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.logo-container {
  text-align: center;
  margin-top: 3rem;
}

.logo-container img {
  width: 50px;
  background-color: white;
  padding: 0.4rem;
  border-radius: 0.2rem;
}

.auth-card {
  width: 100%;
  max-width: 380px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 20px;
 
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.auth-card h1 {
  font-size: 1.8rem;
  margin-bottom: .3rem;
  text-align: center;
}

.auth-card p {
  margin-bottom: 1.5rem;
  color: #bfc5d1;
  font-size: .9rem;
  text-align: center;
}





.auth-btn {
  width: 100%;
  padding: .95rem;
  border: none;
  border-radius: 0.2rem;
  background: #2563eb;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: .5rem;
  transition: .3s ease;
}

.auth-btn:hover {
  background: #1e40af;
}

.switch-auth {
  margin-top: 1.3rem;
  text-align: center;
  color: #bfc5d1;
  font-size: .85rem;
}

.switch-auth a {
  color: #3b82f6;
  text-decoration: none;
  margin-left: .2rem;
}


.input-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  gap: 10px;
}

.input-wrapper input {
  width: 85%;
  padding: 1rem 1rem 1rem 2.8rem; /* space for icon */
  border: none;
  outline: none;
  background: rgba(255,255,255,0.12);
  border-radius: 0.2rem;
  color: #fff;
  font-size: .95rem;
  font-family: "Poppins", sans-serif;
}

.input-wrapper input:focus {
  border:  3px solid #3a5ac3;
}

.input-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #9ca3af;
}


.input-wrapper svg {
  color: #3a5ac3;
}


.names {
  display: flex;
  align-items: center;
  gap: 10px;
}


@media (max-width: 480px) {
  .auth-page {
    padding: 0;
    min-height: 0;
    height: 100vh;
  }

  .auth-card {
    height: 100%;
    border-radius: 0;
    padding: 1rem;
    width: 100%;
    padding-top: 3rem;
  }

}.step-container {
   background: linear-gradient(135deg, #13171e, #121727);
   width: 100%;
   height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
}


.step {
  background: rgba(255,255,255,0.06);
  padding: 3rem;
  border-radius: 1rem;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
}

.input-group {
  position: relative;
  margin-bottom: 18px;
}

.input-group input {
  width: 78%;
  padding: 14px 14px 14px 45px;
  border: none;
  border-radius: 14px;
  color: white;
  font-size: 1rem;
  outline: none;
  background: rgba(255,255,255,0.12);
  font-family: "Poppins", sans-serif;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #9ca3af;
}

/* Upload section */
.upload-label {
  margin-bottom: 8px;
  display: block;
  font-size: 0.9rem;
  color: #d1d5db;
}

.upload-box {
  position: relative;
  padding: 14px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  margin-bottom: 20px;
  width: 87%;
}

.upload-box input {
  width: 80%;
  color: white;
}

.upload-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #9ca3af;
}


.btn-secondary {
  background-color: #6b7280;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s;
  font-family: 'Poppins';
}

.btn-secondary:hover {
  background-color: #35383b;
}


.btn-primary {
  background-color: #3b5998;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s;
  font-family: 'Poppins';
}

.btn-row {
  display: flex;
  gap: 1rem;
}


.pf {
  font-family: "Poppins", sans-serif;
  border: none;
  outline: none;
}


@media (max-width: 480px) {
  .step-container {
    display: block;
  }

  .step {
    width: 100%;
    padding: 1rem;
    border-radius: 0%;
    height: 100vh;
  }
}.spinner-overlay {
  position: fixed;       /* ensure it covers the whole viewport */
  top: 0;
  left: 0;
  inset: 0;
  width: 100vw;          /* full width */
  height: 100vh;         /* full height */
  background: linear-gradient(135deg, #151b24, #121724);
  display: flex;
  flex-direction: column;
  align-items: center;   /* vertical center */
  justify-content: center; /* horizontal center */
  z-index: 9999;         /* stay on top */
}

.slim-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(0, 150, 255, 0.2); /* thin track */
  border-top-color: #0096ff;                /* highlighted arc */
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* --- FORCE MOBILE SIZE --- */
.mobile-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #1a2636;
}

.dashboard-container {
  width: 100%;
  max-width: 420px;   /* perfect mobile size */
  height: 100vh;
  background: linear-gradient(135deg, #151b24, #121724);
  color: white;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* -------- TOP BAR --------- */
.top {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px 18px;
}

.fix {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-info img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.support-icon {
  font-size: 1rem;
}

/* ------ MIDDLE SCREEN SCROLL ------- */
.screen-wrapper {
  flex: 1;
  overflow-y: auto;
  padding: 12px 15px;
  padding-bottom: 90px; /* space for nav bar */
}

/* --------- BOTTOM NAV ---------- */
.bottom-nav {
  width: 100%;
  max-width: 420px;
  height: 68px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-around;
  align-items: center;
 
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bottom-nav span {
  font-family: "Poppins", sans-serif;
}

.tab {
  background: none;
  border: none;
  color: #cbd5e1;
  font-size: 0.77rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;

  padding: 6px 0;
}

.tab svg {
  font-size: 1.35rem;
}

.tab.active {
  color: #ffffff;
}

.tab.active svg {
  color: rgb(255, 191, 0);
}


.balance {
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: 10px;
  font-family: 'Poppins';
}

.details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.details span {
  font-weight: 400;
}


.amount {
  font-size: 1.4rem;
  font-weight: 570;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter';
}

.history {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.179);
  padding: 1rem 1rem;
  border-radius: 10px;
  width: fit-content;
}

.history span {
  font-size: 0.95rem;
}


.balance {
  background: linear-gradient(135deg, #1a2636, #121724);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0.8rem;
  border-radius: 14px;
  margin-top: 1rem;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
  transition: 0.25s ease;
}

.balance:active {
  transform: scale(0.98);
}

.details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.7rem
}

.acct-info {
  font-weight: 400;
  font-size: 0.9rem;
  opacity: 0.8;
}

.icon-btn {
  opacity: 0.7;
  transition: 0.2s;
}

.icon-btn:active {
  opacity: 1;
  transform: scale(0.9);
}

.amount {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.1rem;
}

.amount-text {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.updated {
  font-size: 0.7rem;
  opacity: 0.6;
  margin: 0;
  margin-top: 0.3rem;
}

.history {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.4rem 0.7rem;
  border-radius: 1rem;
  width: fit-content;
  cursor: pointer;
  transition: 0.2s ease;
}

.history span {
  font-size: 0.6rem;
  font-weight: 500;
}

.history:active {
  transform: scale(0.97);
  background: rgba(255, 255, 255, 0.18);
}

.service-list {
 display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.service-item {
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 10px 0;
  border-radius: 10px;
  cursor: pointer;
}


.service-item p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
}

.reward-content {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 10px 10px;
}

.reward-content span {
  font-size: 0.9rem;
  font-weight: 700;
}

.rewards img {
  width: 25px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.1rem;
  border-radius: 0.5rem;
}

.reward-content .p {
  font-size: 0.85rem;
  margin-top: 6px;
  margin-bottom: 5px;
  font-weight: 600;
}


.reward-container {
  border-radius: 14px;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  transition: 0.25s ease;
}

.referals {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
  padding: 10px 10px;
  border-radius: 10px;
}


.referals .p {
  font-size: 0.85rem;
  margin-top: 6px;
  font-weight: 600;
  margin-bottom: 5px;
}

.referals span {
  font-size: 0.9rem;
  font-weight: 700;
}


.title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.recent-transactions-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.viewAll {
  font-size: 0.8rem;
  font-weight: bold;
  color: rgb(183, 144, 6);
  cursor: pointer;
}


.transaction-cont {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.4rem;
}

.transaction {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.transaction:last-child {
  border-bottom: none;
}

.left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ICON */
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 2rem;
  padding: 5px;
}

.icon.credit {
  background: rgba(0, 200, 0, 0.18);
  color: #32ff32;
}

.icon.debit {
  background: rgba(255, 180, 0, 0.22);
  color: #ffd37e;
}

/* BENEFICIARY + TIME */
.detail {
  display: flex;
  flex-direction: column;
  max-width: 150px; /* ensures ellipsis works nicely on mobile */
}

.beneficiary {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.time {
  font-size: 0.72rem;
  opacity: 0.6;
  margin-top: 2px;
}

/* AMOUNT */
.amount {
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Inter';
}

.amount.credit {
  color: #32ff32;
}

.amount.debit {
  color: #ffd37e;
}


.finance {
  background: rgba(255, 255, 255, 0.08);
  margin-top: 0.4rem;
  padding: 0.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
}

.finance img {
  width: 40px;
  background-color: #1a2636;
  padding: 0.2rem;
  border-radius: 15px;
}

.finance p {
  margin: 0;
  font-size: 0.7rem;
}

.finances {
  font-size: 0.9rem;
  font-weight: 500;
}

.highlight {
  font-size: 0.7rem;
  color: #32ff32;
  margin: 0;
}


.highlight2 {
  font-size: 0.7rem;
  color: #32ff32;
  margin: 0;
  font-weight: 500;
}

.trends-container {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5rem;
  border-radius: 10px;
  margin-top: 0.5rem;
}

.period {
  padding: 0.1rem 0.6rem;
  margin-right: 0.5rem;
  border-radius: 2rem;
  border: none;
  color: white;
  background-color: #3d2f12;
  font-weight: 600;
  transition: 0.5s ease;
  cursor: pointer;
  font-family: 'Poppins';
}

.activee {
  background-color: #c58910;
}


.inOut {
  display: flex;
  align-items: center;
  gap: 12px;
}

.in , .out {
  border-radius: 10px;
  margin-top: 0.9rem;
  padding: 0.4rem;
  width: 100%;
  background-color: #151b24;
  padding-left: 0.9rem;
}


.debiti {
  background: rgba(255, 68, 0, 0.22);
  color: rgb(162, 37, 37);
  padding: 0.4rem;
  border-radius: 2rem;
}


.crediti {
  background: rgba(0, 200, 0, 0.18);
  color: #056a05;
  padding: 0.4rem;
  border-radius: 2rem;
}

.debitii {
  color: red;
  font-size: 0.8rem;
}


.creditii {
  color: #32ff32;
  font-size: 0.8rem;
}


.figure {
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Inter';
} 


.acct-details {
  display: flex;
  flex-direction: column;
  text-align: center;
  background-color: #3b465436;
  padding: 0.7rem;
  margin-bottom: 1rem;
  margin-top: 0.7rem;
  border-radius: 7px;
}

.tawk-button-circle {
  display: none !important;
}

.acct-details .no {
  font-size: 1.1rem;
  font-family: 'Inter';
  font-weight: 700;
}

.acct-details .na {
  font-size: 0.75rem;
  font-weight: 600;
  color: #97979a;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.buttons button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  padding: 10px;
  font-family: 'Poppins';
  text-align: center;
  border-radius: 7px;
  font-weight: 600;
}



.copy {
  background-color: #1b2129;
  color:  rgb(255, 174, 0);
}

.share {
  background-color: rgb(255, 174, 0);
  color: white;
}

.typeOf {
  margin-left: 2rem;
}


.service-list-cont {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  margin-top: 1.5rem;
}

.service-list-cont span {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #797b7d;
}



.search-wrapper {
  position: relative;
  width: 100%;
}



.list-srch {
  width: 86%;
  height: 48px;              /* 👈 makes it tall */
  padding: 0 14px 0 44px;    /* 👈 space for icon */
  font-size: 15px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
  font-family: 'Poppins';
}

.list-srch::placeholder {
  color: #888;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
}


.dash-shimmer {
  background: #0d0f14;
  min-height: 100vh;
  padding: 16px;
}

/* Base shimmer */
.shimmer {
  background: linear-gradient(
    90deg,
    #1a1d24 25%,
    #242835 37%,
    #1a1d24 63%
  );
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: 12px;
  margin-bottom: 14px;
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

/* Header */
.shimmer-header {
  height: 48px;
  width: 60%;
}

/* Balance card */
.shimmer-balance {
  height: 110px;
  width: 100%;
}

/* Rows */
.shimmer-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

/* Actions */
.shimmer-action {
  flex: 1;
  height: 60px;
  border-radius: 14px;
}

/* Stats */
.shimmer-stat {
  flex: 1;
  height: 80px;
}

/* Title */
.shimmer-title {
  width: 40%;
  height: 20px;
}

/* Transactions */
.shimmer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shimmer-transaction {
  height: 54px;
  border-radius: 10px;
}


.headd {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
  justify-content: space-between;
}

.statement1 {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 2rem;
}

.statement2 {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 1rem;
}



.statement1 div, .statement2 div {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.statement1 div p, .statement2 div p {
 font-size: 0.8rem;
 margin-top: 0.4rem;
 color: rgba(236, 232, 236, 0.513);
}

.statement1 img, .statement2 img {
  width: 25px;
  margin-bottom: 1.3rem;
  background-color: #151b2468;
  padding: 0.3rem;
  border-radius: 0.2rem;
}


.optionTitle {
  font-size: 1.4rem;
  
}

.fileOption {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fileOption div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}

.fileOption div span {
  font-size: 0.9rem;
  color: rgba(236, 232, 236, 0.513);
}

.cancelBtn {
  background-color: #1b2129;
  border: none;
  padding: 17px 20px;
  border-radius: 7px;
  color: rgb(255, 174, 0);
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  font-family: 'Poppins';
}

.proceedBtn {
  background-color: rgb(255, 174, 0);
  border: none;
  padding: 17px 20px;
  border-radius: 7px;
  color: white;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  font-family: 'Poppins';
}

.modalbtns {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}




/* Proceed disabled state */
.proceedBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


.radioWrapper {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* hide default radio */
.radioWrapper input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.customRadio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* inner dot */
.customRadio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgb(255, 174, 0);
  transform: scale(0);
  transition: transform 0.2s ease;
}

/* checked state */
.radioWrapper input:checked + .customRadio {
  border-color: rgb(255, 174, 0);
}

.radioWrapper input:checked + .customRadio::after {
  transform: scale(1);
}


.half {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.half div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.half div span {
  font-size: 0.9rem;
  color: rgba(236, 232, 236, 0.513);
}

.half div input {
  width: 93%;
  height: 48px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
  padding: 0 14px;
  font-size: 15px;
  font-family: 'Poppins';
  font-weight: 600;
  
  
}

.half div input::placeholder {
  color: #888;  
}

.generateBtn {
  background-color: rgb(255, 174, 0);
  border: none;
  padding: 17px 20px;
  border-radius: 7px;
  color: white;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  font-family: 'Poppins';
 
}

.cover {
  background-color: #242835;
  padding: 0.7rem;
  border-radius: 0.7rem;
}

.centre-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 420px;
  background-color: #1b222bf1;
  border-radius: 16px;
  padding: 20px;
  z-index: 1001;
  animation: popIn 1s ease;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translate(-50%, -55%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}


.cancels-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.834);
  z-index: 1000;
}

.service-title {
  text-align: center;
  
}



.service {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service img {
  border-radius: 10px;
}

.service-icon {
  display:flex;
  align-items: center;
  gap: 1rem;
}

.services-list-modal {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nxt {
  color: rgb(184, 176, 176);
}

.company {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  align-items: center;
}


.identifier {

}


.identifier span {
  font-size: 0.9rem;
  color: rgba(236, 232, 236, 0.513);
  margin-bottom: 1rem;
}

.tit {
  font-size: 0.9rem;
  color: rgba(236, 232, 236, 0.513);
  margin-bottom: 2rem;
}


.identifier div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.7rem;
  border-radius: 10px;
}

.identifier div input {
  width: 93%;
  height: 48px;
  border-radius: 8px;
  border: none;
  background-color: #28374863;
  color: #fff;
  outline: none;
  padding: 0 14px;
  font-size: 22px;
  font-family: 'Poppins';
  font-weight: 600;
}


.amount-to-pay {
  margin-top: 1.4rem;
  margin-bottom: 0.7rem;
}

.amount-to-pay div {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.7rem;
  border-radius: 10px;
}

.ionno {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100vh;
}

.lady {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* -------- INVESTMENT DASHBOARD --------- */

.initial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #07a5ada3, #00c6ff); /* dynamic color */
  color: white;
  font-weight: 500;
  font-size: 0.8rem;
}

.dashboards-container {
  width: 100%;
  max-width: 420px;   /* perfect mobile size */
  height: 100dvh;
  background: linear-gradient(135deg, #151b24, #10141d);
  color: white;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  justify-content: space-between;
}


.top-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.top-section img {
  width: 30px;
}


.headerr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem;
  background-color: rgb(43, 54, 72);
}


.headerr div {
  display: flex;
  align-items: center;
  gap: 15px;
}


.live {
  background-color: #384f6e5a;
  border: 1px solid #193b67f1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.you {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.live p {
  margin: 0;
  font-size: 0.8rem;
}

.coin-list {
 
  display: flex;
  align-items: center;
  gap: 1rem;
}

.coin-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.green {
  color: #108e09;
  font-weight: 500;
}



.symbol {
  color: #97979a;
  font-weight: 500;
}


.green-dot {
  font-size: 1rem;
  color:#108e09;
  font-weight: 500;
}

.balance-infoss {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.balance-infoss p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: 'Inter';
}


.main-view {
  margin-top: 4rem;
  padding: 1rem 1.2rem;
  flex: 1;
  overflow-y: auto;
}


.tab-section {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}

.main-views  {
  padding: 0;
}

.main-views h5 {
  margin: 0;
  font-size: 1.3rem;
}



.welcome2 {
  margin: 0;
  margin-top: 0.1rem;
  color: #97979a;
  text-align: center;
}
.welcome {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.investment-overview {
  margin-top: 1rem;
  text-align: center;
}

.crypto-bal {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Inter';
}


.investment-overview {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem;
  border-radius: 1rem;
  background-color: #1a2636;
  
}

.wallet {
  display: flex;
  justify-content: center;
}

.wallet div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wallet p {
  margin: 0;
  font-size: 0.8rem;
}


.wallets {
  display: flex;
  justify-content: center;
  margin-top: 0.8rem;
}

.wallets div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: rgb(43, 54, 72);
  padding: 0.3rem 1.1rem;
  border-radius: 0.7rem;
}

.wallets p {
  margin: 0;
  font-size: 0.8rem;
}

.crypto-bal {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0.7rem;
}

.cease {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cease button {
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background-color: rgb(43, 54, 72);
  color: white;
  border: none;
  border-radius: 0.7rem;
  font-family: 'Poppins';
}

.funds {
  font-size: 0.8rem;
  color:#97979a;
  margin: 0;
}

.last-updated {
  font-size: 0.7rem;
  
}


.historyy {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}


.historyy div {
 
}


.london {
  background-color: #1a2636;
  padding: 0.5rem ;
  width: 160px;
  border-radius: 0.5rem;
}


.typee {
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.typee svg , .dollaz {
  font-size: 0.8rem;
  background-color: rgba(255, 255, 255, 0.18);
  padding: 0.3rem;
  border-radius: 0.3rem;
}


.ball {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}


.cal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}


.tab-section {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  background-color: #122133f1;
}

.tab-btn {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color:  transparent;
  color: white;
  transition: all 0.2s ease;
  font-family: 'Poppins';
  border: none;
  padding: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
}



.tab-btn.active {
  color: orange;
  
}

.tab-btn .icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.markets-inn img {
  width: 40px;
  border-radius: 2rem;
}

.markets-inn {
  margin-bottom: 5rem;
  background-color: #1a2636;
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-radius: 0.5rem;
}




.markets-inn div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.mcap {
 display: flex;
 align-items: center;
 gap: 0.5rem;
}

.mcap p {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Inter';
  margin: 4px;

}

.mcap span {
  color: #b6b1b1;
  font-family: 'Inter';
  margin: 0;
  font-size: 0.8rem;
}

.bou {
  display: flex;
  align-items: center;
  gap: 15px;
}

.change {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
}

.mark {
  font-size: 3rem;
}

.change p {
  margin: 7px;
  font-family: 'Inter';
  font-size: 0.9rem;
  font-weight: 600;
}

.redd {
  color: red;
  font-weight: 500;
  font-size: 0.9rem;
}

.greenn {
  color: green;
  font-weight: 600;
  font-size: 0.9rem;
}

.mark {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 2rem;
}

.more {
  text-align: center;
  font-weight: 600;
  
}


.carousel {
  max-width: 380px;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 1.5rem;
}

.carousel-track {
  cursor: grab;
}

.carousel-track:active {
  cursor: grabbing;
}

.slide {
  border-radius: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #1e293b, #051e58);
}

.slide img {
  width: 30px;
}


.slide div {
  display: flex;
  align-items: center;
  gap: 1.4rem;
 
}

.slide div div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.slide p {
  margin: 0;
  font-size: 0.9rem;
}

.title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.ctaa {
  margin-top: 8px;
  color: #3cff8f;
  font-weight: 500;
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.dot {
  width: 6px;
  height: 6px;
  background: #444;
  border-radius: 999px;
  margin: 0 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  width: 18px;
  background: #fff;
}.navigatee {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}


.notification-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.notification {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.8rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}


.initialss {
 
}


.msg {
  display: flex;
  flex-direction: column;
}


.msg-type {
  font-size: 0.9rem;
  font-weight: 700;
}

.msg-msg {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgb(205, 199, 199);
  font-family: 'Inter';
}


.message-detail-container {
  max-width: 450px;   /* perfect mobile size */
  margin: 0 auto;
  background: linear-gradient(135deg, #151b24, #121724);
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

.message-container {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.8rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}


.det-type {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.msg {
  font-weight: 600;
  color: rgb(218, 211, 211);
  font-size: 0.8rem;
}

.me-container {
  max-width: 420px;   /* perfect mobile size */
  background: linear-gradient(135deg, #151b24, #121724);
  color: white;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  min-height: 100vh;
}


.me-container img {
  width: 40px;
  border-radius: 10px;
  margin-bottom: 0.4rem;
  height: 43px;
}


.Title {
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}

.Titless {
  font-weight: bolder;
  font-size: 0.8rem;
  color: grey;
}


.pic {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 0.6rem;
}

.pic span {
  font-weight: bold;

}


.personal-Info-cont {
  background: rgba(255, 255, 255, 0.036);
  padding: 1rem;
  border-radius: 10px;
}

.personal-Info-cont button {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgb(236, 167, 5);
  border: none;
  background: transparent;
  font-family: 'Poppins' , sans-serif;
}

.personal-Info-cont button:active {
  background-color: rgb(236, 167, 5);
  color: white;
  border-radius: 7px;
}

.personal-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.personal-item:last-child {
  border-bottom: none;
}

.personal-item span {
  margin: 0;
}

.to {
  font-weight: bolder;
  color: grey;
  font-size: 0.8rem;
}

.ans {
  font-weight: bold;
  font-size: 0.8rem;
}

.verify {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Verified {
  background: rgba(0, 200, 0, 0.18);
  color: #32ff32;
  padding: 0.4rem  0.7rem;
  border-radius: 10px;
  font-size: 0.8rem;
}

.action-cont {
 background: rgba(255, 255, 255, 0.036);
 padding: 1rem;
 border-radius: 10px;
}

.action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}



.action div {
  display: flex;
  align-items: center;
  gap: 13px;
  
}

.action div svg {
  background-color: #151b24;
  padding: 0.8rem;
  color: rgb(236, 167, 5);
  border-radius: 7px;
}


.action div span {
  font-size: 0.85rem;
}.support-container {
  max-width: 420px;   /* perfect mobile size */
  background: linear-gradient(135deg, #151b24, #121724);
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 1rem;
}


.chat {
  background: rgba(255, 255, 255, 0.036);
  padding: 1rem;
  border-radius: 10px;
}

.timeFrame {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.2rem  0.5rem;
  border-radius: 7px;
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.per {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 1rem;
}

.per p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
}

.per span {
  font-size: 0.8rem;
  font-weight: 600;
}

.per svg {
  background-color: #222934;
  padding: 0.4rem;
  border-radius: 10px;
}

.email {
  background: rgba(255, 255, 255, 0.036);
  padding: 1rem;
  border-radius: 10px;
}

.email div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.email div span {
  font-size: 0.8rem;
  font-weight: 600;
}


.email div button {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgb(236, 167, 5);
  font-weight: 500;
  background: rgba(255, 180, 0, 0.22);
  border: none;
  padding: 0.4rem  0.6rem;
  border-radius: 5px;
}/* Wrapper uses your theme gradient */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  background: linear-gradient(135deg, #13171e, #121727);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Card (glass-like, dark) */
.login-form {
  max-width: 420px;
  padding-top:10rem;
  padding: 28px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(2,6,23,0.6);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(255,255,255,0.04);
}

/* Title */
.login-title {
  color: #e6eefb;
  font-size: 22px;
  margin: 0;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.2px;
}

/* Error */
.error {
  background: rgba(255, 50, 50, 0.08);
  color: #ffb4b4;
  padding: 8px 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
}

/* Input wrapper with icon */
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 12px;
  color: rgba(230, 241, 255, 0.6);
  font-size: 18px;
  pointer-events: none;
}

/* Input base */
.login-form input {
  width: 100%;
  padding: 1rem 1rem 1rem 2.8rem;
 
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.03);
  color: #e6eefb;
  border-radius: 0.2rem;
  font-size: 15px;
  transition: box-shadow 0.16s ease, border-color 0.16s ease, transform 0.08s;
  outline: none;
  font-family: 'Poppins';
}

.login-form svg {
  color: #3a5ac3;
}

/* Slim iOS-like focus (blue) */
.login-form input:focus {
 border:  3px solid #3a5ac3;
}

/* Placeholder color */
.login-form input::placeholder {
  color: rgba(230,241,255,0.45);
}

/* Button */
.login-btn {
  margin-top: 1rem;
  padding: .65rem;
  border-radius: 15px;
  border: none;
  background: #2563eb;
  color: white;
  font-weight: 600;
  border-radius: 0.2rem;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 8px 18px rgba(39, 67, 163, 0.28);
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s;
  font-family: 'Poppins';
}

.login-btn:active { transform: translateY(1px); }
.login-btn:disabled { opacity: 0.7; cursor: not-allowed; box-shadow: none; }


.login-terms {
  margin-top: 8px;
  font-size: 12.5px;
  color: rgba(230,241,255,0.52);
  text-align: center;
  line-height: 1.45;
}

.login-terms .highlight {
  color: #4f8bff;
  cursor: pointer;
  font-weight: 600;
}

.login-terms .highlight:hover {
  text-decoration: underline;
}

.profile-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #28354a, #121727);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px auto; /* center and space below */
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  font-size: 36px;
  color: #3d82f6; /* your theme blue for the icon */
}


/* LoginCode.css */


.login-code {
  background: rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(2,6,23,0.6);
  padding: 2rem;
  border-radius: 1rem;
  max-width: 400px;
  text-align: center;
  color: #ffffff;
  position: relative;
}



.login-code h2 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.login-code .subtitle {
  font-size: 0.95rem;
  color: #a0a0a0;
  margin-bottom: 1.5rem;
}

.error {
  color: #ff4d4f;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.otp-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.otp-box {
  background: transparent;
  border: 2px solid #444;
  border-radius: 0.2rem;
  width: 3rem;
  height: 3rem;
  text-align: center;
  font-size: 1.5rem;
  color: #ffffff;
  font-family: "Poppins";
  transition: border 0.2s, box-shadow 0.2s;
}

.verification {
  font-size: 0.5rem;
}

.otp-box:focus {
  outline: none;
 border: 2px solid white;
}

.resend-section {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.resend-link {
  background: none;
  border: none;
  color: #00d4ff;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.resend-link:hover {
  color: #0c49b2;
}

.timer-text {
  color: #a0a0a0;
}

.verify-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins";
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.verify-btn:hover:not(:disabled) {
  background: #00a8cc;
  transform: translateY(-2px);
}

.verify-btn:active:not(:disabled) {
  transform: translateY(1px);
}

.verify-btn:disabled {
  background: #444;
  cursor: not-allowed;
}

/* small screens tweak */
@media (max-width: 420px) {
  .login-form { padding: 10px; border-radius: 12px; height: 100vh; border-radius: 0; }
  .input-icon { left: 10px; font-size: 17px; }
  .login-form input { padding-left: 38px; }
  .login-wrapper {display: block; padding: 0px;}
  .login-code {height: 100vh; padding: 1rem; border-radius: 0px; padding-top: 2rem;}
}
.transfer-cont {
  max-width: 420px;   /* perfect mobile size */
  margin: 0 auto;
  background: linear-gradient(135deg, #151b24, #121724);
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 1rem;
}


.transfer-title {
  display: flex;
  align-items: center;
  gap: 7rem;
  margin-bottom: 2rem;

}

.transfer-title svg {
  cursor: pointer;
}

.transfer-title p {
  font-weight: 600;
}


.paying {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.paying p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
}

.initials {
  background: rgba(255, 180, 0, 0.22);
  color: #ffd47ee8;
  padding: 0.2rem;
  border-radius: 5px;
  font-size: 0.8rem;
}

.bal {
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Inter';
}

.paying-to div {
  background-color: #707d9115;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
  padding: 0.8rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.paying-to  div input {
 width: 91%;
 background: rgba(255, 255, 255, 0.08);
 box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
 color: white;
 padding-top: 0.8rem;
 padding-bottom: 0.8rem;
 padding-left: 1rem;
 padding-right: 1rem;
 border: none;
 border-radius: 7px;
 font-size: 1.3rem;
 font-weight: 700;
 font-family: 'Inter';
}


.Titless {
  margin: 4px;
}


.paying-too div {
  background-color: #707d9115;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
  padding: 0.8rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.paying-too div input {
 width: 91%;
 background: rgba(255, 255, 255, 0.08);
 box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
 color: white;
 padding-top: 0.8rem;
 padding-bottom: 0.8rem;
 padding-left: 1rem;
 padding-right: 1rem;
 border: none;
 border-radius: 7px;
 font-family: 'Poppins';

}




.paying-to div input:focus {
  outline: none;
}


.paying-too div input:focus {
  outline: none;
}


.beneficiaries {
  background-color: #707d9115;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border-radius: 7px;
}



.ban-logo {
  width: 40px;
  height: 40px;         /* FORCE A PERFECT SQUARE */
  border-radius: 50%;   /* PERFECT CIRCLE */
  object-fit: cover;    /* Crops the image nicely */
  background: rgba(255, 255, 255, 0.08);
  padding: 4px;
  display: block;
}


.ben-div {
  display: flex;
  flex-direction: column;
}

.beneficiaries div input {
 width: 91%;
 background: rgba(255, 255, 255, 0.08);
 box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
 color: white;
 overflow: hidden;
 padding-top: 0.8rem;
 padding-bottom: 0.8rem;
 padding-left: 1rem;
 padding-right: 1rem;
 border: none;
 border-radius: 7px;
 font-family: 'Poppins';
 margin-bottom: 0.6rem;
}

.beneficiaries div  button {
  width: fit-content;
  padding: 0.1rem 0.6rem;
  border: none;
  border-radius: 5px;
  color: white;
  font-family: 'Poppins';
  font-weight: 500;
  background: rgba(200, 142, 6, 0.893);
  margin-bottom: 1rem;
}

.beneficiary-det {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.initial {
  background-color: black;
  color: white;
  padding: 0.7rem;
  border-radius: 2rem;
  font-size: 0.8rem;
}


.beneficiary-det div {
  display: flex;
  flex-direction: column;
  
}

.beneficiary-det div p {
  margin: 4px;
  font-size: 0.8rem;
}


.beneficiary-det-cont {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.bank-container {
  background-color: #707d9115;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border-radius: 7px;
}


.bank-container input {
 width: 91%;
 background: rgba(255, 255, 255, 0.08);
 box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
 color: white;
 padding-top: 0.8rem;
 padding-bottom: 0.8rem;
 padding-left: 1rem;
 padding-right: 1rem;
 border: none;
 border-radius: 7px;
 font-family: 'Poppins';
 margin-bottom: 0.6rem;
}


.bank {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.unknownT {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1rem;
}

.bank svg {
  color: rgba(244, 173, 9, 0.893);
}

.bank div {
  display: flex;
  align-items: center;
  gap: 12px;
}


.bank div span {
  font-size: 0.8rem;
}

.bnk-logo {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5rem;
  border-radius: 2rem;       
  border-radius: 50%;   
  object-fit: cover;    
  display: block;
}


/*ADD AMOUNT*/
.addMoney-container {
  max-width: 420px;   /* perfect mobile size */
  margin: 0 auto;
  background: linear-gradient(135deg, #151b24, #121724);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  height: 100vh;
}

.recipient-details {
  display: flex;
  align-items: center;
  gap: 7px;
  
}

.recipient-details img {
  width: 20px;
  border-radius: 2rem;
}

.recipient-details span {
  font-weight: 600;
}


.recp {
  display: flex;
  align-items: center;
  justify-content: center;
}


.amount-input {
  display: flex;
  align-items: center;
  gap: 0.2rem;   
  background-color: #707d9115;
  padding: 0.8rem 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 350px;
  border-radius: 7px;
}

.currency {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Inter';
}

.amounts {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  padding-top: 0.2rem;
  text-align: left; /* use center if you want centered text */
  font-family: 'Inter';
}

.amount::placeholder {
  color: #555;
}

.lim {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}


.daily-lim {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.5rem;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 1rem;
}


.daily-lim span {
  color: #555;
}

.daily-lim p {
  margin: 0;
  font-weight: 600;
}



.continue {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.continuebtn {
  background: rgba(232, 163, 25, 0.893);
  border: 0;
  padding: 0.7rem 1rem;
  color: white;
  font-family: 'Poppins';
  font-weight: 600;
  border-radius: 0.2rem;
  border-radius: 7px;
  margin-bottom: 2rem;
}


.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #555;
}



/* COMFIRM PAYMENT */

.confirm-payment-cont {
  max-width: 420px;   /* perfect mobile size */
  margin: 0 auto;
  background: linear-gradient(135deg, #151b24, #121724);
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 1rem;
}


.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-top: 1rem;
}

.header span {
  font-size: 0.85rem;
  font-weight: 700;
}

.amount-section {
  text-align: center;
  margin-bottom: 1rem;
}

.amount-section p {
  margin: 0;
  margin-top: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #777676;
  margin-bottom: 5px;
}

.tf-amount {
  font-family: 'Inter';
  font-size: 1.3rem;
  font-weight: 700;
}


.cashback {
  background: rgba(0, 200, 0, 0.18);
  color: #1bab1b;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.1rem 0.4rem;
  margin-top: 1rem;
  border-radius: 3px;
}

.details-box {
  background-color: #707d9115;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}


.details-box img {
  width: 20px;
  border-radius: 2rem;
}

.where-to {
  background-color: #161a2088;
  padding: 0.5rem;
  border-radius: 0.4rem;
}

.where-to span {
  font-size: 0.8rem;
  font-weight: 600;
}

.where-to div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.where-to div span {
  color: #777676;
  font-size: 0.7rem;
}

.acessories {
  margin-top: 0.7rem;
}

.acessories div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}


.acessories div span {
  font-size: 0.8rem;
  font-weight: 600;
}


.dim {
  color: #777676;
  
}

.cash-back-color {
  color: #1bab1b;
  font-family: 'Inter';
}

.demacator {
  border-bottom: 1px solid rgb(62, 62, 62);
  
}

.narate {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.narration {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
  padding: 0.5rem;
  border-radius: 7px;
}

.narration input {
  border: none;
  background-color: #161a2088;
  color: white;
  padding: 0.7rem;
  width: 93.4%;
  font-family: 'Poppins';
  outline: none;
  border-radius: 5px;
}

.narration p {
  margin: 10px;
  font-size: 0.8rem;
  font-weight: 500;
}



.pay button {
  margin-top: 2rem;
  width: 100%;
  padding: 0.8rem;
  color: white;
  background: rgba(232, 163, 25, 0.893);
  border: 0;
  font-family: 'Poppins';
  font-weight: 700;
  border-radius: 5px;
  margin-bottom: 2rem;
}

.headerrr {
  display: flex;
  align-items: center;
  gap: 5rem;
  font-weight: 600;
  margin-top: 0.7rem;
}

/*TRANSACTION PIN*/
.pin-screen {
  height: 100dvh;
  background: linear-gradient(135deg, #151b24, #121724);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  
  padding: 1rem;
  padding-bottom: 4rem;
}

.tom {
  background: linear-gradient(135deg, #151b24, #121724);
  padding: 1rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.pin-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pin-header h1 {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

.pin-header p {
  color: #888;
  font-size: 0.8rem;
  margin-top: 8px;
  margin-bottom: 0;
}

.pin-boxes {
  display: flex;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
  padding: 0.5rem;
  border-radius: 7px;
  margin-bottom: 3rem;
}

.pin-box {
  width: 40px;
  height: 30px;
  background: #111827;
  border: 2px solid #333;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s;
  font-family: 'Inter';
}

.pin-box.active {
  border-color: #fbbf24;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
  max-width: 320px;
  margin-top: 9rem;
}

.keypad button {
  width: 70px;
  height: 70px;
  background: #1f2937;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 32px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Inter';
  font-weight: 700;
}

.keypad button:active {
  background: #374151;
}

.keypad .delete {
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Dark overlay + blur */
.cancel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21, 21, 23, 0.85); 
  backdrop-filter: blur(10px);
  z-index: 9998;
  font-family: 'Poppins';
}

/* Slide-up modal from bottom */
.cancel-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #151b24, #121724);
  border-radius: 24px 24px 0 0;
  padding: 40px 24px 32px;
  z-index: 9999;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
  animation: slideUp 0.4s ease-out;

}

/* Gray handle */
.cancel-handle {
  width: 40px;
  height: 5px;
  background: #444;
  border-radius: 3px;
  margin: 0 auto 24px;
}

/* Red circle */
.cancel-icon {
  background: rgb(255, 179, 0);
  color: white;
  width: fit-content;
  margin: 0 auto;
  padding: 1px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cancel-icon img {
  width: 60px;
}

.cancel-modal h2 {
  text-align: center;
  font-size: 15px;
  margin-bottom: 12px;
}

.cancel-modal p {
  text-align: center;
  color: #626365;
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 500;
}

.cancel-btn strong {
  font-family: 'Poppins';
}

/* Yellow button */
.cancel-btn {
  width: 100%;
  background: #fbbf24;
  color: black;
  font-weight: bold;
  padding: 12px;
  border-radius: 16px;
  border: none;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-family: 'Poppins';
}



/* Transparent button */
.continue-btn {
  width: 100%;
  background: transparent;
  color: #fbbf24;
  font-weight: bold;
  padding: 12px;
  border: 2px solid #444;
  border-radius: 16px;
  font-size: 0.8rem;
  font-family: "Poppins";
}

.me {
  font-family: "Poppins";
  font-weight: 700;
  color: rgb(153, 152, 152);
}


@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}



/* --- MAIN LAYOUT --- */
.success-container {
  max-width: 420px;
  margin: 0 auto;
  min-height: 100vh;
  background: #0f141a;
  padding: 1.5rem;
  color: white;
  display: flex;
  
}

.success-card {
  width: 100%;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}


/* --- CHECK ICON --- */
.success-icon {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.outer {
  width: 90px;
  height: 90px;
  background: #0f2410;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner {
  width: 100px;
  height: 100px;
  background: #1ccf56;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
}

.inner2 {
  width: 70px;
  height: 70px;
  background: #0f66a9;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
}

/* --- TITLE --- */
.success-title {
  text-align: center;
}

.success-title h2 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.success-title p {
  font-size: 0.85rem;
  color: #c7c7c7;
  line-height: 1.3rem;
}


/* --- SUMMARY BOX --- */
.summary-box {
  background: #151c25;
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.summary-box h2 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
  font-family: 'Inter';
}

.summary-box .desc {
  text-align: center;
  font-size: 0.9rem;
  color: #dcdcdc;
  margin-bottom: 1rem;
}


/* --- BANK --- */
.bank-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.bank-info img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.bank-info span {
  font-size: 0.8rem;
  color: #b9b9b9;
  font-weight: 600;
}


/* --- DATE --- */
.summary-box .date {
  margin-top: 0.6rem;
  text-align: center;
  color: #aaa;
  font-size: 0.8rem;
}


/* --- NOTICE BOX --- */
.notice {
  background: rgba(255, 181, 44, 0.12);
  padding: 0.6rem 0.8rem;
  border-radius: 7px;
  margin-top: 1rem;
}

.notice p {
  font-size: 0.75rem;
  line-height: 1.1rem;
  color: #e4c27a;
}


/* --- BUTTON --- */
.done-btn {
  width: 100%;
  padding: 0.8rem;
  border-radius: 0.4rem;
  border: none;
  background: rgb(255, 196, 0);
  color: black;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
  margin-bottom: 2rem;
  font-family: 'Poppins';
}

.export-receipt {
  width: 100%;
  padding: 0.8rem;
  border-radius: 0.4rem;
  border: none;
  margin-bottom: 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
  margin-bottom: 2rem;
  font-family: 'Poppins';
  font-weight: 700;
  background-color: #d6a20643;
  color: white;
}

.done-btn:hover {
  background: #b9ab18;
}



.nov {
  font-size: 0.8rem;
  color: #888;
}

.statementStat {
  margin-top: 5rem;
  display: flex;
  height: 100dvh;
  justify-content: space-between;
  flex-direction: column;
}


.btd {
  background-color:  rgb(255, 196, 0);
  width: 100%;
  color: white;
  border: none;
  padding: 15px 20px;
  font-family: 'Poppins';
  font-weight: 600;
}





.receipt {
  background-color: white;
  color: black;
  padding: 1rem;
  font-family: "Work Sans", sans-serif;
  position: fixed;
  
}

.receipt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}

.receipt-head img {
  width: 30px;
}

.receipt-head p {
  font-weight: 600;
  font-size: 1rem;
}

.recipt-amount {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 1rem;
}

.sp1 {
  font-weight: 600;
}

.sp2 {
  font-weight: 900;
  font-size: 1rem;
  font-family: 'Inter';
}

.beneficiary-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(128, 128, 128, 0.216);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.beneficiary-details div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.beneficiary-details div span {
  width: 100%;
}

.beneficiary-details span {
  font-size: 0.9rem;
}

.txt {
  color: grey;
  font-weight: 600;

}

.txtt {
  font-size: 0.8rem;
  font-weight: 600;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(128, 128, 128, 0.216);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.row span {
  font-size: 0.9rem;
}

.row div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.receipt-copy {
  display: block;
  margin-top: 12px;
  font-size: 0.6rem;
  opacity: 0.6;
  text-align: center;
  
}

.receipt-footer {
  font-size: 0.6rem;
  opacity: 0.6;
  text-align: center;
  margin-top: 1rem;
}

.icons {
 margin-top: 1rem;
 display: flex;
 justify-content: center;
 gap: 8px;
 
}

.icons div {
  display: flex;
  align-items: center;
  gap: 7px;
  background-color: rgba(255, 21, 0, 0.212);
  padding: 0.7rem;
  width:  170px;
  border-radius: 0.2rem;
}

.icons div span {
  color: brown;
  font-size: 0.9rem;
  font-weight: 900;
}

.icons img {
  width: 30px;
}.transactions-wrapper {
  max-width: 420px;   /* perfect mobile size */
  margin: 0 auto;
  background: linear-gradient(135deg, #151b24, #121724);
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  font-family: 'Poppins';
}

.date-group {
  margin-bottom: 20px;
}

.date-title {
  font-weight: 600;
  color: #888;
  margin-bottom: 8px;
  font-family: 'Inter';
  font-size: 0.7rem;
}


.newTx  {
  display: flex;
  align-items: center;
  width: 100%; /* make the topside/downside container take full width */
  gap: 9px;
  cursor: pointer;
}


.cyber {
  width: 100%;
}



.topside, .downside {
  display: grid;
  grid-template-columns: 1fr auto; /* left column grows, right column shrinks to fit */
  align-items: center;
}


.downside {
  margin-top: 0.4rem;
}

.toName {
  font-size: 0.8rem;
  font-weight: 600;
}


.toAmount {
  font-size: 0.9rem;
  font-family: 'Inter';
  font-weight: 700;
  color: white;
}

.credit {
  color: green;
}

.tf-meth {
  font-size: 0.6rem;
  color: #888;
}

.type {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
}

.type.credit {
  background: rgba(255, 180, 0, 0.22);
  color: #ffd37e;
}

.type.debit {
  background-color: #ee5b6732;
  color: red;
}


.tx-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.transaction-details-container {
  max-width: 420px;   /* perfect mobile size */
  margin: 0 auto;
  background: linear-gradient(135deg, #151b24, #121724);
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  font-family: 'Poppins';
}



.navigate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.navigate span {
  font-size: 0.9rem;
  font-weight: 600;
}


.like-bal {
  background: rgba(255, 255, 255, 0);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 7px;

}

.details-type {
  background: rgba(255, 180, 0, 0.22);
  color: #ffd47ee8;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 3px;
  margin-bottom: 1rem;
}

.like-bal div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.3rem;
  margin-bottom: 0.7rem;

}

.det-amount {
  font-family: 'Inter';
  font-size: 1.3rem;
  font-weight: 700;
}

.sucessful {
  background: rgba(0, 200, 0, 0.18);
  color: #32ff32;
  padding: 0.1rem 0.5rem;
  border-radius: 5px;
  font-size: 0.8rem;

}

.det-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
}


.expt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.expt button {
  text-align: center;
  gap: 10px;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  width: 100%;
  background-color: #ffa600;
  border: none;
  color: white;
  font-family: 'Poppins';
  font-weight: 600;
}

.expt svg {
  background: #2a395f7d;
  padding: 0.5rem;
  border-radius: 5px;
  color:#ffd47ee8 ;
}

.ncredited {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #222c4560;
  padding: 0.5rem 0.7rem;
  border-radius: 7px;
  margin-bottom: 2rem;
  text-align: center;
}

.ncredited span {
  font-size: 0.8rem;
  font-weight: 600;
  color:white
}

.ncredited svg {
  background: #2a395f11;
  padding: 0.5rem;
  border-radius: 5px;
  color: #ffa600;
}


.for-debit {
  background: rgba(255, 255, 255, 0);
  padding: 0.6rem;
  border-radius: 7px;
}

.bfaf {
  display: flex;
  align-items: center;
  border-style: dotted;
  border-width: 2px;
  border-color: #525c6b61;
  border-radius: 7px;
  padding: 0.8rem;
  gap: 16px;
  margin-bottom: 0.7rem;
}



.bfaf div {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.right-border {
  border-right: 1px solid rgba(106, 103, 103, 0.331);
}

.qst {
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
  color: #888;
}

.ans {
  font-size: 0.9rem;
  font-family: 'Inter';
}


.goFlex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem;

}


.goFlex span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
}





.other-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition:
  max-height 0.35s ease,
  opacity 0.25s ease,
  transform 0.25s ease;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
  padding: 0.6rem;
  margin-top: 1rem;
  border-radius: 7px;
}

.other-details.open {
  max-height: 500px; /* must be larger than content height */
  opacity: 1;
  transform: translateY(0);
}


.other-details div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid rgba(106, 103, 103, 0.331);
  padding: 0.7rem;
}

.other-details div:last-child {
  border-bottom: none;
}

.anss {
  font-size: 0.8rem;
  font-family: 'Poppins';
  font-weight: 700;
}

.transf {
  background: rgba(255, 180, 0, 0.22);
  color: #ffd37e;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 3px;
  margin-bottom: 1rem;
}
.settings-container {
  width: 100%;
  max-width: 450px;
  min-height: 100vh;
  background: linear-gradient(135deg, #151b24, #121724);
  color: white;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.settings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.settings-header span {
  font-weight: 600;
  color: #ccc;
}

.settings-section {
  margin-bottom: 2rem;
}

.settings-section span {
  display: block;
  margin-bottom: 0.5rem;
}

.settings-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.setting svg {
  background-color: #151b24;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.setting {
  display: flex;
  align-items: center;
  gap: 20px;
}

.setting span {
  font-size: 0.8rem;
  font-weight: 600;
}

.arrowLeft {
  color: rgb(255, 187, 0);
}


.others {
  font-size: 0.9rem;
  font-weight: 600;
}


.toggle {
  width: 44px;
  height: 24px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #e5e7eb; /* soft gray */
  cursor: pointer;
  position: relative;
  transition: background-color 220ms cubic-bezier(.4,0,.2,1);
}

.toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.7),
    inset 0 -1px 1px rgba(0,0,0,.08);
}

.toggle .knob {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  box-shadow:
    0 1px 2px rgba(0,0,0,.18),
    0 2px 6px rgba(0,0,0,.12);
  transition: transform 220ms cubic-bezier(.4,0,.2,1);
}

.toggle.active {
  background: rgb(255, 187, 0) ;
}

.toggle.active .knob {
  transform: translateX(20px);
}

/* optional hover polish */
.toggle:hover .knob {
  box-shadow:
    0 2px 4px rgba(0,0,0,.22),
    0 4px 10px rgba(0,0,0,.14);
}


.card-gen {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1rem;
}

.card-gen img {
  width: 250px;
}

.atm {
  text-align: center;
  background-color: rgba(255, 217, 0, 0.151);
  border-radius: 15px;
}

.oga-cont h2 {
  font-size: 1.1rem;
}

.inside-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.get {
  font-size: 0.9rem;
  color: rgba(128, 128, 128, 0.53);

}


.card-card-cont {
  display: flex;
  align-items: center;
  gap : 10px;
}

.card-card-cont div {
  display: flex;
  flex-direction: column;
}






.card-icon {
  width: 20px;
  height: 20px;
  min-width: 28px;
  stroke-width: 1.8;
  color: rgb(255, 183, 0);
  padding: 0.5rem;
  background-color: #151b24;
  border-radius: 10px;
}


.ansss {
  font-size: 0.8rem;
  color:rgba(128, 128, 128, 0.53) ;
  font-weight: 600;
}

.qstt {
  font-size: 0.9rem;
}


.order-card {
  width: 100%;
  margin-top: 2rem;
  padding: 0.8rem 1rem;
  background-color: rgb(255, 183, 0) ;
  border: none;
  border-radius: 7px;
  color: white;
  font-weight: 600;
  font-family: 'Poppins';
}


/* AccountLimits.css */
.limits-container {
  min-height: 100vh;
  background: #0a0e17;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.limits-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  font-size: 10px;
}

.limits-header h1 {
  font-size: 0.9rem;
  font-weight: 600;
  flex: 1;
  text-align: center;
  margin-right: 40px; /* offset for back arrow */

}

.limits-card {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 24px;
  padding: 15px;
  backdrop-filter: blur(10px);
}

.limits-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: #cbd5e1;
}

.view-limits {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
}

/* KYC Progress Bar */
.kyc-progress {
  margin: 24px 0;
}

.progress-track {
  position: relative;
  height: 4px;
  background: #e5e7eb;
  border-radius: 999px;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background:  #fbbf24;
  border-radius: 999px;
  transition: width 0.4s ease;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
}

.progress-step {
  text-align: center;
  position: relative;
}

.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}

.progress-step.active .step-circle {
  background: #2563eb;
  color: #fff;
}

.progress-step.completed .step-circle {
  background:  #fbbf24;
  color: #fff;
}

/* Upgraded Limits */
.upgraded-section h3 {
  font-size: 0.9rem; 
  color: #e2e8f0;
}

.limits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.limit-box {
  background: rgba(30, 41, 59, 0.6);
  border: 2px dashed #475569;
  border-radius: 16px;
  padding: 10px;
  text-align: left;
}

.limit-box p {
  font-size: 0.8rem;
  color: #94a3b8;
  margin: 8px 0 4px;
}

.limit-box strong {
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  font-family: 'Inter';
}

/* Upgrade Button */
.upgrade-btn {
  margin-top: auto;
  margin-bottom: 60px;
  width: 100%;
  background: #fbbf24;
  color: black;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  font-family: 'Poppins';
}

.upgrade-btn .disable {
  cursor: not-allowed;
  background-color: gray;
  color: white;
}





.page-shimmer.dark {
  min-height: 100vh;
  padding: 24px;
  background: #0b0f1a; /* deep dark background */
}

/* Shared shimmer animation */
.page-shimmer.dark div {
  background: linear-gradient(
    90deg,
    #161b2e 25%,
    #1f2a44 37%,
    #161b2e 63%
  );
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: 10px;
}

/* Header */
.shimmer-header {
  width: 240px;
  height: 28px;
  margin-bottom: 28px;
}

/* Cards */
.shimmer-card {
  height: 150px;
  margin-bottom: 22px;
}

/* Animation */
@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.about-page {
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
  line-height: 1.6;
  margin-top: 2rem;
}

/* Hero */
.about-hero {
  display: flex;
  gap: 3rem;
  padding: 4rem 2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  max-width: 600px;
  font-size: 1.1rem;
  color: #374151;
}

.hero-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 0.2rem;
}

/* Mission & Vision */
.mission-vision {
  display: flex;
  gap: 2rem;
  padding: 4rem 2rem;
}

.mission, .vision {
  flex: 1;
}

.mission h2, .vision h2 {
  color: #101620;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

/* Core Values */
.core-values {
  background: #f9fafb;
  padding: 1rem;
}

.values-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.value-card {
  background: white;
  flex: 1 1 200px;
  padding: 0;
  border-radius: 0.8rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Services */
.services-about {
  padding: 4rem 2rem;
}

.services-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.service-card {
  background: white;
  flex: 1 1 200px;
  padding: 1rem;
  border-radius: 0.8rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.milan {
  padding: 1rem;
}

/* Achievements */
.achievements {
  background: #f1f5f9;
  padding: 4rem 2rem;
  text-align: center;
}

.achievements-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.achievement-card {
  flex: 1 1 150px;
  background: white;
  padding: 1rem;
  border-radius: 0.8rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* CTA */
.about-cta {
  padding: 4rem 2rem;
  text-align: center;
}

.about-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-btn {
  background: #1e293b;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Poppins';
}

@media (max-width: 900px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-text p {
    max-width: 100%;
    font-size: 0.9rem;
  }
  .mission-vision {
    flex-direction: column;
  }
  .services-grid, .values-grid, .achievements-grid {
    flex-direction: column;
  }
  .hero-img img {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: 1rem;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .about-cta h2 {
    font-size: 1.6rem;
  }
  .service-card, .value-card, .achievement-card {
    flex: 0;
  }
  .hero-text p {
    max-width: 100%;
    font-size: 0.9rem;
  }
  .about-page {
    margin-top: 4rem;
  }
  .core-values {
    padding: 1rem;
  }
  .services-about {
    padding: 1rem;
  }
}.cookie-consent {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 2rem);
  max-width: 420px;

  background: #0f172a; /* dark banking tone */
  color: #fff;
  padding: 1rem 1.2rem;

  display: flex;
  flex-direction: column;
  gap: 0.8rem;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  z-index: 9999;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  opacity: 0;
}

/* Slide UP */
.cookie-consent.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Slide DOWN */
.cookie-consent.hide {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
}

.cookie-consent p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #e5e7eb;
}

.cookie-consent button {
  align-self: flex-end;
  background: linear-gradient(135deg, #1e4d98, #4d79e1);
  color: white;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 0.2rem;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.cookie-consent button:active {
  transform: scale(0.97);
}



@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-content button {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
}
:root {
  --bg: #0f172a;
  --card-bg: #1e293b;
  --bg-soft: #172036;

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;

  --border: #334155;

  --primary: #3b82f6;
}

/* ================== GLOBAL STYLING ================== */
body {
  font-family: 'Poppins', 'Roboto', sans-serif;
}

.plans-tab {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ================== HEADER ================== */
.plans-tab h2 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

/* ================== SEARCH BAR ================== */
.plan-search {
  width: 100%;
  padding: 10px 18px;
  border-radius: 0.5rem;
  border: none;
  background-color: rgb(43, 54, 72);
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: 'Poppins';
  width: 90%;
}

.plan-search::placeholder {
  color: #888;
}

.plan-search:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(77, 163, 255, 0.7);
}

/* ================== SECTOR TABS ================== */
.sector-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.sector-tabs::-webkit-scrollbar {
  display: none;
}

.sector-btn {
  padding: 10px 10px;
  border-radius: 0.5rem;
  border: none;
  background-color: rgba(31, 45, 62, 0.386);
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-family: 'Poppins';
}

.sector-btn:hover {
  background-color: #333;
}

.sector-btn.active {background-color: rgb(43, 54, 72);
  color: #ffffff;
}

/* ================== SORT BAR ================== */
.sort-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.sort-bar span {
  font-size: 14px;
  color: #aaa;
}

.sort-bar button {
  padding: 8px 14px;
  border: none;
  border-radius: 20px;
  background-color: #1a1a1a;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s ease;
}

.sort-bar button:hover {
  background-color: #333;
}

.sort-bar button.active {
  background-color: #4da3ff;
  box-shadow: 0 2px 6px rgba(77, 163, 255, 0.5);
}

/* ================== PLANS LIST ================== */
.plans-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 5rem;
}

/* ================== PLAN CARD ================== */
.plan-card {
  background-color: rgba(43, 54, 72, 0.679);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

/* ----- Header ----- */
.plan-header {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-header h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.plan-summary {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: #ccc;
}

/* ================== RISK BAR ================== */
.risk-bar-container {
  height: 8px;
  background: #333;
  border-radius: 3px;
  margin: 6px 0;
  width: 70%;
  padding: 0.1rem;
}

.risk-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.5s ease;
  padding: 0.1rem;
}

/* ================== EXPANDABLE SECTION ================== */
.plan-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.plan-details.open {
  max-height: 1000px; /* large enough for content */
}

.details-content {
  padding: 18px 20px;
  border-top: 1px solid #333;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.plan-section h4 {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.plan-section p {
  font-size: 14px;
  color: #ccc;
  margin: 3px 0;
}

/* ================== BUTTONS ================== */
.details-btn {
  margin-top: 10px;
  align-self: flex-start;
  background: transparent;
  border: none;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins';
}

.details-btn:hover {
  color: #7fc7ff;
}

.invest-btn {
  width: 100%;
  padding: 9px;
  background: #4da3ff;
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins';
}

.invest-btn:hover {
  background-color: #66b0ff;
}

/* ================== EMPTY STATE ================== */
.no-results {
  text-align: center;
  margin-top: 20px;
  color: #888;
  font-size: 14px;
}

/* ================== MOBILE SCROLL FIX ================== */
.sector-tabs {
  -webkit-overflow-scrolling: touch;
}


.lophs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.loph p {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter';
}

.invest {
  display: flex;
  justify-content: space-between;
}




.glass-btns {
  padding: 10px 18px;
  border-radius: 14px;

  /* Glass effect */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  /* Glass edge */
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: 'Poppins';
  /* Text */
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2px;

  /* Interaction */
  cursor: pointer;
  transition: 
    background 0.25s ease,
    border 0.25s ease,
    transform 0.2s ease;
}

.glass-btns:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.glass-btns:active {
  transform: translateY(0);
}


.glass-btn {
  border: none;
  padding: 0 10px;
  background-color: rgb(41, 90, 118);
  color: white;
}
 

.mount {
  font-size: 1.5rem;
  color: white;
  font-weight: 500;
}

.mount span {
  font-size: 0.6rem;
}



/* ================== Container ================== */
.checkout-container {
  max-width: 450px;
  margin: 0  auto;
  height: 100dvh;
  background: #1e293b; /* dark card bg */
  color: #f1f5f9;
  animation: fadeIn 0.4s ease;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

/* ================== Header ================== */
.checkout-container h2 {
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 12px;
}

.checkout-container p {
  color: #94a3b8;
  font-size: 15px;
  margin-bottom: 20px;
}

/* ================== Amount Box ================== */
.amount-box {
  margin-bottom: 25px;
}

.amount-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}

.amount-box input[type="number"] {
  width: 40%;
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #334155;
  background: transparent;
  color: #f1f5f9;
  margin-bottom: 6px;
  transition: 0.3s;
  font-family: 'Inter';
}

.amount-box input[type="number"]:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.amount-box small {
  font-size: 13px;
  color: #94a3b8;
}

/* Quick Buttons */
.quick-buttons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.quick-buttons button {
  flex: 1;
  padding: 10px 0;
  border-radius: 6px;
  border: none;
  background: #3348556b;
  color: #f1f5f9;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  font-family: 'Poppins';
}

.quick-buttons button:hover {
  background: #4361ae58;
}

/* ================== Return Box ================== */
.return-box {
  background: #172036;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 25px;
}

.return-box h3 {
  margin-bottom: 12px;
  font-weight: 500;
}

.return-box p {
  margin-bottom: 8px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.return-box p span {
  font-family: 'Inter';
}

.maturity-note {
  color: #3b82f6;
  font-weight: 600;
}

/* ================== Plan Includes ================== */
.plan-includes {
  margin-bottom: 25px;
}

.plan-includes h3 {
  margin-bottom: 10px;
  font-weight: 600;
}

.plan-includes p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 4px;
}

/* ================== Risk Checkbox ================== */
.risk-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #f1f5f9;
  margin-bottom: 20px;
}

/* ================== Continue Button ================== */
.continue-btn {
  width: 100%;
  padding: 0.8rem;
  border-radius: 6px;
  border: none;
  background: #3b82f6;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.continue-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.continue-btn:disabled {
  background: #999;
  cursor: not-allowed;
  transform: none;
}


/* ================== Animations ================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================== Mobile ================== */
@media (max-width: 600px) {
  .checkout-container {
    padding: 20px;
  }

  .checkout-container h2 {
    font-size: 22px;
  }

  .amount-box input[type="number"] {
    font-size: 14px;
  }

  .return-box p {
    font-size: 14px;
  }
}


.payment-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 1000;
}

/* Bottom sheet style (mobile fintech style) */
.payment-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1e293b; /* dark card bg */
  padding: 20px;
  border-radius: 20px 20px 0 0;
  z-index: 1001;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.payment-modal h3 {
  margin-bottom: 20px;
  font-weight: 500;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-option {
  background: #0820365d;
  padding: 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  width: 82%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.payment-option img {
  width: 40px;
}

.payment-option:hover {
  background: #3a3a3a;
}

.close-btn {
  margin-top: 15px;
  width: 100%;
  padding: 12px;
  background: #444;
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  width: 90%;
  font-family: 'Poppins';
}


.wire-page {
  min-height: 100vh;
  background: #1e293b;
  color: #fff;
  padding: 24px;
  font-family: 'Poppins', sans-serif;
  max-width: 450px;
  margin: 0 auto;
}

/* HEADER */
.wire-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.wire-header .button {
  background: #1c1f2657;
  border: none;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
}

.wire-header h2 {
  font-size: 15px;
  font-weight: 500;
}

/* INFO STRIP */
.wire-info {
  background: #1c1f2657;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  border: 1px solid #20242d;
}

.wire-info span {
  font-size: 12px;
  color: #8b909a;
  display: block;
}

.wire-info strong {
  font-size: 14px;
  font-weight: 600;
}

.pending {
  color: #f5b942;
}

/* MAIN CARD */
.wire-card {
  background: #1c1f2657;
  border-radius: 18px;
  border: 1px solid #20242d;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  padding: 1rem;
}

.wire-card h3 {
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 500;
}

/* INPUT */
.wire-card input {
  width: 90%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #2b2f3a;
  color: white;
  background-color: transparent;
  font-size: 14px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  font-family: 'Poppins';
}

.wire-card input:focus {
  outline: none;
  border-color: white;
}

/* SECURITY NOTE */
.security-note {
  font-size: 12px;
  color: #8b909a;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* BUTTON */
.primary-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: orange;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins';
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(77,163,255,0.3);
}

.confirmation-text {
  font-size: 13px;
  color: #b5bac4;
  margin-bottom: 20px;
}


.crypto-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
}

.crypto-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  background: #1e293b;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  z-index: 1001;
}

.crypto-modal img {
  width:30px;
}

.crypto-modal h3 {
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-align: center; 
}

.coin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.coin-card {
  border-radius: 5px;
  background: #121a267c;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  text-align: center;
  padding: 1rem;
}

.coin-card:hover {
  border: 1px solid #1b212e;
  background: #172554;
}

.coin-card h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}

.coin-card p {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

.modal-close {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  background: orange;
  border: none;
  color: white;
  cursor: pointer;
  font-family: 'Poppins';
}