
  /* ===== CSS Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Body Full Width Background ===== */
body {
  margin: 0;
  padding: 0;
  background-color: #f0f0f0; /* ya jo bhi grey chahiye */
  font-family: Arial, sans-serif;
  width: 100%;
  overflow-x: hidden; /* prevent horizontal scroll */
}

    .top-bar {
      background-color: #444;
      color: white;
      padding: 5px 15px;
      font-size: 14px;
    }
    .top-bar a {
      color: white;
      margin-left: 15px;
    }
    .highlight-btn {
      background-color: #fbc02d;
      color: black !important;
      padding: 4px 10px;
      border-radius: 3px;
    }
    .service-box {
      padding: 30px;
      color: white;
      font-size: 18px;
      font-weight: 600;
      text-align: center;
    }
    .bg-green { background-color: #4caf50; }
    .bg-orange { background-color: #fb8c00; }
    .bg-purple { background-color: #6a1b9a; }

    .shadow-sm:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

  .card-section {
    padding: 60px 0;
  }

  .info-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
  }

  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.8rem 1.5rem rgba(0, 0, 0, 0.1);
  }

  .info-card img {
    max-height: 120px;
    object-fit: contain;
  }

  .info-card h5 {
    font-size: 18px;
  }

  .info-card p {
    font-size: 14px;
  }

  

  .bank-logo-right {
    flex: 1 1 300px;
    display: grid;
    grid-template-columns: repeat(3, 90px);
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .bank-logo-right img {
    width: 90px;
    height: 90px;
    background: white;
    padding: 10px;
    border-radius: 6px;
    object-fit: contain;
  }
  /* ✅ Green Header */
.green-header {
  background-color: #28a745;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  flex-wrap: wrap;
  font-weight: bold;
  font-size: 1.2rem;
}
.green-header button {
  background: white;
  color: #28a745;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
  margin-top: 10px;
}

/* ✅ Wrapper for News + Logos */
.news-bank-wrapper {
  background: url('image/pattern-bg.png'); /* Optional background */
  background-color: #002b36;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 30px 20px;
  flex-wrap: wrap;
}

/* ✅ News Column */
.news-column {
  flex: 1 1 300px;
  max-width: 600px;
  margin-bottom: 20px;
}
.news-column h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.news-column .green {
  color: #90ee90;
  font-weight: bold;
}

/* ✅ Bank Grid */
.bank-grid {
  flex: 1 1 250px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  justify-items: center;
}
.bank-grid img {
  width: 70px;
  height: 70px;
  background: white;
  padding: 10px;
  border-radius: 8px;
  object-fit: contain;
}

/* ✅ Mobile Responsiveness */
@media (max-width: 768px) {
  .green-header {
      text-align: center;
      flex-direction: column;
  }
  .green-header button {
      margin-top: 10px;
  }
  .news-bank-wrapper {
      flex-direction: column;
      align-items: center;
      text-align: left;
  }
  .bank-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
  }
}
  

  .logo-slider-section {
    background: white;
    padding: 30px 0;
    text-align: center;
  }

  .logo-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .logo-row img {
    height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s;
  }

  .logo-row img:hover {
    filter: none;
    transform: scale(1.05);
  }

  .section-title {
    text-align: center;
    color: #f7941d;
    font-size: 28px;
    font-weight: bold;
    margin: 50px 0 30px 0;
  }

  .bank-section {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap; /* ✅ images ek line mein rahenge */
    gap: 30px;
    overflow-x: auto;  /* ✅ overflow scroll ho sake chhoti screen par */
    padding: 20px;
  
  }

  .bank-card {
    text-align: center;
    flex: 0 0 auto;
  }

  .bank-card img {
    width: 120px;
    height: 120px;
    background-color: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
  }

  .bank-card button {
    margin-top: 10px;
    background-color: #4CAF50;
    color: white;
    padding: 8px 16px;
    border: none;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
  }

  .services-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 40px 20px 60px;
    /* background-color: whitesmoke; */
  }

  .service-card {
    background-color: lightgray;
    padding: 20px;
    width: 230px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  }

  .service-card img {
    height: 60px;
    margin-bottom: 10px;
  }

  .service-card h4 {
    font-size: 16px;
    margin: 10px 0;
    color: #4CAF50;
  }

  .service-card p {
    font-size: 13px;
    color: #333;
  }
  /* ===== Footer Section ===== */

.site-footer {
  background-color: #0a2c35;
  background-image: url(image/bank\ bg.jpg);
  color: #ffffff;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-box {
  flex: 1 1 300px;
  background-color: #444;
  padding: 20px;
  border-radius: 8px;
}

.footer-box h3 {
  margin-bottom: 20px;
}

.figures {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.figure-block h2 {
  margin: 0;
  font-size: 28px;
}

.figure-block p {
  margin: 5px 0;
  font-size: 16px;
  font-weight: bold;
}

.figure-block small {
  font-size: 14px;
  color: #ddd;
}

.contact-box {
  flex: 1 1 300px;
}

.contact-box h3 {
  margin-bottom: 20px;
}

.contact-box a {
  color: #ffffff;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #ccc;
}

    /* ul li {
        padding: 6px 0;
        font-size: 1.05rem;
    } */

    /* .container {
        max-width: 900px;
    } */



