    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

   body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}
/* <!--==================================== preloaded ================================== --> */

    /* Preloader */
    

    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.6s ease, visibility 0.6s;
    }

    #preloader.fade-out {
      opacity: 0;
      visibility: hidden;
    }

    .spinner {
      position: relative;
      width: 90px;
      height: 90px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    /* Spinning Ring */
    .spinner::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      border: 6px solid rgba(0, 68, 255, 0.2);
      border-top: 6px solid #0044ff;
      border-radius: 50%;
      animation: spin 1.2s linear infinite;
    }

    /* Static Bank Icon */
    .spinner i {
      font-size: 32px;
      color:  #ff512f;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
  /* end of preloading */


/*============header=========================== Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 8%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav .logo {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}
nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #0044ff;
}
nav .btn {
    background: #0044ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
nav .btn:hover {
    background: #002dcc;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,68,255,0.4);
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #2c3e50;
}

/* Slide-in menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 15px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
    z-index: 2000;
    padding: 60px 20px;
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-menu ul li a {
    text-decoration: none;
    font-size: 18px;
    color: #222;
    font-weight: 500;
}
.mobile-menu ul li a:hover {
    color: #0044ff;
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #222;
}

/* ========================Hero */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    color: #fff;
    min-height: 90vh;
    /* 👇 Background image + gradient blend */
    background: 
    linear-gradient(rgba(25, 0, 60, 0.7), rgba(25, 0, 60, 0.7)), 
    url("../image/bg2.png") no-repeat center center/cover;
}
.hero-text {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}
.hero-text span {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    color: #ffda79;
}
.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.3;
}
.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #eee;
}
    .hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.hero-buttons .btn-primary {
    background: #0044ff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
.hero-buttons .btn-primary:hover {
    background: #002dcc;
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(0,68,255,0.5);
}
.hero-buttons .btn-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.hero-buttons .btn-secondary:hover {
    color: #0044ff;
    transform: scale(1.05);
}

/* ==========================================Badge */
.hero-images {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-images .badge {
    width: 150px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    color: #fff;
    font-weight: 500;
    animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}



/* About Section */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 10%;
    gap: 50px;
    flex-wrap: wrap;
    
}
.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-image::before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: #2d1a63;
    border-radius: 20px;
    transform: rotate(8deg);
    z-index: 1;
}
.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    
}
.about-content {
    flex: 1;
    min-width: 300px;
}
.about-content h5 {
    color: #555;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}
.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a23;
}
.about-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
    
}
.signature {
    font-family: "Brush Script MT", cursive;
    font-size: 24px;
    color: #111;
}

/* Responsive */
@media (max-width: 992px) {
    nav ul, nav .btn {
    display: none;
    }
    .menu-toggle {
    display: block;
    }
    .hero {
    flex-direction: column;
    text-align: left;
    }
    .hero-images {
    margin-top: 30px;
    }
    
}
/* Responsive About Section */
@media (max-width: 992px) {
.about-section {
flex-direction: column;
text-align: center;
padding: 40px 5%;
gap: 30px;
}

.about-image img {
max-width: 300px;
height: auto;
}

.about-content {
margin-top: 20px;
}

.about-content h2 {
font-size: 26px;
}

.about-content p {
font-size: 15px;
}
}

@media (max-width: 576px) {
.about-section {
padding: 30px 20px;
}

.about-content h2 {
font-size: 22px;
}

.about-content p {
font-size: 14px;
}

.signature {
font-size: 18px;
}
}

/* <!-- =========================================card section===================== --> */

.tools-section {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9ff;
}

.tools-section h5 {
    color: #0d2eff;
    font-size: 14px;
    letter-spacing: 2px;

    margin-bottom: 10px;
}

.tools-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #000;
}

/* Card container */
.tools-container {
    max-width: 1100px;
    margin: auto;
}

.card-set {
    display: none;
    justify-content: space-between;
    gap: 20px;
}

.card-set.active {
    display: flex;
    animation: fadeIn 1.2s ease forwards;
}

.tool-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    flex: 1;
    z-index: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* overlay background for slide effect */
.tool-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #0d2eff;
    z-index: 0;
    transition: width 0.8s ease; /* speed of slide */
}

/* expand overlay on hover (from left → right) */
.tool-card:hover::before {
    width: 100%;
}

/* bring text above overlay */
.tool-card * {
    position: relative;
    z-index: 1;
    transition: color 0.6s ease;
}

/* text turns white on hover */
.tool-card:hover i,
.tool-card:hover h3,
.tool-card:hover p,
.tool-card:hover a {
    color: #fff;
}

.tool-card i {
    font-size: 32px;
    margin-bottom: 15px;
    display: inline-block;
    color: #0d2eff;
    transition: color 0.6s ease;
}

.tool-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
    transition: color 0.6s ease;
}

.tool-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    transition: color 0.6s ease;
}

.tool-card a {
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    color: #0d2eff;
    transition: color 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Dots navigation */
.dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #0d2eff;
}

/* Responsive */
@media (max-width: 900px) {
    .card-set {
    flex-direction: column;
    }
    .tool-card {
    margin-bottom: 15px;
    }
}

/* <!-- ================================image section============================== -->
 */

    section.strategies-section {
      text-align: center;
      padding: 70px 10px;
      background: linear-gradient(135deg, #f9fafb 0%, #eef2f7 100%);
    }

    section.strategies-section h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 40px;
      line-height: 1.4;
    }

    section.strategies-section h2 .text-primary {
      color: #f25b5b;
      font-weight: 600;
    }

    /* Masonry grid container */
    .strategies-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      grid-auto-rows: 200px;
      gap: 15px;
    }

    /* Grid item styling */
    .strategies-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      transition: transform 0.4s ease, box-shadow 0.3s ease;
    }

    .strategies-grid img:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    /* Make some items larger */
    .item-large {
      grid-row: span 2;
    }

    @media (max-width: 768px) {
      section.strategies-section h2 {
        font-size: 1.5rem;
      }

      /* Remove spans on mobile to stack naturally */
      .item-large {
        grid-row: span 1;
      }
    }

/* <!-- =======================================counting============================ -->
 */

  .stats-section {
    text-align: center;
    padding: 80px 20px;
    background: #f8f9ff;
    font-family: Arial, sans-serif;
    line-height: 1.5;
  }

  .stats-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    color: #0d1b4c;
    margin-bottom: 50px;
  }

  .stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
  }

  .stat-box {
    flex: 1;
    min-width: 180px;
  }

  .stat-box h3 {
    font-size: 36px;
    font-weight: bold;
    color: #0d2eff;
    margin-bottom: 10px;
  }

  .stat-box p {
    font-size: 16px;
    color: #333;
    margin: 0;
  }

/*   
<!-- ================================bank CTA section =============================== -->
  */
    .cta-section {
      background: linear-gradient(180deg, #0072ff 0%, #0052d4 100%);
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
    }

    /* Background circles */
    .cta-section::before, 
    .cta-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
    }

    .cta-section::before {
      width: 400px;
      height: 400px;
      bottom: -100px;
      left: -100px;
    }

    .cta-section::after {
      width: 500px;
      height: 500px;
      top: -150px;
      right: -150px;
    }

    .cta-section h1 {
      font-size: 2.2rem;
      margin-bottom: 15px;
    }

    .cta-section p {
      font-size: 1rem;
      margin-bottom: 30px;
    }

    .cta-section p a {
      color: #fff;
      font-weight: bold;
      text-decoration: underline;
    }

    .cta-btn {
      display: inline-block;
      padding: 15px 30px;
      font-size: 1rem;
      color: #fff;
      background: linear-gradient(90deg, #ff512f, #dd2476);
      border: none;
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
      font-weight: bold;
      transition: transform 0.2s ease, background 0.3s ease;
    }

    .cta-btn:hover {
      transform: translateY(-3px);
      background: linear-gradient(90deg, #dd2476, #ff512f);
    }

    /* Responsiveness */
    @media (max-width: 768px) {
      .cta-section h1 {
        font-size: 1.8rem;
      }
      .cta-section p {
        font-size: 0.95rem;
      }
      .cta-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
      }
    }

    @media (max-width: 480px) {
      .cta-section {
        padding: 60px 15px;
      }
      .cta-section h1 {
        font-size: 1.5rem;
      }
      .cta-section p {
        font-size: 0.9rem;
      }
    }
 
/* ========================service page ==================== */

    /* serv Section */
    .serv {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      padding: 80px 10%;
      background: #f7f7ff;
      flex-wrap: wrap;
    }

    .serv-content {
      flex: 1;
    }

    .serv-content h4 {
      color: #0044ff;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .serv-content h1 {
      font-size: 350%;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    @media (max-width: 992px){
        .serv-content h1{
            font-size: 250%;
        }
    }

    .serv-content p {
      font-size: 16px;
      margin-bottom: 20px;
      color: #555;
    }

    .serv-image {
      flex: 1;
      text-align: right;
    }

    .serv-image img {
      max-width: 100%;
      height: auto;
    }

    .btn-primary {
        border: none;
      background: #0044ff;
      color: #fff;
      padding: 12px 25px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
    }
     .btn-primary:hover {
      background: #002dcc;
      transform: scale(1.08);
      box-shadow: 0 6px 25px rgba(0,68,255,0.5);
    }
    .btn-secondary {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #333;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
    }
     .btn-secondary:hover {
      color: #0044ff;
      transform: scale(1.05);
    }

    /* Features */
    .features {
      padding: 80px 10%;
      text-align: center;
      background: #fff;
    }

    .features h2 {
      font-size: 32px;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .features p {
      max-width: 700px;
      margin: 0 auto;
      color: #555;
    }

    .feature-list {
      display: flex;
      gap: 30px;
      margin-top: 40px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .feature-card {
      flex: 1 1 250px;
      background: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-8px);
    }

    .feature-card i {
      font-size: 30px;
      color: #0044ff;
      margin-bottom: 15px;
    }

    /* Accounts */
    .accounts {
      padding: 80px 10%;
      text-align: center;
    }

    .accounts h2 {
      font-size: 32px;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .accounts p {
      max-width: 700px;
      margin: 0 auto;
      color: #555;
    }

    .account-cards {
      display: flex;
      gap: 30px;
      margin-top: 40px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .account-card {
      flex: 1 1 280px;
      background: #fff;
      padding: 25px;
      border-radius: 8px;
      text-align: left;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }

    .account-card:hover {
      transform: translateY(-8px);
    }

    .account-card h3 {
      margin-bottom: 15px;
      font-size: 22px;
    }

    .account-card p {
      color: #555;
    }

    .account-card a {
      display: inline-block;
      margin-top: 15px;
      color: #0044ff;
      text-decoration: none;
      font-weight: 600;
    }

    /* CTA */
    .cta {
      padding: 80px 10%;
      background: linear-gradient(135deg, #0044ff, #4a1371);
      text-align: center;
      color: #fff;
      border-radius: 10px;
      margin: 60px 10%;
    }

    .cta h2 {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .cta p {
      font-size: 18px;
    }

    .cta button {
      margin-top: 20px;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .serv {
        flex-direction: column;
        text-align: center;
      }
      .serv-image {
        text-align: center;
      }
    }

/*================================support====================  */


/* 

 <!-- /////////========================fooetr===================
   ============================================================== --> */

    footer {
      background-color: #0c2d63;
      color: white;
      padding: 40px 20px;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: auto;
      gap: 20px;
    }

    .footer-col {
      flex: 1 1 250px;
      min-width: 200px;
    }

    .footer-logo img {
      max-width: 140px;
      margin-bottom: 10px;
    }

    .footer-col h3 {
      margin-bottom: 15px;
      font-size: 18px;
      color: #fff;
    }

    .footer-col p {
      line-height: 1.6;
      font-size: 14px;
      color: #ddd;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      text-decoration: none;
      color: #ddd;
      transition: color 0.3s;
    }

    .footer-col ul li a:hover {
      color: #fff;
    }

    /* Social media section */
    .social-icons {
      margin-top: 15px;
    }

    .social-icons a {
      display: inline-block;
      margin-right: 10px;
      color: #ddd;
      font-size: 20px;
      transition: color 0.3s, transform 0.3s;
    }

    .social-icons a:hover {
      color: #fff;
      transform: scale(1.2);
    }

    .footer-bottom {
      text-align: center;
      padding: 15px 0;
      font-size: 14px;
      color: #bbb;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 20px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        gap: 0 !important;
      }
      
    .footer-col  {
      margin-bottom: 20px;
    }
       .footer-col {
      flex: 1 1 120px;

    }
     
    }

