@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans Devanagari', sans-serif;
}

:root {
  --navbar-bg: linear-gradient(to right, #25979b, #0ca49d, #09aaaa);

  --header-bg: linear-gradient(135deg, #a7f3d0 0%, #93c5fd 100%);

  --line-bg: linear-gradient(
    to left,
    #339fa2,
    #3ab1b4,
    #41c3c6,
    #35c6c8,
    #34b7b8
  );

  --text-dark: #222222;

  --text-navbar: #7e4309;

  --text-navbar2: #1e969b;

  --text-2: #237c80;

  --card-bg: rgba(255, 255, 255, 0.3);

  --btn-bg: #000000;

  --primary: #1e969b;

  --glass-bg: rgba(255, 255, 255, 0.15);

  --glass-border: rgba(255, 255, 255, 0.2);

  --shadow: rgba(30, 150, 155, 0.45);
}

.big-img-card {
  background: #fff;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  cursor: pointer;
}

.big-img-card img {
  width: 100%;
  height: auto; 
  border-radius: 15px;
}

.big-img-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

#modalImage {
  max-height: 90vh;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.btn-close-white {
  filter: invert(1);
  opacity: 1;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.index-caraosel-sliderrr img {
  height: 500px;
}

/* ===== Header ===== */

.bank-header {
  position: relative;

  background: linear-gradient(120deg, #ffc400 10%, #ffa239 100%);

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 6px 50px;

  flex-wrap: wrap;
}

.bank-title {
  padding-top: 18px;

  text-align: center;
}

.bank-left {
  display: flex;

  align-items: center;

  gap: 15px;
}

.bank-left img {
  height: 120px;

  width: auto;
}

.bank-title h1 {
  font-size: 1.8rem;

  font-weight: 700;

  color: #ed1c24;

  margin: 0;

  line-height: 1.2;

  letter-spacing: 1px;
}

.bank-title h2 {
  font-size: 18px;

  letter-spacing: 0.5px;

  color: #0e3469;

  font-weight: 600;

  margin: 0;
}

.bank-title p {
  font-size: 1rem;

  letter-spacing: 0.5px;

  color: #ed1c24;

  font-weight: 600;

  margin-top: 3px;
}

.bank-right img {
  height: 100px;

  width: 99px;

  margin-left: 20px;

  border-radius: 60%;

  border: 2px solid #b99237 !important;

  object-fit: cover;
}


.bank-right a {
  background: #ffffff;

  color: #854200;

  border: 2px solid #ffb300 !important;

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  padding: 0.5rem 1rem;

  border: none;

  border-radius: 0.5rem;

  font-weight: 600;

  font-size: 0.875rem;

  cursor: pointer;

  transition: all 0.15s ease-in-out;

  position: relative;

  z-index: 1;

  text-decoration: none;
}

.bank-right a:hover {
  background-position: right center;

  box-shadow: 0 6px 20px rgba(255, 100, 0, 0.45);

  transform: translateY(-2px);
}

/* ===== Navbar ===== */

.navbar-custom {

  background: linear-gradient(120deg, #ffd84d 10%, #ffb86a 100%);

  border-top: 1px solid #e9b63b;

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar-custom .nav-link {

  color: #3a3a3a;

  font-weight: 600;

  letter-spacing: 0.5px;

  font-size: 16px;

  padding: 12px 10px;

  position: relative;

  transition: all 0.3s ease;

  display: flex;

  align-items: center;

  gap: 2px;
}

.navbar-custom .nav-link::after {
  content: '';

  position: absolute;

  bottom: 6px;

  left: 50%;

  transform: translateX(-50%) scaleX(0);

  width: 60%;

  height: 2px;

  background-color: #1f1f1f;

  transition: transform 0.3s ease;
}

.navbar-custom .nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar-custom .nav-link:hover {
  color: #1f1f1f;

  transform: translateY(-2px);
}

/* === Dropdown Animation (Smooth Slide-In Like Widgets Menu) === */

.navbar-custom .dropdown-menu {
  display: block;

  opacity: 0;

  visibility: hidden;

  transform: translateY(20px);

  transition: all 0.4s cubic-bezier(0.54, 1.6, 0.5, 1);

  border-radius: 10px;

  border: none;

  background-color: #ffffff;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

  padding: 12px 0;

  min-width: 260px;

  z-index: 999;
}

.navbar-custom .dropdown:hover > .dropdown-menu,
.navbar-custom .dropdown.show > .dropdown-menu {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.navbar-custom .dropdown-item {
  font-weight: 500;

  color: #3a3a3a;

  padding: 12px 24px;

  transition: all 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
}

.navbar-custom .dropdown-item:hover {
  background-color: #fff3d1;

  color: #1f1f1f;

  padding-left: 30px;

  box-shadow: inset 4px 0 0 #e0a546;
}

.navbar-custom .dropdown-submenu {
  position: relative;
}

.navbar-custom .dropdown-submenu .dropdown-menu {
  top: 0;

  left: 100%;

  margin-top: -10px;

  opacity: 0;

  visibility: hidden;

  transform: translateX(20px);

  transition: all 0.4s cubic-bezier(0.54, 1.6, 0.5, 1);

  border-radius: 10px;

  background: #fffbe6;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

  min-width: 240px;
}

.navbar-custom .dropdown-submenu:hover > .dropdown-menu,
.navbar-custom .dropdown-submenu.show > .dropdown-menu {
  opacity: 1;

  visibility: visible;

  transform: translateX(0);
}

.navbar-custom .dropdown-toggle .chevron {
  font-size: 0.8rem;

  margin-left: 4px;

  transition: transform 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
}

.navbar-custom .dropdown:hover .chevron {
  transform: rotate(180deg);
}

.navbar-custom .navbar-nav li {
  margin: 0px 11px;
}

.hamburger {
  display: flex;

  flex-direction: column;

  width: 45px;

  cursor: pointer;

  margin-left: 10px;
}

.hamburger span {
  background: white !important;

  border-radius: 10px;

  height: 4px;

  margin: 5px 0;

  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.hamburger span:nth-of-type(1) {
  width: 60%;
}

.hamburger span:nth-of-type(2) {
  width: 100%;
}

.hamburger span:nth-of-type(3) {
  width: 75%;
}

.hamburger input[type='checkbox'] {
  display: none;
}

.hamburger input[type='checkbox']:checked ~ span:nth-of-type(1) {
  transform-origin: bottom;

  transform: rotateZ(45deg) translate(6px, 2px);
}

.hamburger input[type='checkbox']:checked ~ span:nth-of-type(2) {
  transform-origin: top;

  transform: rotateZ(-45deg);
}

.hamburger input[type='checkbox']:checked ~ span:nth-of-type(3) {
  transform-origin: bottom;

  width: 60%;

  transform: translate(14px, -6px) rotateZ(45deg);
}

.navbar-custom .navbar-cancel {
  position: absolute;

  top: 15px;

  right: 20px;

  display: none; 

  z-index: 1001;
}

.navbar-custom .cancel-icon {
  font-size: 32px;

  font-weight: bold;

  border-radius: 50%;

  padding: 5px 11px;

  background: white;

  color: #a78c85;

  cursor: pointer;

  transition: transform 0.3s ease;
}

.navbar-custom .cancel-icon:hover {
  transform: rotate(90deg);
}

.navbar-ff-left {
  display: none;
}

/******************************* Home Page carousel slider code ********************************/

.custom-carousel-indicators button {
  border: 0 !important;

  width: 10px !important;

  height: 10px !important;

  border-radius: 50% !important;

  opacity: 0.5 !important;

  background-color: #fff !important;
}

.custom-carousel-indicators button.active {
  opacity: 1 !important;

  background-color: #ffffff !important;
}

.carousel-control-prev,
.carousel-control-next {
  width: 48px;

  height: 48px;

  border-radius: 14px;

  background: rgba(0, 0, 0, 0.28);

  backdrop-filter: blur(6px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  display: flex;

  justify-content: center;

  align-items: center;

  transition: 0.25s ease;

  top: 50%;

  transform: translateY(-50%);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.45);

  scale: 1.08;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none !important;

  width: 18px; 

  height: 18px;

  display: flex;

  justify-content: center;

  align-items: center; 
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  content: '';

  border: solid #ffffff;

  border-width: 0 3px 3px 0;

  display: inline-block;

  width: 10px;

  height: 10px;
}

.carousel-control-prev-icon::after {
  transform: rotate(135deg);
}

.carousel-control-next-icon::after {
  transform: rotate(-45deg);
}

/********************************* Home Page Important marquee Section *******************************/

.Home-important-marquee .breaking-news-container {
  background-color: #f8f9fa;

  color: #343a40;

  padding: 0;

  border-radius: 8px;

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

  overflow: hidden;

  margin-bottom: 0px;
}

.Home-important-marquee .breaking-news-content {
  display: flex;

  align-items: center;

  padding: 8px 15px;

  background-color: #fff4cc;
}

.Home-important-marquee .marquee-wrapper {
  flex-grow: 1;

  overflow: hidden;
}

.Home-important-marquee .news-item {
  white-space: nowrap;

  font-size: 14px;

  font-weight: 600;

  color: #1a1a1a;

  padding-right: 15px;
}


.Home-important-marquee .news-icon {
  color: #d97706;

  font-size: 1.2rem;

  margin-right: 8px;

  vertical-align: middle;
}

.Home-important-marquee .separator {
  color: var(--navbar-bg);

  font-weight: bold;

  margin: 0 12px;

  font-size: 1.2em;
}

/************** New Banking Index Service *************/

.index-new-service {
  background-color: #ffffff;

  color: #1a1a1a;

  overflow-x: hidden;
}

.index-new-service .main-layout {
  display: flex;

  width: 100%;

  max-width: 1400px;

  margin: 30px auto 0px auto;

  background: linear-gradient(135deg, #ffb13c 0%, #ffc78a 100%);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

  overflow: hidden;
}

.index-new-service .services-content-area {
  width: 70%;

  padding: 40px 50px;

  box-sizing: border-box;

  height: 100%;

  overflow-y: auto;
}

.index-new-service .visual-image-area {
  width: 30%;

  display: flex;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.5);
}

.index-new-service .main-visual-image {
  width: 100%;

  height: 100%;

  object-fit: cover;

  opacity: 0.9;
}

.index-new-service .section-title {
  font-size: 3rem;

  font-weight: 700;

  color: #3a2a00;

  margin-bottom: 30px;
}

.index-new-service .services-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 28px 20px;

  width: 100%;
}

.index-new-service .service-card {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  background: #ffffff;

  border-radius: 15px;

  padding: 15px 10px;

  height: 120px;

  cursor: pointer;

  border: 1px solid rgba(0, 0, 0, 0.05);

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.index-new-service .service-card:hover {
  transform: translateY(-5px);

  background: #fff4d3; 

  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.index-new-service .service-card:hover .icon {
  color: #8c5418;
}

.index-new-service .icon {
  font-size: 3rem;

  color: #b56e1f;

  margin-bottom: 5px;

  font-weight: 400;

  transition: color 0.3s ease;
}

.index-new-service .service-name {
  margin: 0;

  font-size: 0.9rem;

  font-weight: 600;

  color: #4a4a4a;
}

.index-new-service .service-card:hover .service-name {
  color: #1e1e1e;
}

/************************ Old banking-services Section Css  ****************************/

.banking-services {
  position: relative;

  background-color: #fff;

  padding: 10px 20px 80px;

  text-align: center;

  font-family: 'Poppins', sans-serif;

  overflow: hidden;

}

.banking-services .section-title {
  font-size: 2.5rem;

  font-weight: 700;

  color: var(
    --text-navbar2
  ); 

  display: inline-block;

}

.banking-services .section-title::after {
  content: '';

  display: block;

  width: 120px;

  height: 4px;

  margin: 12px auto 0;

  background: rgb(30, 161, 161);

  border-radius: 2px;
}

.banking-services .section-subtitle {
  font-size: 15px;

  color: #616060;

  margin-top: 10px;

  margin-bottom: 50px;
}

.banking-services .services-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 30px;

  padding: 0px 20px;
}

.banking-services .service-card {
  background: #fff;

  border: 2px solid #f5f5f5;

  padding: 30px 25px;

  border-radius: 16px;

  box-shadow: 0 8px 16px rgba(255, 115, 60, 0.1);

  transition: all 0.4s ease;

  position: relative;

  overflow: hidden;

  z-index: 1;

  box-shadow: 0 6px 20px rgba(20, 120, 145, 0.3);
}

.banking-services .service-card::before {
  content: '';

  position: absolute;

  width: 100%;

  height: 100%;

  background: rgb(30, 161, 161);

  transition: 0.5s ease;

  z-index: 0;
}

.from-left::before {
  top: 0;

  left: -100%;
}

.from-left:hover::before {
  left: 0;
}

.from-right::before {
  top: 0;

  right: -100%;
}

.from-right:hover::before {
  right: 0;
}

.from-top::before {
  top: -100%;

  left: 0;
}

.from-top:hover::before {
  top: 0;
}

.from-bottom::before {
  bottom: -100%;

  left: 0;
}

.from-bottom:hover::before {
  bottom: 0;
}

.banking-services .service-card:hover {
  transform: translateY(-8px);

  color: #fff;
}

.banking-services .service-card:hover h3,
.banking-services .service-card:hover p,
.banking-services .service-card:hover .learn-more,
.banking-services .service-card:hover .icon-wrapper i {
  color: #fff !important;
}

.banking-services .icon-wrapper {
  background: rgba(30, 150, 155, 0.15);

  color: var(--text-navbar2);

  font-size: 2.5rem;

  border-radius: 50%;

  padding: 20px;

  width: 80px;

  height: 80px;

  margin: 0 auto 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: 0.4s;

  position: relative;

  z-index: 1;
}

.banking-services .service-card:hover .icon-wrapper {
  border: 3px solid white;

}

.banking-services .service-card h3 {
  font-size: 1.3rem;

  font-weight: 600;

  color: #333;

  margin-bottom: 12px;

  position: relative;

  z-index: 1;
}

.banking-services .service-card p {
  color: #666;

  font-size: 0.95rem;

  line-height: 1.6;

  z-index: 1;

  position: relative;
}

.banking-services .learn-more {
  display: inline-block;

  margin-top: 15px;

  font-weight: 500;

  color: var(--text-2);

  text-decoration: none;

  transition: 0.3s;

  position: relative;

  z-index: 1;
}

.banking-services .learn-more:hover {
  text-decoration: underline;
}

/*************** Vishwas of bank css *****************/

.trustworthy-header-new {

  background: linear-gradient(135deg, #ffe071 0%, #ff9f4a 100%);

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 70px;

  padding-top: 17px;

}

.trustworthy-div1 {
  color: #8a4b0a;

  font-weight: bolder;

  letter-spacing: 2px;

  padding-bottom: 80px;

  padding-top: 25px;

  font-size: 70px;

  line-height: 76px;

  display: flex;

  flex-direction: column;
}

.trustworthy-div1 p br {
  line-height: 1px;
}

.trustworthy-div2 {
  color: #8a4b0a;

  font-weight: 600;

  font-size: 20px;

  letter-spacing: 1.5px;

}


.counter-box {
  position: relative;

  top: -64px;

  width: 80%;

  text-align: center;

  background: linear-gradient(135deg, #ffefb3 0%, #ffcb90 100%);

  border-radius: 20px;

  padding: 60px 30px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.counter-item {
  padding: 9px;
}

.counter {
  font-size: 2.4rem;

  font-weight: 800;

  color: white;

  text-shadow:
    0 0 10px rgba(30, 150, 155, 0.8),
    0 0 20px rgba(30, 150, 155, 0.5);
}

.counter-box p {
  font-size: 16px;

  color: #ffffff;

  margin-top: 5px;
}

.counter-box-mm {
  background: #ffffff26;

  padding: 13px;

  border-radius: 15px;
}

.fade-up {
  opacity: 0;

  transform: translateY(30px);

  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;

  transform: translateY(0);
}

/************** Intest Section Css *******************/

.interest-section {
  padding: 50px 0;

  background: linear-gradient(135deg, #ffffea 0%, #fff7df 100%);

  text-align: center;
}

.interest-section .section-title {
  font-size: 40px;

  font-weight: 700;

  color: #c6790b;

  margin-bottom: 15px;
}

.interest-section .section-subtitle {
  font-size: 17px;

  color: #444;

  margin-bottom: 50px;
}

.interest-section .rate-cards {
  display: flex;

  gap: 30px;

  justify-content: center;

  flex-wrap: wrap;
}

.interest-section .rate-card {
  width: 320px;

  padding: 35px 25px;

  background: rgba(255, 255, 255, 0.8); 

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 183, 77, 0.5);

  border-radius: 22px;

  position: relative; 

  text-align: center;

  box-shadow: 0 10px 30px rgba(255, 160, 50, 0.15);

  transition: 0.4s ease;

  overflow: hidden; 
}

.interest-section .rate-card::before {
  content: '';

  position: absolute;

  top: 0px;

  left: 0px;

  right: 0px;

  height: 4px;

  background: linear-gradient(to right, #ffb84d, #ff9a2b);

  border-radius: 20px;

  width: 0%;

  transition: width 0.4s ease;
}

.interest-section .rate-card:hover::before {
  width: calc(100% - 0px); 
}

.interest-section .rate-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 15px 40px rgba(255, 160, 50, 0.3);
}

.interest-section .icon-box {
  width: 90px;

  height: 90px;

  background: #fff7e0; 

  border-radius: 18px;

  display: flex;

  justify-content: center;

  align-items: center;

  margin: 0 auto 20px;

  box-shadow: 0 8px 20px rgba(255, 160, 50, 0.2);
}

.interest-section .icon-box img {
  width: 65px;
}

.interest-section .rate {
  font-size: 30px;

  font-weight: 700;

  color: #ff8c00; 
}

.interest-section .rate span {
  font-size: 16px;

  color: #5a3e1b;

  font-weight: 400;
}

.interest-section .desc {
  font-size: 15px;

  color: #5a3e1b;

  margin: 12px 0 25px;
}

.interest-section .btn-learn {
  background: linear-gradient(
    45deg,
    #ffb84d,
    #ff9a2b
  );

  color: white;

  border: none;

  padding: 10px 24px;

  border-radius: 25px;

  font-size: 15px;

  cursor: pointer;

  transition: 0.3s;
}

.interest-section .btn-learn:hover {
  opacity: 0.9;

  transform: scale(1.05);
}

/****************** Index EMI Calculator Section *************************/

.index-emi-cal {
  background: linear-gradient(120deg, #ffd84d 10%, #ffb86a 100%);

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 30px 0px;

  margin-top: 30px;
}

.index-emi-cal .emi-calc-wrapper {
  width: 100%;

  max-width: 1200px;

  background: #fff7e0; 

  border-radius: 24px;

  box-shadow: 0 15px 40px rgba(255, 152, 0, 0.2); 

  overflow: hidden;

  border: 1px solid rgba(255, 183, 77, 0.3); 
}

.index-emi-cal .emi-calc-header {
  border-bottom: 1px solid #ff9a2b;

  padding: 19px;

  text-align: center;

  position: relative;

  overflow: hidden;
}

.index-emi-cal .emi-calc-header::before {
  content: '';

  position: absolute;

  top: -50%;

  left: -50%;

  width: 200%;

  height: 200%;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
}

.index-emi-cal .emi-calc-header h1 {
  color: #8a4b0a; 

  font-size: 2rem;

  padding-top: 10px;

  font-weight: 700;

  margin-bottom: 8px;

  position: relative;
}

.index-emi-cal .emi-calc-header p {
  opacity: 0.9;

  font-size: 1rem;

  position: relative;

  margin-bottom: 0px;

  color: #5a3e1b;
}

.index-emi-cal .emi-calc-content {
  padding: 40px;

  display: flex;

  gap: 40px;
}

.index-emi-cal .emi-input-area,
.index-emi-cal .emi-result-area {
  flex: 1;

  display: flex;

  flex-direction: column;
}

.index-emi-cal .emi-input-block {
  margin-bottom: 20px;

  position: relative;
}

.index-emi-cal .emi-input-block label {
  display: flex;

  align-items: center;

  gap: 12px;

  font-weight: 600;

  color: #5a3e1b; 

  font-size: 1rem;
}

.index-emi-cal .emi-input-block label i {
  color: #ff9a2b;

  font-size: 1.3rem;
}

.index-emi-cal .emi-amount-show {
  font-size: 2rem;

  font-weight: 700;

  color: #ff8c00;

  text-align: center;

  margin: 5px 0 7px;

  letter-spacing: -0.5px;

  text-shadow: 0 2px 4px rgba(255, 152, 0, 0.15);
}

/* Slider */

.index-emi-cal .emi-range-slider {
  -webkit-appearance: none;

  width: 100%;

  height: 10px;

  border-radius: 10px;

  background: linear-gradient(to right, #ffd84d, #ffb86a);

  outline: none;

  position: relative;
}

.index-emi-cal .emi-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;

  width: 30px;

  height: 30px;

  border-radius: 50%;

  background: white;

  border: 3px solid #ff9a2b;

  cursor: pointer;

  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);

  transition: all 0.2s;
}

.index-emi-cal .emi-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);

  box-shadow: 0 6px 18px rgba(255, 152, 0, 0.4);
}

.index-emi-cal .emi-slider-labels {
  display: flex;

  justify-content: space-between;
}

/* Chart Box */

.index-emi-cal .emi-chart-box {
  background: #fff7e0;

  border-radius: 20px;

  padding: 15px 0;

  box-shadow: 0 5px 20px rgba(255, 152, 0, 0.1);

  display: flex;

  flex-direction: column;

  border: 1px solid rgba(255, 183, 77, 0.3);
}

.index-emi-cal .emi-chart-title {
  font-size: 1.3rem;

  font-weight: 700;

  color: #5a3e1b;

  margin-bottom: 13px;

  text-align: center;
}

.index-emi-cal .emi-summary-box {
  background: linear-gradient(
    to right,
    #ffd84d10,
    #ffb86a10
  ); 

  border-radius: 20px;

  padding: 15px 30px;

  box-shadow: 0 5px 20px rgba(255, 152, 0, 0.1);

  border: 1px solid rgba(255, 183, 77, 0.3);
}

.index-emi-cal .emi-summary-item {
  display: flex;

  justify-content: space-between;

  padding: 8px 0;

  border-bottom: 1px solid rgb(255 202 123);
}

.index-emi-cal .emi-summary-item:last-child {
  border-bottom: none;
}

.index-emi-cal .emi-summary-label {
  color: #5a3e1b;

  font-weight: 500;

  font-size: 1rem;
}

.index-emi-cal .emi-summary-value {
  font-weight: 700;

  color: #ff8c00;

  font-size: 1.1rem;
}

.index-emi-cal .emi-action-btn {
  background: linear-gradient(45deg, #ffb84d, #ff9a2b);

  color: white;

  border: none;

  padding: 15px 28px;

  font-weight: 700;

  border-radius: 14px;

  width: 100%;

  font-size: 1rem;

  cursor: pointer;

  transition: all 0.3s;

  box-shadow: 0 6px 18px rgba(255, 152, 0, 0.2);

  margin-top: 15px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;
}

.index-emi-cal .emi-action-btn:hover {
  transform: translateY(-3px);

  box-shadow: 0 10px 28px rgba(255, 152, 0, 0.4);
}

.index-emi-cal .emi-display-box {
  background: linear-gradient(45deg, #ffb84d, #ff9a2b);

  color: white;

  border-radius: 20px;

  padding: 15px;

  text-align: center;

  box-shadow: 0 8px 28px rgba(255, 152, 0, 0.3);

  position: relative;

  overflow: hidden;
}

.index-emi-cal .emi-display-label {
  font-size: 1rem;

  opacity: 0.9;
}

.index-emi-cal .emi-display-amount {
  font-size: 1.8rem;

  font-weight: 600;

  position: relative;

  text-shadow: 0 2px 4px rgba(255, 152, 0, 0.2);
}

/************** Index Deposit Section ************/

.index-deposit-secc .deposit-section {
  padding: 60px 20px;

  background: linear-gradient(135deg, #fff9e6, #ffeab3);

  text-align: center;
}

.index-deposit-secc .section-title {
  font-size: 2.2rem;

  font-weight: 700;

  color: #a66b00;

  margin-bottom: 40px;

  position: relative;
}

.index-deposit-secc .section-title::after {
  content: '';

  width: 80px;

  height: 4px;

  background: #ffcc33;

  display: block;

  margin: 10px auto 0;

  border-radius: 10px;
}

.index-deposit-secc .deposit-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 22px;

  justify-content: center;
}

.index-deposit-secc .deposit-card {
  position: relative;

  width: 100%;

  height: 260px;

  overflow: hidden;

  border-radius: 18px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.index-deposit-secc .deposit-card img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  filter: brightness(75%);

  transition: transform 0.5s ease;
}

.index-deposit-secc .deposit-card:hover img {
  transform: scale(1.12);
}

.index-deposit-secc .deposit-card:hover {
  transform: translateY(-10px) scale(1.03);

  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.index-deposit-secc .overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.index-deposit-secc .deposit-card:hover .overlay {
  background: rgba(0, 0, 0, 0.45);
}

.index-deposit-secc .card-text {
  position: absolute;

  bottom: 55px;

  left: 20px;

  color: white;

  text-align: left;
}

.index-deposit-secc .card-text h3 {
  font-size: 1.4rem;

  transition:
    color 0.3s ease,
    transform 0.3s ease;

  font-weight: 700;

  margin: 0;
}

.index-deposit-secc .deposit-card:hover .card-text h3 {
  color: #ffe082;

  transform: translateY(-3px);
}

.index-deposit-secc .deposit-card:hover .card-text p {
  color: #f8f8f8;
}

.index-deposit-secc .card-text p {
  font-size: 0.95rem;

  transition:
    color 0.3s ease,
    transform 0.3s ease;

  margin-top: 3px;

  opacity: 0.9;
}

.index-deposit-secc .btn-learn {
  position: absolute;

  bottom: 15px;

  font-size: 15px;

  left: 20px;

  padding: 8px 18px;

  border: none;

  border-radius: 10px;

  background: #ffcc33;

  color: #5b4300;

  font-weight: 600;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.index-deposit-secc .deposit-card:hover .btn-learn {
  background: #ffca28;

  color: #000;

  transform: translateY(3px);
}

/******** Index Ditatal Sec Css ********/

.index-digital-sec {
  background-color: #fff0d9;

  padding: 50px 0px;
}

.index-digital-sec .digital-box {
  width: 100%;

  padding: 70px 100px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  background: linear-gradient(135deg, #ffd84d 0%, #ffb86a 50%, #ff9a2b 100%);

  box-shadow: 0 15px 40px rgba(255, 152, 0, 0.2);

  border-radius: 30px;

  gap: 40px;

  color: #0d3c3c;
}

@keyframes bgMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.index-digital-sec .digital-left {
  width: 50%;
}

.index-digital-sec .digital-left h2 {
  font-size: 42px;

  margin-bottom: 15px;

  font-weight: 800;

  color: #5a3e1b;
}

.index-digital-sec .digital-left p,
.index-digital-sec .digital-left ul li {
  font-size: 18px;

  margin-bottom: 10px;

  line-height: 1.5;

  color: #5a3e1b;
}

.index-digital-sec .digital-btn {
  padding: 12px 32px;

  background: #ff7a00;

  color: #fff;

  border: none;

  border-radius: 50px;

  font-size: 18px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s ease;
}

.index-digital-sec .digital-btn:hover {
  background: #ff9a2b;

  transform: scale(1.06);
}

.index-digital-sec .digital-right {
  width: 50%;

  display: flex;

  justify-content: center;

  position: relative;
}

.index-digital-sec .circle {
  width: 350px;

  height: 350px;

  background: radial-gradient(
    circle,
    rgba(255, 184, 77, 0.411) 0%,
    rgba(255, 146, 30, 0.753) 100%
  );

  border-radius: 50%;

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.index-digital-sec .digital-right img {
  width: 300px;

  padding: 45px 30px;

  z-index: 2;

  transition: 0.4s ease;
}

.index-digital-sec .digital-right img:hover {
  transform: scale(1.08) rotate(2deg);
}

/**************** Bank Footer Css ***************/

.bank-footer {
  background: #1a237e;

  color: white;

  padding: 40px 0 20px;

  margin-top: auto;
}

.bank-footer .footer-container {
  max-width: 1200px;

  margin: 0 auto;

  padding: 0 20px;
}

.bank-footer .footer-top {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 40px;

}

.ff-digs-lg {
  height: 100px;
  border-radius: 10px;
}

.bank-footer .footer-brand {
  display: flex;

  flex-direction: column;

  gap: 15px;
}

.bank-footer .bank-logo {
  display: flex;

  align-items: center;

  gap: 12px;

  font-size: 1.8rem;

  font-weight: 700;
}

.bank-footer .bank-logo i {
  color: #ff9800;

  font-size: 2rem;
}

.bank-footer .bank-tagline {
  font-size: 1rem;

  line-height: 1.6;

  opacity: 0.9;

  max-width: 400px;
}

.bank-footer .trust-badges {
  display: flex;

  gap: 15px;

  margin-top: 10px;
}

.bank-footer .trust-badge {
  background: rgba(255, 255, 255, 0.1);

  padding: 8px 15px;

  border-radius: 20px;

  font-size: 0.8rem;

  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bank-footer .footer-section h4 {
  color: #ff9800;

  font-size: 1.1rem;

  margin-bottom: 20px;

  font-weight: 600;
}

.bank-footer .footer-links {
  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 12px;

  padding-left: 0px;
}

.bank-footer .footer-links a {
  color: white;

  text-decoration: none;

  opacity: 0.8;

  transition: all 0.3s ease;

  display: flex;

  align-items: center;

  gap: 8px;
}

.bank-footer .footer-links a:hover {
  opacity: 1;

  color: #ff9800;

  transform: translateX(5px);
}

.bank-footer .footer-links i {
  font-size: 0.8rem;

  color: #ff9800;
}

.bank-footer .contact-info {
  display: flex;

  flex-direction: column;

  gap: 15px;
}

.bank-footer .contact-item {
  display: flex;

  gap: 12px;

  font-size: 0.9rem;
}

.bank-footer .contact-item i {
  color: #ff9800;

  width: 20px;
}

.bank-footer .footer-divider {
  border: none;

  height: 1px;

  background: rgba(255, 255, 255, 0.2);

  margin: 20px 0;
}

.bank-footer .footer-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 20px;
}

.bank-footer .copyright {
  opacity: 0.8;

  font-size: 0.9rem;
}

.bank-footer .footer-legal {
  display: flex;

  gap: 25px;
}

.bank-footer .footer-legal a {
  color: white;

  text-decoration: none;

  opacity: 0.8;

  font-size: 0.9rem;

  transition: opacity 0.3s;
}

.bank-footer .footer-legal a:hover {
  opacity: 1;

  color: #ff9800;
}

.bank-footer .security-features {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-top: 15px;
}

.bank-footer .security-badge {
  display: flex;

  align-items: center;

  gap: 5px;

  font-size: 0.8rem;

  opacity: 0.8;
}

.bank-footer .security-badge i {
  color: #4caf50;
}

.bank-logo .bank-left .bank-title h1 {
  font-size: 32px;
}

.bank-logo .bank-left img {
  margin-top: 15px;

  width: 100px;

  height: 100px;
}

.bank-logo .bank-left .bank-title h2 {
  padding-top: 8px;

  color: rgb(254 166 87);

  font-size: 15px;
}

.footer-logo-atag {
  text-decoration: none;
}

/********** Bannne Images *********/

.banner {
  position: relative;

  width: 100%;

  height: 420px;

  overflow: hidden;

}

.banner img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;
}

.dot-pattern {
  background-color: #f7fbff;

  background-image: radial-gradient(#d0e7ff 1px, transparent 1px);

  background-size: 18px 18px !important;
}

.banner-text {
  position: absolute;

  top: 50%;

  left: 50px; 

  transform: translateY(-50%);

  color: white;

  text-align: left;

  max-width: 400px;

  padding: 20px 28px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(6px);

  border-radius: 12px;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);

  opacity: 0;

  transform: translate(-20px, -50%);

  animation: fadeSlide 1s ease forwards;
}

.banner-text h1 {
  font-size: 3rem;

  font-weight: 700;

  margin: 0;

  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);

  line-height: 1.2;
}

@keyframes fadeSlide {
  from {
    opacity: 0;

    transform: translate(-40px, -50%);
  }

  to {
    opacity: 1;

    transform: translate(0px, -50%);
  }
}

/************** Home Loan Page Css ******************/

.home-loan-sec .loan-tabs-wrapper {
  position: sticky;

  top: 65px;

  padding-top: 6px;

  z-index: 998;

  background: #fff;

  border-bottom: 1px solid #ffc969;

  overflow-x: auto;

  white-space: nowrap;

  -webkit-overflow-scrolling: touch;
}

.home-loan-sec .loan-tabs {
  flex-wrap: nowrap !important; 

  display: flex;
}

.home-loan-sec .loan-tabs .nav-link {
  font-weight: 600;

  padding: 15px 20px;

  white-space: nowrap;
}

.home-loan-sec .loan-tabs .nav-link {
  color: #a38f1e !important;
}

.home-loan-sec .loan-tabs .nav-link.active {
  color: #d88600;

  border-bottom: 3px solid #d88600;
}

.home-loan-sec .feature-item {
  padding: 12px 10px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.home-loan-sec .feature-item:last-child {
  border-bottom: none;
}

.home-loan-sec .fi-icon {
  width: 60px;

  height: 60px;

  border-radius: 14px;

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  font-size: 1.5rem;

  backdrop-filter: blur(8px);

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.home-loan-sec .bg1 {
  background: linear-gradient(135deg, #ffbc04 0%, #ffac1d 60%, #ff9147 100%);
}

.home-loan-sec .bg2 {
  background: linear-gradient(135deg, #ffbc04 0%, #ffac1d 60%, #ff9147 100%);
}

.home-loan-sec .bg3 {
  background: linear-gradient(135deg, #ffbc04 0%, #ffac1d 60%, #ff9147 100%);
}

.home-loan-sec .bg4 {
  background: linear-gradient(135deg, #ffbc04 0%, #ffac1d 60%, #ff9147 100%);
}

.home-loan-sec .section-title {
  font-size: 2rem;

  color: #d88600 !important;

  font-weight: 700;
}

.home-loan-sec .text-teal {
  color: #d88600;
}

.home-loan-sec .eligibility-single {
  background: #ffffff;

  border-radius: 22px;

  padding: 40px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  border: 2px solid rgba(209, 160, 0, 0.356);
}

.home-loan-sec .eligibility-single:hover {
  transform: translateY(-5px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.home-loan-sec .eligibility-icon {
  width: 65px;

  height: 65px;

  font-size: 1.8rem;

  background: #ffb84d;

  color: #fff;

  border-radius: 50%;

  box-shadow: 0 5px 12px rgba(37, 151, 155, 0.35);
}

.home-loan-sec .eligibility-list {
  list-style: none;

  padding-left: 0;
}

.home-loan-sec .eligibility-list li {
  font-size: 1.1rem;

  margin-bottom: 10px;

  padding-left: 5px;

  color: #333;

  transition: color 0.3s ease;
}

.home-loan-sec .eligibility-list li:hover {
  color: #dda900;

  transform: translateX(4px);
}

.home-loan-sec .teal-btn {
  background: linear-gradient(135deg, #25979b, #36bfc5);

  border: none;

  padding: 10px 28px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s ease;
}

.home-loan-sec .teal-btn:hover {
  background: linear-gradient(135deg, #1d787b, #22a3a8);

  transform: translateY(-3px);
}

.home-loan-sec #documents {
  background: none;
}

.home-loan-sec .doc-heading {
  font-size: 1.9rem;

  font-weight: 700;

  background: linear-gradient(135deg, #9b7225, #c9bf36);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  margin-bottom: 10px;

  letter-spacing: 0.5px;
}

.home-loan-sec .section-title {
  font-size: 1.8rem;

  padding-top: 10px;

  font-weight: 700;
}

.home-loan-sec .doc-list {
  list-style: none;

  padding: 0;

  margin: 0;
}

.home-loan-sec .doc-list li {
  font-size: 1.1rem;

  padding: 12px 16px;

  border-left: 4px solid #f8b90c;

  background: rgba(255, 230, 0, 0.18);

  margin-bottom: 14px;

  border-radius: 6px;

  transition: 0.3s ease;
}

.home-loan-sec .doc-list li:hover {
  background: rgba(255, 208, 0, 0.08);

  transform: translateX(4px);
}

.home-loan-sec .section-title {
  font-size: 2rem;

  font-weight: 700;
}

.home-loan-sec .limit-card {
  max-width: 480px;

  background: rgba(255, 255, 255, 0.65);

  border-radius: 20px;

  backdrop-filter: blur(10px);

  transition: 0.35s ease;
}

.home-loan-sec .limit-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(37, 151, 155, 0.28);
}

.home-loan-sec .icon-box {
  width: 95px;

  height: 95px;

  border-radius: 50%;

  background: linear-gradient(135deg, #25979b, #37c2c7);

  color: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 2rem;

  box-shadow: 0 10px 20px rgba(37, 151, 155, 0.3);

  transition: 0.3s ease;
}

.home-loan-sec .limit-card:hover .icon-box {
  transform: scale(1.08);
}

.home-loan-sec .btn-custom {
  display: inline-block;

  padding: 12px 30px;

  border-radius: 50px;

  background: linear-gradient(135deg, #25979b, #37c2c7);

  color: #fff;

  font-size: 1.1rem;

  font-weight: 600;

  text-decoration: none;

  transition: 0.3s ease;
}

.home-loan-sec .btn-custom:hover {
  background: linear-gradient(135deg, #207f82, #2aaeb2);

  transform: translateY(-3px);
}

.home-loan-sec .limit-card {
  border-radius: 20px;

  background: #fff;

  box-shadow: 0 10px 25px rgb(27 121 103 / 10%) !important;

  transition:
    transform 0.3s,
    box-shadow 0.3s;

  max-width: 400px;

  width: 100%;
}

.home-loan-sec .limit-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.home-loan-sec .icon {
  width: 70px;

  height: 70px;

  font-size: 2rem;
}

.home-loan-sec .bg-gradient-primary {
  background: linear-gradient(45deg, #0d6efd, #6610f2);
}

.home-loan-sec .repay-card {
  border-radius: 20px;

  background: #fff;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.home-loan-sec .repay-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.home-loan-sec .icon {
  width: 60px;

  height: 60px;

  font-size: 1.8rem;
}

.home-loan-sec .bg-gradient-primary {
  background: linear-gradient(45deg, #0d6efd, #6610f2);
}

.home-loan-sec .bg-gradient-success {
  background: linear-gradient(45deg, #198754, #20c997);
}

.home-loan-sec .bg-gradient-warning {
  background: linear-gradient(45deg, #ffc107, #fd7e14);
}

.home-loan-sec .bg-gradient-purple {
  background: linear-gradient(
    45deg,
    #6f42c1,
    #d63384
  ); 
}

.home-loan-sec .fi-icon {
  width: 50px;

  height: 50px;

  font-size: 1.3rem;
}

.home-loan-sec .section-title {
  font-size: 1.6rem;

  color: #d88600 !important;
}

.home-loan-sec .repay-item {
  padding: 15px 5px;

  border-bottom: 1px solid #eaeaea;
}

.home-loan-sec .icon-box {
  width: 55px;

  height: 55px;

  background: linear-gradient(45deg, #ff9c07, #ffd412);

  color: #fff;

  font-size: 1.4rem;

  border-radius: 12px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.home-loan-sec .repay-item h5 {
  font-size: 1.1rem;
}

.home-loan-sec .repay-item p {
  font-size: 0.95rem;

  color: #555;
}

.home-loan-sec .repay-item:last-child {
  border-bottom: none;
}

/******************** Bank History Page CSS ***************/

.bank-history-main-page .bank-history {
  font-family: 'Noto Sans Devanagari', sans-serif;

  display: flex;

  padding: 50px 5%;

  gap: 40px;

  background: linear-gradient(135deg, #ffffef 0%, #fffaea 100%);

  align-items: flex-start;
}

.bank-history-main-page .bank-text {
  width: 50%;
}

.bank-history-main-page .bank-text h2 {
  font-size: 30px;

  font-weight: 600;

  color: var(--text-navbar);

  margin-bottom: 15px;
}

.bank-history-main-page .bank-text h3 {
  margin-top: 22px;

  margin-bottom: 12px;

  font-size: 22px;

  color: var(--text-navbar);

  font-weight: 600;
}

.bank-history-main-page .bank-text p {
  line-height: 1.75;

  font-size: 17px;

  margin-bottom: 14px;

  color: #444;
}

.bank-history-main-page .bank-text ul {
  padding-left: 20px;

  margin-bottom: 15px;
}

.bank-history-main-page .bank-text ul li {
  margin-bottom: 14px;

  font-size: 16px;

  color: #333;
}

.bank-history-main-page .bank-info {
  margin-top: 18px;

  padding: 12px 15px;

  background: linear-gradient(135deg, #ffee97d6 0%, #ffdc4eaa 100%);

  backdrop-filter: blur(4px);

  border-radius: 6px;

  font-size: 15px;
}

.bank-slider {
  margin-top: 50px;

  width: 50%;

  border-radius: 12px;

  overflow: hidden;

  height: 420px; 
}

.bank-history-main-page .carousel-item img {
  height: 350px; 

  object-fit: cover; 

  border-radius: 12px;
}

.bank-history-main-page .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.bank-history-main-page .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

/********** Board Of Director Section Css ****************/

.board-of-director-sec {
  font-family: 'Poppins', sans-serif;

  margin: 0;

  padding: 0;
}

.board-of-director-sec .section-title {
  text-align: center;

  margin: 50px 0 30px;

  font-size: 2.5rem;

  color: #b88400;

  font-weight: 600;

  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.board-of-director-sec .subsection-title {
  text-align: center;

  margin: 40px 0 20px;

  font-size: 1.8rem;

  color: #d89a00;

  font-weight: 600;

  border-bottom: 2px solid #d89a00;

  display: inline-block;

  padding-bottom: 5px;
}

.board-of-director-sec .director-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);

  border-radius: 15px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

  padding: 25px 15px;

  text-align: center;

  margin-bottom: 30px;

  transition: all 0.3s ease;

  height: 280px; 

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  position: relative;

  overflow: hidden;
}

.board-of-director-sec .director-card:hover {
  border: 1px solid #ffb027 !important;
}

.board-of-director-sec .director-card::before {
  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 5px;

  background: linear-gradient(120deg, #ffa722, #ffd139);
}

.board-of-director-sec .director-card:hover {
  transform: translateY(-10px) scale(1.02);

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);

  border-color: #09aaaa;
}

.board-of-director-sec .director-photo {
  width: 135px;

  height: 135px;

  object-fit: cover;

  object-position: top;

  margin-bottom: 15px;

  border: 2px solid #d89a00;

  transition: border-color 0.3s ease;
}

.board-of-director-sec .director-card:hover .director-photo {
  border-color: #f9a732;
}

.board-of-director-sec .director-name {
  font-size: 1.1rem;

  font-weight: 600;

  color: #333;

  margin-bottom: 8px;

  line-height: 1.3;
}

.board-of-director-sec .director-position {
  font-size: 0.95rem;

  color: #666;

  font-weight: 400;

  line-height: 1.2;
}

/******* Deposite-Page Css *********/

.deposit-section-page {
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;

  background-color: linear-gradient(
    135deg,
    #fffcef 0%,
    #fff7e8 100%
  ); 

  color: #343a40;

  transition: background-color 0.3s;
}

.deposit-section-page .gradient-text {
  color: #af6f0f;
}

.deposit-section-page h1 {
  font-weight: 800;
}

.deposit-section-page h2 {
  color: #3a2a00;

  font-weight: 700;

  margin-bottom: 25px;

  padding-bottom: 5px;

  border-bottom: 3px solid #e0e0e0; 

  font-size: 1.7rem;
}

.deposit-section-page .sidebar-card-container {
  padding-right: 20px;
}

.deposit-section-page .rate-card {
  border: 1px solid #e0e0e0;

  border-radius: 12px;

  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); 

  overflow: hidden;

  background-color: #ffffff;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

  margin-bottom: 20px;

  cursor: pointer;
}

.deposit-section-page .rate-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15),
    0 0 10px #b86a00;
}

.deposit-section-page .card-title {
  font-weight: 700;

  font-size: 1.1rem;

  color: #3a2a00;
}

.deposit-section-page .rate-display {
  font-size: 2.5rem;

  font-weight: 900;

  color: #b86a00; 
}

.deposit-section-page .rate-card.highlight {
  background-color: #fff7e0;

  border-left: 5px solid transparent;

  border-image: linear-gradient(
      to right,

      #f8c102,
      #ffbb0e,
      #ff9f00,
      #ff8a00,
      #ff7700
    )
    1; 
}

.deposit-section-page .main-content-section {
  background-color: #ffffff;

  padding: 30px;

  border-radius: 12px; 

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.deposit-section-page .deposit-table {
  border-radius: 8px;

  overflow: hidden;

  border: 1px solid #ddd;
}

.deposit-section-page .deposit-table thead th {
  background-color: #3a2a00; 

  color: #fff;

  font-weight: 700; 

  padding: 14px 18px;

  border-bottom: 3px solid #b86a00; 
}

.deposit-section-page .deposit-table tbody td {
  padding: 14px 18px; 

  color: #343a40;

  font-weight: 500;

  border-bottom: 1px solid #f0f0f0;
}

.deposit-section-page .deposit-table tbody tr:nth-child(even) {
  background-color: #f8faff; 
}

.deposit-section-page .deposit-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.deposit-section-page .deposit-table tbody tr {
  transition: all 0.3s ease-out; 

  position: relative;

  z-index: 1;
}

.deposit-section-page .deposit-table tbody tr:hover {
  background-color: #fff0f0 !important; 

  transform: translateX(5px); 

  box-shadow: -5px 0 0 #b86a00 inset; 

  cursor: pointer;

  z-index: 2; 
}


.deposit-section-page .highlight-row {
  background-color: var(
    --color-accent-light
  ) !important; 

  font-weight: 700;

  color: #b86a00;
}

.deposit-section-page .highlight-row td:last-child {
  font-size: 1.15rem;

  font-weight: 900;

  color: #b86a00;
}

.deposit-section-page .deposit-table tbody td:first-child {
  font-weight: 600;

  color: #212529;
}

.deposit-section-page .btn-gradient {
  background-image: linear-gradient(
    to right,

    #f8c102,
    #ffbb0e,
    #ff9f00,
    #ff8a00,
    #ff7700
  );

  color: #fff;

  font-weight: 700;

  border: none;

  padding: 12px 25px;

  border-radius: 50px;

  transition: all 0.3s ease;

  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

.deposit-section-page .btn-gradient:hover {
  filter: brightness(1.15);

  transform: translateY(-3px);

  box-shadow: 0 8px 15px rgba(255, 0, 0, 0.5); 

  color: #fff;
}

/******* Interest Section Page Css ********/

.interest-rate-pagg {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  background: #f4f7f9;

  color: #333;

  padding: 10px;
}

.interest-rate-pagg h2 {
  text-align: center;

  font-size: 1.75rem;

  margin-bottom: 1.5rem;

  color: #885a02;

  padding-top: 10px;
}

.interest-rate-pagg .table-container {
  overflow-x: auto; 

  background: #fff;

  border-radius: 12px;

  padding: 15px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

  margin-bottom: 25px;
}

.interest-rate-pagg table {
  width: 100%;

  border-collapse: collapse;

  min-width: 700px; 
}

.interest-rate-pagg thead {
  background: linear-gradient(90deg, #ffbf5e, #ffd700);

  color: #333;

}

.interest-rate-pagg table th,
.interest-rate-pagg table td {
  padding: 12px 15px;

  text-align: left;

  border-bottom: 1px solid #e0e0e0;

  font-size: 0.95rem;

  vertical-align: middle;
}

.interest-rate-pagg tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.interest-rate-pagg tbody tr:hover {
  background: #f0ead1;

  transition: background 0.3s ease;
}

.interest-rate-pagg .sub-item {
  padding-left: 20px;

  font-weight: 500;
}

.interest-rate-pagg .gold-table thead {
  background: linear-gradient(90deg, #ffbf5e, #ffd700);

  color: #333;
}

.interest-rate-pagg .gold-table tbody tr:nth-child(even) {
  background-color: #fdf8f0;
}

.interest-rate-pagg .gold-table tbody tr:hover {
  background: #fff5d1;

  transition: background 0.3s ease;
}

/************** NFTS & RTGS Section ***************/

.neft-rtgs-page {
  font-family: 'Poppins', sans-serif;

  color: #1e293b;

  background: linear-gradient(135deg, #fff6e2 0%, rgb(255, 248, 222) 100%);

  line-height: 1.6;

  overflow-x: hidden;
}

.neft-rtgs-page .page-hero {

  background: linear-gradient(90deg, #fff6e6, #fff7cd);

  color: #3a2c00;

  padding: 120px 0 80px;

  position: relative;

  overflow: hidden;

}

.neft-rtgs-page .page-hero::before {
  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');

  background-size: cover;

  background-position: bottom;
}

.neft-rtgs-page .page-hero .container {
  position: relative;

  z-index: 1;
}

.neft-rtgs-page .hero-title {
  font-size: 40px;

  font-weight: 600;

  margin-bottom: 1.5rem;

  line-height: 1.2;
}

.neft-rtgs-page .hero-subtitle {
  font-size: 16px;

  font-weight: 400;

  margin-bottom: 2rem;

  opacity: 0.9;
}

.neft-rtgs-page .section-title {
  position: relative;

  margin-bottom: 3rem;

  font-weight: 700;

  color: #1e293b;

  font-size: 2.5rem;

  text-align: center;
}

.neft-rtgs-page .section-title::after {
  content: '';

  position: absolute;

  bottom: -15px;

  left: 50%;

  transform: translateX(-50%);

  width: 80px;

  height: 5px;

  background: linear-gradient(135deg, #ffbb00 0%, #ffac54 50%, #ff9a2b 100%);

  border-radius: 5px;
}

.neft-rtgs-page .service-card {
  border-radius: 20px;

  overflow: hidden;

  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  margin-bottom: 30px;

  border: none;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

  background: #ffffff;

  height: 100%;

  position: relative;
}

.neft-rtgs-page .service-card::before {
  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 5px;

  background: linear-gradient(135deg, #ffbb00 0%, #ffac54 50%, #ff9a2b 100%);
}

.neft-rtgs-page .service-card:hover {
  transform: translateY(-15px) scale(1.02);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.neft-rtgs-page .card-body {
  padding: 2.5rem;

  text-align: center;
}

.neft-rtgs-page .service-icon {
  font-size: 4rem;

  margin-bottom: 1.5rem;

  display: inline-block;

  background: linear-gradient(135deg, #ffbb00 0%, #ffac54 50%, #ff9a2b 100%);

  -webkit-background-clip: text;

  background-clip: text;

  -webkit-text-fill-color: transparent;

  position: relative;
}

.neft-rtgs-page .service-icon::after {
  content: '';

  position: absolute;

  bottom: -10px;

  left: 50%;

  transform: translateX(-50%);

  width: 50px;

  height: 3px;

  background: linear-gradient(135deg, #ffbb00 0%, #ffac54 50%, #ff9a2b 100%);

  border-radius: 3px;
}

.neft-rtgs-page .card-title {
  font-weight: 700;

  color: #1e293b;

  margin-bottom: 1rem;

  font-size: 1.5rem;
}

.neft-rtgs-page .card-text {
  color: #64748b;

  margin-bottom: 1.5rem;

  font-size: 1rem;
}

.neft-rtgs-page .badge {
  font-weight: 500;

  padding: 8px 16px;

  border-radius: 50px;

  margin-right: 8px;

  margin-bottom: 10px;

  font-size: 0.85rem;

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.neft-rtgs-page .badge.bg-primary {
  background: linear-gradient(
    135deg,
    #ffbb00 0%,
    #ffac54 50%,
    #ff9a2b 100%
  ) !important;
}


.neft-rtgs-page .btn-primary {
  background: linear-gradient(135deg, #ffbb00 0%, #ffac54 50%, #ff9a2b 100%);

  border: none;

  padding: 12px 30px;

  border-radius: 50px;

  font-weight: 600;

  transition: all 0.3s ease;

  box-shadow: 0 4px 15px rgba(37, 151, 155, 0.3);

  position: relative;

  overflow: hidden;

  z-index: 1;
}

.neft-rtgs-page .btn-primary::before {
  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 0%;

  height: 100%;

  background: linear-gradient(to right, #f3cf00, #f5ba19);

  transition: all 0.3s ease;

  z-index: -1;
}

.neft-rtgs-page .btn-primary:hover::before {
  width: 100%;
}

.neft-rtgs-page .neft-rtgs-page .btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 7px 20px rgba(37, 151, 155, 0.4);
}

.neft-rtgs-page .comparison-table {
  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

  background: #ffffff;

  border: none;
}

.neft-rtgs-page .comparison-table thead {
  background: linear-gradient(135deg, #ffbb00 0%, #ffac54 50%, #ff9a2b 100%);
}

.neft-rtgs-page .comparison-table th {
  color: #ffffff;

  font-weight: 600;

  padding: 1.25rem;

  text-align: center;

  border: none;

  font-size: 1.1rem;
}

.neft-rtgs-page .comparison-table td {
  padding: 1.25rem;

  border-color: #f1f5f9;

  text-align: center;

  font-weight: 500;
}

.neft-rtgs-page .comparison-table tbody tr:nth-child(even) {
  background-color: rgba(37, 151, 155, 0.03);
}

.neft-rtgs-page .comparison-table tbody tr:hover {
  background-color: rgba(37, 151, 155, 0.08);

  transform: scale(1.01);

  transition: all 0.2s ease;
}

.neft-rtgs-page .fade-in {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.neft-rtgs-page .fade-in.appear {
  opacity: 1;

  transform: translateY(0);
}

.neft-rtgs-page .floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, -15px);
  }

  100% {
    transform: translate(0, 0px);
  }
}

.neft-rtgs-page .stats-section {
  background: linear-gradient(135deg, #ffbb00 0%, #ffac54 50%, #ff9a2b 100%);

  color: white;

  padding: 80px 0;

  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.neft-rtgs-page .stat-box {
  text-align: center;

  padding: 30px 20px;
}

.neft-rtgs-page .stat-number {
  font-size: 3rem;

  font-weight: 700;

  margin-bottom: 10px;
}

.neft-rtgs-page .stat-text {
  font-size: 1.1rem;

  opacity: 0.9;
}

.neft-rtgs-page ::-webkit-scrollbar {
  width: 8px;
}

.neft-rtgs-page ::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.neft-rtgs-page ::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ffbb00 0%, #ffac54 50%, #ff9a2b 100%);

  border-radius: 10px;
}

.neft-rtgs-page ::-webkit-scrollbar-thumb:hover {
  background: #1d7a7d;
}

.upi-qr-page-ss {
  font-family: 'Poppins', sans-serif;

  background: #fff7d6; 

  color: #1f2937;
}


#upi-qr-page .hero {
  background: linear-gradient(115deg, #ffe387 0%, #ffc548 45%, #ffc374 100%);

  color: #805e00; 

  border-radius: 20px;

  padding: 34px 30px;

  margin-bottom: 50px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#upi-qr-page .hero h1 {
  font-size: 2.3rem;

  font-weight: 700;

  margin-bottom: 15px;

  color: #805e00;
}

#upi-qr-page .hero p {
  font-size: 17px;

  color: #805e00;
}

#upi-qr-page .hero img {
  max-height: 175px;

  border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  transition: transform 0.3s;
}

#upi-qr-page .hero img:hover {
  transform: scale(1.05);
}


.upi-qr-page-ss .feature-card {
  background: #ffffff;

  border-radius: 20px;

  padding: 30px 20px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

  text-align: center;

  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.upi-qr-page-ss .feature-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.upi-qr-page-ss .feature-card i {
  font-size: 3rem;

  color: #ffb038;

  margin-bottom: 15px;

  transition: transform 0.3s;
}

.upi-qr-page-ss .feature-card:hover i {
  transform: rotate(10deg) scale(1.2);
}

.upi-qr-page-ss .feature-card h5 {
  font-weight: 600;

  margin-bottom: 10px;

  color: #805e00;
}

.upi-qr-page-ss .feature-card p {
  color: #5f4a00;
}


#upi-qr-page .qr-box {
  display: inline-block;

  background: #ffffff;

  padding: 30px;

  border-radius: 20px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

  text-align: center;
}

#upi-qr-page .qr-box img {
  max-width: 250px;

  border-radius: 15px;
}

.upi-qr-page-ss .section-title {
  text-align: center;

  font-weight: 700;

  color: #875800; 

  margin-bottom: 2rem;
}

.pm-yojna-page-sec {
  font-family: 'Poppins', sans-serif;

  background: #fffcf5;

  color: #1f2937;
}

.pm-yojna-page-sec .container.my-3 {
  max-width: 1200px;
}

.pm-yojna-page-sec .yojana-card {
  background: #fff;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.pm-yojna-page-sec .yojana-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pm-yojna-page-sec .yojana-card img {
  width: 100%;

  height: 200px;

  object-fit: cover;

  transition: transform 0.3s;
}

.pm-yojna-page-sec .yojana-card:hover img {
  transform: scale(1.05);
}

.pm-yojna-page-sec .yojana-card .card-body {
  padding: 20px;

  text-align: center;
}

.pm-yojna-page-sec .yojana-card .card-title {
  font-size: 1.3rem;

  font-weight: 700;

  margin-bottom: 10px;

  color: #a4880c; 
}

.pm-yojna-page-sec .yojana-card .card-text {
  font-size: 0.95rem;

  color: #4b5563;

  margin-bottom: 15px;
}

.pm-yojna-page-sec .btn-know-more {
  background: linear-gradient(115deg, #ffd700 0%, #ffb300 45%, #ff8c00 100%);

  color: #583c00;

  border: none;

  padding: 8px 20px;

  border-radius: 50px;

  font-weight: 600;

  transition:
    background 0.3s,
    transform 0.3s;

  text-decoration: none;
}

.pm-yojna-page-sec .btn-know-more:hover {
  background: linear-gradient(to right, #ff8c00, #ffb300, #ffd700);

  color: rgb(0, 0, 0);

  transform: scale(1.05);
}

/* Other-service page */

.other-servii-sec {
  font-family: 'Poppins', sans-serif;

  background: #f5f7fb;

  color: #1f2937;
}

.other-servii-sec .cards-column {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.other-servii-sec .service-card {
  background: #fff;

  border-radius: 18px;

  padding: 12px 20px;

  display: flex;

  align-items: center;

  gap: 15px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.4s,
    box-shadow 0.4s,
    background 0.4s;

  cursor: pointer;
}

.other-servii-sec .service-card i {
  font-size: 2rem;

  color: #ffbf00;

  transition:
    transform 0.4s,
    color 0.4s;
}

.other-servii-sec .service-card h6 {
  font-size: 0.95rem;

  font-weight: 600;

  margin: 0;

  transition: color 0.4s;
}

.other-servii-sec .service-card:hover {
  transform: translateY(-8px) scale(1.03);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);

  background: linear-gradient(135deg, #f39d2d 0%, #ffbf3a 40%, #ff9800 100%);
}

.other-servii-sec .service-card:hover i,
.service-card:hover h6 {
  color: #fff;
}

.other-servii-sec .right-img img {
  width: 100%;

  max-height: 500px;

  object-fit: cover; 

  border-radius: 20px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

  transition: transform 0.4s;
}

.other-servii-sec .right-img img:hover {
  transform: scale(1.05);
}

/* sevadar-Page */

.sevadar-main-sec {
  font-family:
    'Poppins',
    system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    Arial;

  background: #fffbe7;

  color: #1f2937;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;
}

.sevadar-main-sec .seva-main-heading {
  color: #663d00;

  text-align: center;

  padding-top: 60px;
}

.sevadar-main-sec .preview {
  max-width: 980px;

  margin: 28px auto 18px;

  padding: 18px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.8)
  );

  border-radius: 14px;

  box-shadow: 0 10px 30px rgba(10, 20, 30, 0.06);

  display: flex;

  gap: 18px;

  align-items: center;

  flex-wrap: wrap;
}

.sevadar-main-sec .preview .img-wrap {
  flex: 0 0 220px;

  max-width: 220px;

  border-radius: 10px;

  overflow: hidden;

  border: 4px solid rgba(12, 164, 157, 0.08);

  background: #fff;
}

.sevadar-main-sec .preview img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.sevadar-main-sec .preview .meta {
  flex: 1 1 69px;

  min-width: 220px;
}

.sevadar-main-sec .preview h1 {
  margin: 0 0 6px;

  font-size: 20px;

  color: #663d00;

  font-weight: 700;
}

.sevadar-main-sec .preview p {
  margin: 0;
  color: #6b665b;
  font-size: 14px;
}


.sevadar-main-sec .table-card {
  background: #ffffff;

  border-radius: 12px;

  padding: 22px;

  max-width: 1100px;

  margin: 18px auto;

  box-shadow: 0 12px 30px rgba(15, 23, 26, 0.06);
}

.sevadar-main-sec .section-title {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 12px;
}

.sevadar-main-sec .section-title h2 {
  margin: 0;
  font-size: 18px;
  color: #663d00;

  font-weight: 700;
}

.sevadar-main-sec .section-title .pill {
  background: linear-gradient(90deg, #663d00, #663d00);

  width: 44px;
  height: 6px;
  border-radius: 8px;
  display: block;
}

.sevadar-main-sec table.modern {
  width: 100%;

  border-collapse: collapse;

  font-size: 14px;

  color: #243246;
}

.sevadar-main-sec table.modern thead th {
  background: linear-gradient(
    90deg,
    rgba(155, 114, 37, 0.08),
    rgba(164, 141, 12, 0.04)
  );

  color: #604c0b;

  padding: 12px 10px;

  text-align: left;

  font-weight: 700;

  border-bottom: 1px solid rgba(15, 23, 26, 0.06);
}

.sevadar-main-sec table.modern tbody td {
  padding: 10px;

  text-align: start;

  vertical-align: top;

  border-bottom: 1px dashed rgba(15, 23, 26, 0.05);
}

.sevadar-main-sec table.modern tbody tr:hover td {
  background: linear-gradient(
    90deg,
    rgba(37, 151, 155, 0.02),
    rgba(12, 164, 157, 0.01)
  );
}

.sevadar-main-sec .small-muted {
  color: #6b665b;
  font-size: 13px;
}

.sevadar-main-sec .table-responsive-modern {
  overflow-x: auto;

  -webkit-overflow-scrolling: touch;

  margin-top: 10px;
}

.sevadar-main-sec .note {
  margin-top: 14px;

  color: #6b665b;

  font-size: 13px;

  text-align: right;
}

.branches-sec {
  padding: 60px 0;

  background: linear-gradient(180deg, #fffbef, #fffbf1);
}

.branches-sec .branches-title {
  text-align: center;

  font-size: 34px;

  font-weight: 700;

  color: #b35a00;

  margin-bottom: 30px;
}

.branches-sec .branch-search {
  position: relative;

  max-width: 420px;

  margin: 0 auto 35px;
}

.branches-sec #branchSearch {
  width: 100%;

  padding: 14px 18px 14px 45px;

  border: 2px solid #ffd685;

  border-radius: 50px;

  font-size: 17px;

  outline: none;

  transition: 0.25s;
}

.branches-sec #branchSearch:focus {
  border-color: #ff9800;

  box-shadow: 0 0 10px rgba(0, 119, 182, 0.25);
}

.branches-sec .branch-search i {
  position: absolute;

  top: 12px;

  left: 14px;

  font-size: 20px;

  color: #ff9800;
}

.branches-sec .branches-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.branches-sec .branch-card {
  background: #ffffff;

  padding: 25px;

  border-radius: 18px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);

  transition: 0.3s;

  border-left: 5px solid #ffc369;

  cursor: pointer;

  position: relative;

  overflow: hidden;

  display: block;
}

.branches-sec .branch-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.branches-sec .branch-card h3 {
  font-size: 21px;

  font-weight: 700;

  margin-bottom: 10px;

  color: #8a5300;
}

.branches-sec .branch-card p {
  margin: 4px 0;

  color: #5c4631;

  font-size: 16px;
}

.branches-sec .branch-card p i {
  font-size: 20px;
  margin-right: 1px;
}

.branches-sec .branch-card button {
  margin-top: 12px;

  background: linear-gradient(135deg, #ffca6b 0%, #ffab5c 100%);

  border: none;

  padding: 8px 14px;

  color: #693912;

  border-radius: 8px;

  font-size: 15px;

  font-weight: 500;

  transition: 0.25s;
}

.branches-sec .branch-card button:hover {
  background: linear-gradient(135deg, #ffbb47 0%, #ffa034 100%);

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.35);

  color: seashell;
}

.branches-sec .branch-card::before {
  content: '';

  position: absolute;

  top: -80px;

  left: -80px;

  width: 160px;

  height: 160px;

  background: rgba(255, 179, 64, 0.12);

  border-radius: 50%;

  transition: 0.5s;
}

.branches-sec .branch-card:hover::before {
  transform: translate(180px, 180px);
}

.branches-sec .branch-card:hover button {
  background: linear-gradient(135deg, #ffbb47 0%, #ffa034 100%);

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.35);

  color: seashell;
}

.pragati-page-seccc {
  font-family: 'Poppins', sans-serif;

  background: linear-gradient(120deg, #ffd84d 10%, #ffb86a 100%);

  margin: 0;

  padding: 0;
}

.pragati-page-seccc h1 {
  font-family: 'Baloo 2', cursive;

  font-size: 32px;

  margin-bottom: 20px;

  color: #222;

  text-align: center;
}

.pragati-page-seccc .container {
  width: 95%;

  max-width: 1200px;

  margin: auto;

  padding: 20px 0;
}

.pragati-page-seccc .card {
  background: #fff;

  padding: 25px;

  border-radius: 20px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);

  margin-bottom: 35px;
}

.pragati-page-seccc table {
  width: 100%;

  border-collapse: collapse;

  margin-top: 15px;

  background: white;

  border-radius: 10px;

  overflow: hidden;
}

.pragati-page-seccc table th,
.pragati-page-seccc table td {
  padding: 12px 10px;

  border: 1px solid #979797;

  text-align: center;

  font-size: 15px;
}

.pragati-page-seccc table th {
  background: #ffe08c;

  font-weight: 600;
}

.pragati-page-seccc .table-scroll {
  width: 100%;

  overflow-x: auto;
}

.pragati-page-seccc .deposit-info {
  font-family: 'Noto Sans Devanagari', sans-serif;

  margin-top: 40px;
}

.pragati-page-seccc .notice-wrapper {
  border: 2px solid #333;

  padding: 25px;

  max-width: 800px;

  background: #fff;

  margin: auto;
}

.pragati-page-seccc .bank-logo {
  width: 90px;

  margin-bottom: 10px;
}

.pragati-page-seccc .notice-header {
  text-align: center;
}

.pragati-page-seccc .notice-header h3 {
  font-weight: 700;

  margin-bottom: 5px;

  font-size: 22px;
}

.pragati-page-seccc .sub-title {
  font-weight: bold;

  font-size: 20px;
}

.pragati-page-seccc .table-caption {
  font-size: 18px;

  font-weight: 600;
}

.pragati-page-seccc .info-table {
  width: 100%;

  border-collapse: collapse;

  margin-bottom: 15px;
}

.pragati-page-seccc .info-table th,
.info-table td {
  border: 2px solid #000 !important;

  padding: 10px;

  text-align: center;
}

.footer-box {
  border: 2px solid #000;

  padding: 15px;

  font-size: 14px;

  line-height: 1.5;
}

.pragati-page-seccc .sign {
  font-weight: 600;

  font-size: 15px;

  text-align: right;
}

.contact-sec {
  padding: 70px 0;

  background: linear-gradient(180deg, #fff7e0, #fff4d9);
}

.contact-sec .contact-wrapper {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 35px;

  align-items: center;
}

.contact-sec .contact-title {
  font-size: 36px;

  font-weight: 700;

  color: #b35a00;

  margin-bottom: 25px;
}

.contact-sec .contact-box {
  background: #ffffff;

  padding: 18px 22px;

  border-radius: 14px;

  margin-bottom: 18px;

  border-left: 6px solid #ffb340;

  box-shadow: 0 5px 15px rgba(255, 145, 0, 0.1);

  transition: 0.25s;
}

.contact-sec .contact-box:hover {
  transform: translateY(-4px);

  box-shadow: 0 12px 22px rgba(255, 145, 0, 0.18);
}

.contact-sec .contact-box h3 {
  margin: 0 0 4px;

  font-size: 20px;

  font-weight: 700;

  color: #b35a00;
}

.contact-sec .contact-box p {
  margin: 0;

  color: #5c4631;

  line-height: 1.55;

  font-size: 15px;
}

.contact-sec .contact-map {
  width: 100%;

  height: 420px;

  border-radius: 16px;

  overflow: hidden;

  box-shadow: 0 10px 26px rgba(255, 152, 0, 0.2);

  border: 4px solid #ffb340;
}

.contact-sec .contact-map iframe {
  width: 100%;

  height: 100%;

  border: 0;
}

.cyber-sec-page {
  background: #fff8e6;

  font-family: 'Poppins', sans-serif;
}

.cyber-sec-page .page-header {

  padding-top: 40px;

  color: #fff;

  text-align: center;
}

.cyber-sec-page .security-card {
  background: white;

  padding: 25px;

  border-radius: 18px;

  border: 1px solid #f5d9a6;

  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);

  transition: 0.3s;

  height: 100%;
}

.cyber-sec-page .security-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);

  border-color: #f3a21a;
}

.cyber-sec-page .security-icon {
  background: linear-gradient(135deg, #f39d2d 0%, #ffbf3a 40%, #ff9800 100%);

  color: #fff;

  width: 70px;

  height: 70px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 15px;

  font-size: 2rem;

  margin-bottom: 18px;
}

.cyber-sec-page .alert-box {
  background: white;

  border-left: 6px solid #ff8906;

  border-radius: 12px;

  padding: 25px;

  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
}

.cyber-sec-page .list-check li {
  padding: 8px 0;

  font-size: 1.05rem;
}

.cyber-sec-page .list-check i {
  color: #22b573;

  margin-right: 6px;
}

.cyber-sec-page .list-cross li i {
  color: #e63946;

  margin-right: 6px;
}

.grievance-page-sec .bank-wrapper {
  background: #fffdf2;

  min-height: 100vh;

  display: flex;

  justify-content: center;

  padding: 40px 20px;
}

.grievance-page-sec .bank-form-card {
  background: #ffffff;

  width: 100%;

  max-width: 950px;

  padding: 35px 40px;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  border-top: 5px solid #ce8f1b;

  animation: fadeUp 0.6s ease;
}

.grievance-page-sec .bank-title {
  font-size: 28px;

  font-weight: 700;

  color: #ce8f1b;

  margin-bottom: 5px;

  text-align: center;
}

.grievance-page-sec .bank-subtitle {
  font-size: 14px;

  color: #6c757d;

  text-align: center;

  margin-bottom: 25px;
}

.grievance-page-sec .bank-input {
  position: relative;

  margin-bottom: 28px;
}

.grievance-page-sec .bank-input input,
.bank-input select,
.bank-input textarea {
  width: 100%;

  padding: 14px 12px;

  border: 1.6px solid #cfd7e3;

  border-radius: 8px;

  font-size: 15px;

  background: transparent;

  outline: none;

  transition: 0.25s;
}

.grievance-page-sec .bank-input input:focus,
.bank-input select:focus,
.bank-input textarea:focus {
  border-color: #ce8f1b;

  box-shadow: 0 0 0 3px rgba(26, 79, 194, 0.1);
}

.grievance-page-sec .bank-input label {
  position: absolute;

  left: 14px;

  top: 14px;

  color: #6d6d6d;

  background: #fff;

  padding: 0 6px;

  transition: 0.25s;

  pointer-events: none;
}

.grievance-page-sec .select-label {
  top: -10px !important;

  font-size: 12px !important;
}

.grievance-page-sec .bank-input input:focus ~ label,
.bank-input input:valid ~ label,
.bank-input textarea:focus ~ label,
.bank-input textarea:valid ~ label {
  top: -10px;

  left: 10px;

  font-size: 12px;

  color: #ce8f1b;
}

.grievance-page-sec .textarea-box textarea {
  height: 120px;

  resize: none;
}

.grievance-page-sec .bank-btn {
  display: flex;

  align-items: center;

  justify-content: center;

  background: #c2a31a;

  border: none;

  padding: 14px;

  color: #fff;

  border-radius: 8px;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.grievance-page-sec .bank-btn:hover {
  background: #8e6211;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-section {
  padding: 60px 0;
  background: #fff9ed;
}

.info-section .container {
  max-width: 1200px;
}

.info-section .modern-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  height: 100%;
  border-top: 4px solid #ffd84d;
}

.info-section .modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(255, 184, 106, 0.25);
}

.info-section .card-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.info-section .card-heading::after {
  content: '';
  width: 60px;
  height: 3px;
  background: linear-gradient(120deg, #ffd84d 10%, #ffb86a 100%);
  display: block;
  margin-top: 8px;
  border-radius: 5px;
}

.info-section .news-list {
  list-style: none;
  padding: 0;
}

.info-section .news-list a {
  text-decoration: none;
  color: inherit;
}

.info-section .news-list i {
  color: #e69500; 
  font-size: 16px;
}

.info-section .news-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  transition: 0.3s ease;
}

.info-section .news-list li:hover {
  color: #cc8400;
  padding-left: 5px;
}

.info-section .award-grid img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
}

.info-section .award-grid img:hover {
  transform: scale(1.05);
}

.info-section .iso-card {
  background: linear-gradient(120deg, #ffd84d 10%, #ffb86a 100%);
  color: #333;
  padding: 40px 20px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.info-section .text-slider {
  position: relative;
  height: 100%;
}

.info-section .slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  animation: info-fadeSlide 12s infinite;
}

.info-section .slide:nth-child(1) {
  animation-delay: 0s;
}

.info-section .slide:nth-child(2) {
  animation-delay: 3s;
}

.info-section .slide:nth-child(3) {
  animation-delay: 6s;
}

.info-section .slide:nth-child(4) {
  animation-delay: 9s;
}

@keyframes info-fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  5% {
    opacity: 1;
    transform: translateY(0);
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
  }
}

.info-section .iso-card h2 {
  font-size: 32px;
  font-weight: bold;
  margin: 15px 0;
}

.info-section .iso-card p {
  font-size: 18px;
  margin-top: 10px;
}

.pragati-tapsil-th {
  text-align: left !important;
}

.input-group {
  position: relative;
  width: 100%;
}

.input-prefix,
.input-suffix {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
  font-weight: 600;
  pointer-events: none;
}

.input-prefix {
  left: 10px;
}

.input-suffix {
  right: 10px;
}

.emi-input-box {
  width: 100%;
  padding: 8px 30px; 
  border-radius: 8px;
  border: 1px solid #ccc;
  font-weight: 600;
  margin: 7px 0px;
}

.input-prefix + .emi-input-box {
  padding-left: 30px;
}

.input-group .emi-input-box {
  padding-right: 30px;
}

/*************************** All Media Query Starting  **************************/

@media (max-width: 1300px) {
  .navbar-custom .navbar-nav li {
    margin: 0px 5px;
  }

  .navbar-custom .nav-link {
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .navbar-custom .navbar-nav li {
    margin: 0px 0px;
  }

  .neft-rtgs-page .page-hero {
    padding: 100px 0 70px;
  }

  .neft-rtgs-page .section-title {
    font-size: 2.3rem;
  }

  .neft-rtgs-page .service-icon {
    font-size: 3.5rem;
  }

  .neft-rtgs-page .card-body {
    padding: 2rem;
  }

  .index-emi-cal .emi-calc-content {
    flex-direction: column;

    padding: 35px;

    gap: 35px;
  }

  .index-emi-cal .emi-input-area,
  .emi-result-area {
    width: 100%;
  }

  .index-emi-cal .emi-amount-show {
    font-size: 2.2rem;
  }

  .index-emi-cal .emi-display-amount {
    font-size: 2rem;
  }

  .index-digital-sec .digital-box {
    padding: 60px 60px;
  }

  .index-digital-sec .digital-left h2 {
    font-size: 38px;
  }

  .index-digital-sec .digital-right img {
    width: 260px;
  }

  .bank-footer .footer-top {
    grid-template-columns: 1fr 1fr;

    gap: 30px;
  }

  /********* New Banking Service Index ***********/

  .services-content-area {
    padding: 30px;
  }

  .bank-header .bank-left img {
    height: 100px;
  }
}

@media (max-width: 1024px) {
  .index-new-service .services-content-area {
    width: 65%;

    padding: 30px 20px;
  }

  .index-new-service .visual-image-area {
    width: 35%;
  }

  .index-new-service .services-grid {
    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1004px) {
  .navbar-custom .nav-link {
    font-size: 15px;
  }
}

@media screen and (min-width: 1198px) and (max-width: 1270px) {
  .navbar-custom .navbar-nav li {
    margin: 0px 9px;
  }
}

/* ===== Responsive (below 992px) ===== */

@media (max-width: 992px) {
  .chevron {
    transition: transform 0.3s ease;
  }

  .dropdown.show > a .chevron {
    transform: rotate(180deg);
  }

  .bank-left {
    width: 69%;
  }

  .bank-header .bank-left img {
    width: 100%;
  }

  .navbar-ff-left {
    display: flex;

    position: absolute;

    top: 5px;

    left: 26px;

    height: 71px;
  }

  .navbar-custom .nav-link::after {
    display: none;
  }

  .navbar-custom {
    position: fixed;

    top: 0px;

    right: -100%;

    align-items: start;

    width: 100%;

    height: 100vh;

    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);

    transition: right 0.5s ease-in-out;

    z-index: 999;

    padding-top: 100px;

    overflow-y: auto;
  }

  #menu-toggle:checked ~ .navbar-custom {
    right: 0;
  }

  .hamburger {
    position: relative;

    z-index: 1001;
  }

  .hamburger input {
    display: none;
  }

  .hamburger span {
    display: block;

    width: 30px;

    height: 3px;

    background: #0e4153 !important;

    border-radius: 3px;

    transition: all 0.4s ease;
  }

  #menu-toggle:checked + span {
    transform: rotate(45deg) translate(5px, 6px);
  }

  #menu-toggle:checked + span + span {
    opacity: 0;
  }

  #menu-toggle:checked + span + span + span {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .bank-right a {
    display: none;
  }

  .bank-header {
    position: sticky;

    top: 0 !important;

    z-index: 999;

    justify-content: space-between;

    text-align: center;
  }

  .bank-header .bank-right img {
    display: none;
  }

  .navbar-custom .navbar-controls {
    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 10px 15px;
  }

  .navbar-custom .navbar-collapse {
    margin-top: 6px;

    text-align: center;

    justify-content: center !important;

    width: 100%;
  }

  .navbar-custom .navbar-nav {
    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: start;

    gap: 6px;
  }

  .navbar-custom .nav-link {
    padding: 10px;

    font-size: 16px;

    justify-content: start;

    width: 100%;

    text-align: center;
  }
  .navbar-custom .dropdown-menu {
    position: static !important;

    float: none;

    width: 100%;

    background-color: #fff8e1; 

    border: none;

    box-shadow: none;

    margin: 0;

    padding: 0;

    display: none;

    animation: fadeIn 0.2s ease; 
  }

  .navbar-custom .dropdown.show > .dropdown-menu {
    display: block !important;

    width: 94vw;
  }

  .navbar-custom .dropdown-item {
    font-size: 16px;

    padding: 12px 20px;

    border-bottom: 1px solid #f0f0f0;

    font-weight: 500;

    color: #212529;

    transition: all 0.3s ease;
  }

  .navbar-custom .dropdown-item:hover {
    background-color: #fff;

    color: #0e3469;

    padding-left: 30px;

    box-shadow: inset 4px 0 0 #ff7043;
  }

  .navbar-custom .dropdown-submenu.show > .dropdown-menu {
    display: block !important;
  }

  .counter {
    font-size: 1.9rem;
  }

  .trustworthy-div1 {
    font-size: 56px;

    line-height: 55px;
  }

  .trustworthy-header-new {
    gap: 23px;
  }

  .trustworthy-div2 {
    font-size: 15px;

    letter-spacing: 0.7px;

  }

  /****************** media992 Index EMI Calcutor ****************/

  .index-emi-cal .emi-calc-wrapper {
    max-width: 95%;
  }

  .index-emi-cal .emi-calc-content {
    padding: 30px;

    gap: 30px;
  }

  .index-emi-cal .emi-amount-show {
    font-size: 2.2rem;
  }

  .index-emi-cal .emi-display-amount {
    font-size: 2rem;
  }

  .index-emi-cal .emi-input-block label {
    font-size: 1.1rem;
  }

  .index-emi-cal .emi-summary-label,
  .emi-summary-value {
    font-size: 1.05rem;
  }

  .index-digital-sec .digital-box {
    padding: 50px 40px;

    gap: 25px;
  }

  .index-digital-sec .digital-left h2 {
    font-size: 34px;
  }

  .index-digital-sec .digital-right img {
    width: 240px;
  }

  .home-loan-sec .loan-tabs-wrapper {
    overflow-x: scroll;

    top: 116px;

    white-space: nowrap;

    padding-left: 15px; 

    padding-right: 15px;
  }

  .home-loan-sec .loan-tabs {
    flex-wrap: nowrap !important;
  }

  .home-loan-sec .loan-tabs .nav-item {
    flex: 0 0 auto;
  }

  .home-loan-sec .left-box {
    width: auto;
  }

  #carouselExampleIndicators .carousel-item img {
    height: 330px; 

  }

  /******* Media992 Bank History Page ********/

  .bank-history-main-page .bank-history {
    flex-direction: column;

    text-align: center;

    padding: 40px 4%;
  }

  .bank-history-main-page .bank-text,
  .bank-slider {
    margin-top: 0px;

    width: 100%;

    height: auto;
  }

  .bank-history-main-page .carousel-item img {
    height: 300px; 

    object-fit: cover;
  }

  .bank-history-main-page .bank-text ul {
    list-style-type: none;
  }

  .deposit-section-page .row > .col-lg-4,
  .row > .col-lg-8 {
    width: 100%;

    max-width: 100%;

    flex: 0 0 100%;
  }

  .deposit-section-page .sidebar-card-container {
    padding-right: 8px;

    margin-bottom: 30px;
  }

  .deposit-section-page .row.g-4 > div {
    flex: 0 0 50%;

    max-width: 50%;
  }

  .deposit-section-page .gradient-text {
    color: #00306e;

    font-size: 33px;
  }

  .neft-rtgs-page .page-section {
    padding: 70px 0;
  }

  .neft-rtgs-page .page-hero {
    padding: 90px 0 60px;
  }

  .neft-rtgs-page .hero-title {
    font-size: 2.5rem;

    text-align: center;
  }

  .neft-rtgs-page .hero-subtitle {
    text-align: center;
  }

  .neft-rtgs-page .section-title {
    font-size: 2.2rem;
  }

  .neft-rtgs-page .service-icon {
    font-size: 3.2rem;
  }

  .neft-rtgs-page .card-body {
    padding: 1.8rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .neft-rtgs-page .comparison-table th,
  .comparison-table td {
    padding: 1rem 0.8rem;

    font-size: 0.95rem;
  }

  .pm-yojna-page-sec .yojana-card img {
    height: 180px;
  }

  .other-servii-sec .row-flex {
    flex-direction: column-reverse;
  }

  .other-servii-sec .cards-column {
    flex-direction: row;

    flex-wrap: wrap;

    justify-content: center;

    gap: 15px;

    margin-bottom: 15px;
  }

  .other-servii-sec .service-card {
    width: 45%;
  }

  .other-servii-sec .right-img {
    margin-bottom: 30px;
  }

  .sevadar-main-sec .preview {
    padding: 14px;

    gap: 14px;
  }

  .sevadar-main-sec .preview .img-wrap {
    flex-basis: 180px;

    max-width: 180px;
  }

  .sevadar-main-sec .preview h1 {
    font-size: 18px;
  }

  .sevadar-main-sec .table-card {
    padding: 18px;
  }

  .sevadar-main-sec table.modern thead th {
    font-size: 14px;
  }

  .sevadar-main-sec table.modern tbody td {
    font-size: 13.5px;
  }

  .contact-sec .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-sec .contact-map {
    height: 350px;
  }

  .info-section .iso-card {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .bank-header {
    padding: 6px 10px;
  }

  .bank-title h1 {
    font-size: 1.5rem;
  }

  .bank-title h2 {
    font-size: 15px;
  }

  .bank-title p {
    font-size: 0.9rem;
  }

  #carouselExampleIndicators .carousel-item img {
    height: 280px;

  }

  .custom-carousel-indicators button {
    border: 0 !important;

    width: 10px !important;

    height: 10px !important;

    /* गोल बनाने के लिए */

    border-radius: 50% !important;

    opacity: 0.5 !important;

    background-color: #fff !important;
  }

  .custom-carousel-indicators button.active {
    opacity: 1 !important;

    background-color: #ffffff !important;
  }

  .Home-important-marquee .breaking-news-content {
    padding: 6px 10px;
  }

  .Home-important-marquee .separator {
    margin: 0 8px;
  }

  .index-emi-cal .emi-calc-wrapper {
    max-width: 95%;

    border-radius: 20px;
  }

  .index-emi-cal .emi-calc-content {
    padding: 25px;

    gap: 25px;
  }

  .index-emi-cal .emi-calc-header {
    padding: 25px;
  }

  .index-emi-cal .emi-calc-header h1 {
    font-size: 1.8rem;
  }

  .index-emi-cal .emi-calc-header p {
    font-size: 1rem;
  }

  .index-emi-cal .emi-amount-show {
    font-size: 2.2rem;
  }

  .index-emi-cal .emi-display-amount {
    font-size: 2.2rem;
  }

  .index-emi-cal .emi-input-block {
    margin-bottom: 30px;
  }

  .index-emi-cal .emi-action-btn {
    padding: 16px 24px;

    font-size: 1.1rem;
  }

  .index-digital-sec .digital-box {
    flex-direction: column;

    text-align: center;

    padding: 40px 30px;
  }

  .index-digital-sec .digital-left,
  .digital-right {
    width: 100%;
  }

  .index-digital-sec .digital-left ul li {
    text-align: left;
  }

  .index-digital-sec .circle {
    width: 250px;

    height: 250px;
  }

  .index-digital-sec .digital-right img {
    width: 220px;

    padding: 30px 20px;
  }

  .bank-footer .footer-top {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .bank-footer .footer-bottom {
    flex-direction: column;

    text-align: center;
  }

  .bank-footer .footer-legal {
    justify-content: center;
  }

  .ff-digs-lg {
    margin-top: 18px;
  }

  .index-new-service {
    background: linear-gradient(135deg, #0d9488 0%, #135870 100%);

    color: #fff;

    margin-top: 35px;

    min-height: auto;
  }

  .index-new-service .main-layout {
    background: none;

    box-shadow: none;

    border: none;

    flex-direction: column;

    width: 100%;

    margin: 0;

    min-height: auto;

    height: auto;

    border-radius: 0;

    overflow: visible;
  }

  .index-new-service .services-content-area {
    width: 100%;

    padding: 35px 15px;

    overflow-y: visible;

    background: linear-gradient(135deg, #ffb13c 0%, #ffc78a 100%);
  }

  .index-new-service .visual-image-area {
    display: none;
  }

  .index-new-service .services-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
  }

  .index-new-service .section-title {
    font-size: 2.2rem;

    margin-bottom: 21px;

    color: #3a2a00;

    text-align: center;
  }

  .index-new-service .service-card {
    background: rgb(0 0 0);

    height: 100px;

    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .index-new-service .service-card .icon {
    color: #fce38a;
  }

  .index-new-service .service-card .service-name {
    color: #fff;
  }

  .banner {
    height: 260px;
  }

  .banner-text {
    left: 20px;

    padding: 14px 22px;
  }

  .banner-text h1 {
    font-size: 2rem;
  }

  .home-loan-sec .feature-box {
    padding: 28px 18px;
  }

  .home-loan-sec .section-title {
    font-size: 1.8rem;
  }

  .home-loan-sec .f-title {
    font-size: 1.1rem;
  }

  .home-loan-sec .left-box {
    width: auto;
  }

  .home-loan-sec .eligibility-single {
    padding: 30px;
  }

  .eligibility-header {
    flex-direction: row;

    gap: 15px;
  }

  .home-loan-sec h3 {
    font-size: 1.6rem !important;
  }

  .home-loan-sec .eligibility-list li {
    font-size: 0.95rem;
  }

  .home-loan-sec .section-title {
    font-size: 1.5rem;
  }

  .home-loan-sec .doc-list li {
    font-size: 1rem;

    padding: 10px 14px;
  }

  .home-loan-sec .limit-card {
    padding: 3rem 2rem;
  }

  .home-loan-sec .repay-card {
    padding: 3rem 2rem;
  }

  .home-loan-sec .limit-card {
    max-width: 420px;
  }

  .home-loan-sec .section-title {
    font-size: 1.8rem;
  }

  .home-loan-sec .icon-box {
    width: 45px;

    height: 45px;

    font-size: 1.2rem;
  }

  .home-loan-sec .repay-item h5 {
    font-size: 1rem;
  }

  .home-loan-sec .doc-item {
    flex-direction: column;

    text-align: center;

    align-items: center;
  }

  .home-loan-sec .doc-icon {
    margin-bottom: 10px;
  }

  .home-loan-sec .loan-tabs-wrapper {
    top: 99px;
  }

  .home-loan-sec .loan-tabs {
    flex-wrap: nowrap !important;

    justify-content: flex-start !important;
  }

  .board-of-director-sec .director-card {
    height: 250px;

    padding: 20px 10px;
  }

  .board-of-director-sec .section-title {
    font-size: 2rem;
  }

  .board-of-director-sec .subsection-title {
    font-size: 1.5rem;
  }

  .deposit-section-page h1 {
    font-size: 1.5rem;
  }

  .deposit-section-page .sidebar-card-container {
    padding-right: 0;

    margin-bottom: 20px;
  }

  .deposit-section-page .main-content-section {
    padding: 31px 13px;

    border-radius: 0;
  }

  .deposit-section-page .rate-card {
    margin-bottom: 15px;

    transform: none !important;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .deposit-section-page .rate-card:hover {
    transform: none !important;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .deposit-section-page .table-responsive {
    width: 100%;

    overflow-x: auto;
  }

  .deposit-section-page .deposit-table tbody tr:hover {
    background-color: transparent !important;

    transform: none !important;

    box-shadow: none !important;

    cursor: default;
  }

  .deposit-section-page .deposit-table tbody tr:nth-child(even) {
    background-color: #ffffff;
  }

  .interest-rate-pagg {
    font-size: 14px;
  }

  .interest-rate-pagg th,
  td {
    padding: 8px 10px; 

    font-size: 0.8rem; 
  }

  .interest-rate-pagg table {
    min-width: 750px;
  }

  .interest-rate-pagg td:first-child {
    min-width: 180px;
  }

  .neft-rtgs-page .page-section {
    padding: 60px 0;
  }

  .neft-rtgs-page .page-hero {
    padding: 80px 0 50px;

    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }

  .neft-rtgs-page .hero-title {
    font-size: 2.2rem;

    margin-bottom: 1rem;
  }

  .neft-rtgs-page .hero-subtitle {
    font-size: 1.1rem;

    margin-bottom: 1.5rem;
  }

  .neft-rtgs-page .section-title {
    font-size: 2rem;

    margin-bottom: 2.5rem;
  }

  .neft-rtgs-page .service-card {
    margin-bottom: 25px;

    max-width: 400px;

    margin-left: auto;

    margin-right: auto;
  }

  .neft-rtgs-page .service-icon {
    font-size: 3rem;
  }

  .neft-rtgs-page .card-body {
    padding: 1.5rem;
  }

  .neft-rtgs-page .card-title {
    font-size: 1.4rem;
  }

  .neft-rtgs-page .btn-primary {
    padding: 10px 25px;

    font-size: 0.95rem;
  }

  .neft-rtgs-page .stats-section {
    padding: 60px 0;

    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  }

  .neft-rtgs-page .stat-box {
    padding: 20px 15px;
  }

  .neft-rtgs-page .stat-number {
    font-size: 2.2rem;
  }

  .neft-rtgs-page .stat-text {
    font-size: 1rem;
  }

  .neft-rtgs-page .comparison-table {
    font-size: 0.9rem;
  }

  .neft-rtgs-page .comparison-table th,
  .comparison-table td {
    padding: 0.8rem 0.6rem;

    font-size: 0.9rem;
  }

  /* Upi & OR */

  #upi-qr-page .hero h1 {
    font-size: 2rem;
  }

  #upi-qr-page .hero p {
    font-size: 1rem;
  }

  .pm-yojna-page-sec .yojana-card img {
    height: 160px;
  }

  .pm-yojna-page-sec .yojana-card .card-title {
    font-size: 1.1rem;
  }

  .pm-yojna-page-sec .yojana-card .card-text {
    font-size: 0.9rem;
  }

  .sevadar-main-sec .preview {
    flex-direction: column;

    text-align: center;
  }

  .sevadar-main-sec .preview .img-wrap {
    margin: 0 auto;

    flex-basis: 137px;

    max-width: 200px;
  }

  .sevadar-main-sec .meta {
    text-align: center;
  }

  .sevadar-main-sec .table-card {
    padding: 22px 16px;

    margin: 10px;
  }

  .sevadar-main-sec table.modern {
    font-size: 13px;

    min-width: 650px; 
  }

  .sevadar-main-sec table.modern thead th {
    font-size: 13px;

    padding: 8px;
  }

  .sevadar-main-sec table.modern tbody td {
    font-size: 12.8px;

    padding: 7px;
  }

  .sevadar-main-sec .seva-main-heading {
    color: #09aaaa;

    text-align: center;

    padding-top: 34px;

    font-size: 29px !important;
  }

  .sevadar-main-sec h2 {
    font-size: 16px !important;
  }

  .branches-sec .branches-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cyber-sec-page .security-card {
    text-align: center;
  }

  .cyber-sec-page .security-icon {
    margin: 0 auto 15px;
  }

  .bank-footer .bank-logo {
    display: inline-block;
  }
}

@media (max-width: 576px) {


  .navbar-ff-left{
    display: flex;
        justify-content: space-between;
        align-items: center;
        left: 4px;
  }


  .andar-logo-head {
    width: 74%;
  }

  .home-loan-sec .repay-item p {
    font-size: 1rem;
  }

  #carouselExampleIndicators .carousel-item img {
    height: 230px;
  }

  .bank-header .bank-right img {
    display: none;
  }

  .bank-title h1 {
    font-size: 20px;
  }

  .bank-header .bank-left img {
    width: 90%;
    height: 55px;
  }

  .bank-header .bank-left {
    gap: 8px;
  }

  .hamburger {
    width: 42px;
  }

  .bank-title h2 {
    font-size: 15px;
  }

  .bank-title p {
    font-size: 0.9rem;
  }

  .bank-header {
    padding: 8px 11px 8px 0px !important;
  }

  .custom-carousel-indicators button {
    width: 6px !important;

    height: 6px !important;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 38px;

    height: 38px;

    border-radius: 12px; 
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 14px;

    height: 14px;
  }

  .carousel-control-prev-icon::after,
  .carousel-control-next-icon::after {
    width: 8px;

    height: 8px;

    border-width: 0 2px 2px 0; 
  }

  .Home-important-marquee .breaking-news-content {
    padding: 5px 8px;
  }

  .Home-important-marquee .news-icon {
    font-size: 0.8em;

    margin-right: 5px;
  }

  .Home-important-marquee .separator {
    margin: 0 6px;
  }

  .Home-important-marquee .news-item {
    font-size: 0.9em;
  }

  .Home-important-marquee .breaking-news-content {
    padding: 0px 10px;
  }

  .Home-important-marquee .news-item {
    font-size: 12px;

    font-weight: 500;
  }

  .Home-important-marquee .breaking-news-container {
    margin-bottom: 5px;
  }

  .banking-services {
    padding: 10px 20px 50px;
  }

  .banking-services .section-title {
    font-size: 26px;
  }

  .banking-services .section-subtitle {
    font-size: 12px;

    margin-bottom: 32px;
  }

  .banking-services .services-grid {
    padding: 0px 0px 0px;
  }

  .banking-services .service-card h3 {
    font-size: 17px;
  }

  .banking-services .service-card p {
    color: #666;

    font-size: 14px;
  }

  .counter-box {
    width: 85%;
  }

  .counter {
    font-size: 1.6rem;
  }

  .trustworthy-div1 {
    font-size: 41px;

    font-weight: 500;

    line-height: 35px;
  }

  .trustworthy-header-new {
    gap: 4px;
  }

  .trustworthy-div2 {
    font-size: 12px;

    letter-spacing: 0.5px;

  }

  .interest-section {
    padding: 25px 0;
  }

  .interest-section .section-title {
    font-size: 25px;

    font-weight: 700;

    margin-bottom: 11px;
  }

  .interest-section .section-subtitle {
    font-size: 14px;

    margin-bottom: 33px;
  }

  .interest-section h3 {
    font-size: 23px;
  }

  .interest-section .rate {
    font-size: 25px;
  }

  .interest-section .desc {
    font-size: 15px;
  }

  .interest-section .btn-learn {
    font-size: 15px;
  }

  /************ media576 Index EMI Calculator *************/

  .index-emi-cal .emi-calc-wrapper {
    max-width: 95%;

    border-radius: 18px;
  }

  .index-emi-cal .emi-calc-content {
    padding: 20px;

    gap: 20px;
  }

  .index-emi-cal .emi-calc-header {
    padding: 22px;
  }

  .index-emi-cal .emi-calc-header h1 {
    font-size: 1.6rem;
  }

  .index-emi-cal .emi-calc-header p {
    font-size: 0.95rem;
  }

  .index-emi-cal .emi-amount-show {
    font-size: 1.7rem;

    margin: 0px 0 10px;
  }

  .index-emi-cal .emi-display-amount {
    font-size: 1.7rem;
  }

  .index-emi-cal .emi-display-box {
    padding: 25px;

    margin-bottom: 20px;
  }

  .index-emi-cal .emi-summary-box {
    padding: 25px;
  }

  .index-emi-cal .emi-input-block {
    margin-bottom: 15px;
  }

  .index-emi-cal .emi-input-block label {
    font-size: 1rem;

    margin-bottom: 3px;
  }

  .index-emi-cal .emi-slider-labels {
    font-size: 0.9rem;
  }

  .index-emi-cal .emi-action-btn {
    padding: 11px 22px;

    font-size: 1rem;
  }

  .index-emi-cal .emi-summary-item {
    padding: 10px 0;
  }

  .index-emi-cal .emi-summary-label,
  .emi-summary-value {
    font-size: 1.05rem;
  }

  .index-deposit-secc .section-title {
    font-size: 2rem;

    margin-bottom: 35px;
  }

  .index-deposit-secc .deposit-section {
    padding: 33px 20px;
  }

  /****** Media576 Index Digital Sec ******/

  .index-digital-sec .digital-left h2 {
    font-size: 30px;
  }

  .index-digital-sec .digital-left p,
  .digital-left ul li {
    font-size: 16px;
  }

  .index-digital-sec .digital-left ul li {
    font-size: 17px;
  }

  .index-digital-sec .digital-right img {
    width: 200px;

    padding: 30px;
  }

  .index-digital-sec .circle {
    width: 200px;

    height: 200px;
  }

  .index-digital-sec .digital-btn {
    font-size: 14px;

    padding: 10px 26px;
  }

  .index-emi-cal .emi-display-label {
    font-size: 1rem;
  }

  .banner {
    height: 230px;
  }

  .banner-text {
    left: 20px;

    padding: 14px 22px;
  }

  .banner-text h1 {
    font-size: 1.8rem;
  }

  .home-loan-sec .text-teal {
    font-size: 22px !important;
  }

  /******* Media576px Home Loan Page ******/

  .home-loan-sec h5 {
    font-size: 1.1rem;
  }

  .home-loan-sec .feature-box {
    padding: 22px;
  }

  .home-loan-sec .f-title {
    font-size: 1.1rem;
  }

  .home-loan-sec .f-text {
    font-size: 0.9rem;
  }

  .home-loan-sec .f-icon {
    width: 55px;

    height: 55px;

    font-size: 1.4rem;
  }

  .branches-sec {
    padding: 40px 0px;
  }

  .home-loan-sec .eligibility-single {
    padding: 25px;

    border-radius: 18px;
  }

  .home-loan-sec .eligibility-header {
    gap: 12px;
  }

  .home-loan-sec .eligibility-icon {
    width: 55px;

    height: 55px;

    font-size: 1.4rem;
  }

  .home-loan-sec h3 {
    font-size: 1.4rem !important;
  }

  .home-loan-sec .eligibility-list li {
    font-size: 1rem;
  }

  .home-loan-sec .teal-btn {
    width: 100%;

    font-size: 1rem;

    padding: 12px 0;
  }

  .home-loan-sec .section-title {
    font-size: 1.3rem;
  }

  .home-loan-sec .doc-list li {
    padding: 8px 12px;

    margin-bottom: 12px;
  }

  .home-loan-sec .section-title {
    font-size: 1.5rem;
  }

  .home-loan-sec .limit-card {
    padding: 2rem;

    margin: 0 15px;

    border-radius: 16px;
  }

  .home-loan-sec .icon-box {
    width: 75px;

    height: 75px;

    font-size: 1.6rem;
  }

  .home-loan-sec .btn-custom {
    padding: 10px 25px;

    font-size: 1rem;
  }

  /**************** Media576px Board-Of-Director Page  ******************/

  .board-of-director-sec .section-title {
    font-size: 1.6rem;

    margin: 20px 0 -5px;
  }

  .board-of-director-sec .subsection-title {
    font-size: 1.3rem;
  }

  .board-of-director-sec .director-name {
    font-size: 15px;
  }

  .board-of-director-sec .director-position {
    font-size: 0.9rem;
  }

  .board-of-director-sec .director-photo {
    width: 100px;

    height: 100px;
  }

  /* Deposite Page Media 576 */

  .deposit-section-page h2 {
    font-size: 1.4rem;
  }

  .deposit-section-page .btn-gradient {
    font-size: 17px;
  }

  .deposit-section-page .gradient-text {
    color: #6e5100;

    font-size: 30px;

    padding-top: 20px !important;
  }

  .interest-rate-pagg th,
  td {
    padding: 6px 8px;

    font-size: 0.75rem; 
  }

  .interest-rate-pagg table {
    min-width: 650px;
  }

  .neft-rtgs-page .page-hero {
    padding: 70px 0 40px;
  }

  .neft-rtgs-page .hero-title {
    font-size: 1.8rem;
  }

  .neft-rtgs-page .hero-subtitle {
    font-size: 1rem;

    line-height: 1.5;
  }

  .neft-rtgs-page .section-title {
    font-size: 1.7rem;

    margin-bottom: 2rem;
  }

  .neft-rtgs-page .service-card {
    margin-bottom: 20px;
  }

  .neft-rtgs-page .service-card:hover {
    transform: translateY(-8px) scale(1.01);
  }

  .neft-rtgs-page .service-icon {
    font-size: 2.8rem;
  }

  .neft-rtgs-page .card-body {
    padding: 1.5rem 1.2rem;
  }

  .neft-rtgs-page .card-title {
    font-size: 1.3rem;
  }

  .neft-rtgs-page .card-text {
    font-size: 0.95rem;
  }

  .neft-rtgs-page .btn-primary {
    padding: 10px 22px;

    font-size: 0.9rem;

    width: 100%;

    max-width: 200px;
  }

  .neft-rtgs-page .badge {
    font-size: 0.8rem;

    padding: 6px 12px;

    margin-right: 5px;

    margin-bottom: 8px;
  }

  .neft-rtgs-page .stats-section {
    padding: 50px 0;
  }

  .neft-rtgs-page .stat-box {
    padding: 15px 10px;
  }

  .neft-rtgs-page .stat-number {
    font-size: 1.8rem;
  }

  .neft-rtgs-page .stat-text {
    font-size: 0.9rem;
  }

  .neft-rtgs-page .comparison-table {
    font-size: 0.85rem;

    border-radius: 15px;

    margin: 0 -10px;

    width: calc(100% + 20px);
  }

  .neft-rtgs-page .comparison-table th,
  .comparison-table td {
    padding: 0.7rem 0.5rem;

    font-size: 0.85rem;
  }

  .neft-rtgs-page .comparison-table thead th {
    font-size: 0.9rem;
  }

  .pm-yojna-page-sec .yojana-card img {
    height: 140px;
  }

  .pm-yojna-page-sec .yojana-card .card-title {
    font-size: 1rem;
  }

  .pm-yojna-page-sec .yojana-card .card-text {
    font-size: 0.85rem;
  }

  .pm-yojna-page-sec .btn-know-more {
    padding: 6px 16px;

    font-size: 0.9rem;
  }

  .annaphoto {
    width: 10%;
  }

  .other-servii-sec .service-card {
    width: 90%;

    justify-content: flex-start;
  }

  .other-servii-sec .service-card i {
    font-size: 1.7rem;
  }

  .other-servii-sec .service-card h6 {
    font-size: 0.9rem;
  }

  .other-servii-sec .right-img img {
    max-height: 300px; 
  }

  .sevadar-main-sec {
    padding: 0;
  }

  .sevadar-main-sec .preview {
    border-radius: 10px;

    padding: 12px;
  }

  .sevadar-main-sec .preview .img-wrap {
    flex-basis: 114px;

    max-width: 160px;
  }

  .sevadar-main-sec .section-title h2 {
    font-size: 15px;
  }

  .sevadar-main-sec table.modern {
    min-width: 560px;
  }

  .sevadar-main-sec table.modern thead th {
    font-size: 12.5px;
  }

  .sevadar-main-sec table.modern tbody td {
    font-size: 12px;
  }

  .sevadar-main-sec .table-card {
    padding: 12px;

    border-radius: 10px;
  }

  .branches-sec .branches-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .bank-left {
    width: 76%;
  }

  .bank-logo .bank-left .bank-title h1 {
    font-size: 24px;
  }

  .bank-logo .bank-left .bank-title h2 {
    font-size: 11px;
  }
}

@media (max-width: 415px) {
  .hamburger span {
    display: block;

    width: 27px !important;

    height: 3px;

    margin: 3px;

    background: #0e4153 !important;

    border-radius: 3px;

    transition: all 0.4s ease;
  }

  /****** Home Loan Page *****/

  .home-loan-sec .feature-box {
    padding: 18px;
  }

  .home-loan-sec .eligibility-single {
    padding: 20px;
  }

  .home-loan-sec .eligibility-icon {
    width: 50px;

    height: 50px;

    font-size: 1.3rem;
  }

  .home-loan-sec h3 {
    font-size: 1.25rem !important;
  }

  .home-loan-sec .eligibility-list li {
    font-size: 0.85rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 32px;

    height: 32px;

    border-radius: 10px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 12px;

    height: 12px;
  }

  .carousel-control-prev-icon::after,
  .carousel-control-next-icon::after {
    width: 6px;

    height: 6px;

    border-width: 0 2px 2px 0;
  }

  .counter-box {
    width: 95%;
  }

  .counter {
    font-size: 1.4rem;
  }

  .trustworthy-div1 {
    font-size: 27px;

    font-weight: 600;

    line-height: 21px;

    padding-bottom: 47px;
  }

  .trustworthy-header-new {
    gap: 0px;
  }

  .trustworthy-div2 {
    font-size: 10px;

    font-weight: 600x;

  }

  .index-digital-sec .digital-box {
    padding: 30px 20px;
  }

  .index-digital-sec .digital-left h2 {
    font-size: 29px;
  }

  .index-digital-sec .digital-right img {
    width: 185px;
  }

  .index-digital-sec .circle {
    width: 185px;

    height: 185px;
  }

  .neft-rtgs-page .page-section {
    padding: 10px 0;
  }

  .neft-rtgs-page .page-hero img {
    max-height: 215px !important;
  }

  .neft-rtgs-page .page-hero {
    padding: 60px 0 30px;
  }

  .neft-rtgs-page .hero-title {
    font-size: 1.6rem;
  }

  .neft-rtgs-page .section-title {
    font-size: 1.5rem;
  }

  .neft-rtgs-page .service-card {
    margin-bottom: 15px;
  }

  .neft-rtgs-page .service-icon {
    font-size: 2.5rem;
  }

  .neft-rtgs-page .card-body {
    padding: 1.2rem 1rem;
  }

  .neft-rtgs-page .stat-number {
    font-size: 1.6rem;
  }

  .neft-rtgs-page .comparison-table {
    font-size: 0.8rem;
  }

  .neft-rtgs-page .comparison-table th,
  .comparison-table td {
    padding: 0.6rem 0.4rem;

    font-size: 0.8rem;
  }

  .sevadar-main-sec .preview {
    padding: 10px;
  }

  .sevadar-main-sec .preview .img-wrap {
    flex-basis: 99px;

    max-width: 140px;
  }

  .sevadar-main-sec .preview h1 {
    font-size: 15px;
  }

  .sevadar-main-sec table.modern {
    min-width: 500px;
  }

  .sevadar-main-sec table.modern thead th {
    font-size: 12px;

    padding: 6px;
  }

  .sevadar-main-sec table.modern tbody td {
    font-size: 11.5px;

    padding: 6px;
  }
}

@media (max-width: 385px) {
  .bank-header .bank-left img {
    height: 56px;
  }

  .bank-header {
    padding: 7px 2px !important;
  }

  /*********** media992 index EMI Calculator **********/

  .index-emi-cal .emi-calc-wrapper {
    max-width: 100%;

    border-radius: 16px;
  }

  .index-emi-cal .emi-calc-content {
    padding: 18px;

    gap: 18px;
  }

  .index-emi-cal .emi-calc-header {
    padding: 20px;
  }

  .index-emi-cal .emi-calc-header h1 {
    font-size: 1.5rem;
  }

  .index-emi-cal .emi-amount-show {
    font-size: 1.8rem;
  }

  .index-emi-cal .emi-display-amount {
    font-size: 2rem;
  }

  .index-emi-cal .emi-input-block label {
    font-size: 1rem;
  }

  .index-emi-cal .emi-action-btn {
    padding: 15px 20px;

    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .index-new-service {
    margin-top: 10px;
  }

  .index-new-service .service-name {
    font-size: 12px;
  }

  #carouselExampleIndicators .carousel-item img {
    height: 200px;

  }
}

@media (max-width: 456px) {

  .bank-title h1 {
    font-size: 18px;

  }

  .bank-title h2 {
    font-size: 14px;
  }

  .bank-title p {
    font-size: 0.8rem;
  }

  .bank-header {
    padding: 2px 2px;
  }

  /******** Bank Footer *********/

  .bank-footer .bank-footer {
    padding: 30px 0 15px;
  }

  .bank-footer .footer-container {
    padding: 0 15px;
  }

  .bank-footer .footer-legal {
    flex-direction: column;

    gap: 10px;
  }

  .bank-footer .security-features {
    flex-direction: column;

    gap: 10px;
  }
}

@media (max-width: 600px) {
  .bank-history-main-page .bank-text h2 {
    font-size: 24px;
  }

  .bank-history-main-page .bank-text h3 {
    font-size: 18px;
  }

  .bank-history-main-page .carousel-item img {
    height: 200px; 

    object-fit: cover;
  }

  .bank-history-main-page .bank-history {
    padding: 30px 20px;
  }

  .grievance-page-sec .bank-form-card {
    padding: 25px;
  }

  .grievance-page-sec .bank-title {
    font-size: 22px;
  }
}

@media (min-width: 993px) {
  .navbar-custom .cancel-icon {
    display: none !important;
  }

  .navbar-custom .dropdown:hover > .dropdown-menu {
    display: block;
  }

  .navbar-custom .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}

@media (max-width: 360px) {
  .bank-title h1 {
    font-size: 16px;

  }

   .andar-logo-head {
    width: 74%;
    height: 50px;
  }

   .bank-header .bank-left img {
    width: 85%;
    height: 42px;
  }

  .bank-title h2 {
    font-size: 12px;
  }

  .bank-title p {
    font-size: 14px;
  }

  .sevadar-main-sec .preview .img-wrap {
    flex-basis: 86px;

    max-width: 120px;
  }

  .sevadar-main-sec table.modern {
    min-width: 450px;
  }

  .sevadar-main-sec table.modern thead th,
  table.modern tbody td {
    font-size: 11px;
  }

  #carouselExampleIndicators .carousel-item img {
    height: 150px;

  }
}

@media (max-width: 330px) {
  .bank-title h1 {
    font-size: 15px;
  }

  .bank-title h2 {
    font-size: 11px;
  }

  .bank-title p {
    font-size: 12px;

    line-height: 1;
  }

  .pragati-page-seccc h1 {
    font-size: 20px;
  }

  .pragati-page-seccc table th,
  table td {
    font-size: 10px;

    padding: 6px;
  }

  .pragati-page-seccc .table-scroll {
    overflow-x: auto;
  }

  .pragati-page-seccc canvas {
    max-height: 180px !important;
  }
}

/* New Banking Service */

@media (min-width: 1601px) {
  .index-new-service .main-layout {
    height: 550px;

    min-height: 550px;
  }
}

@media (max-width: 600px) {
  .branches-sec .branches-title {
    font-size: 28px;
  }

  .branches-sec .branch-card {
    padding: 20px;
  }
}

@media (min-width: 1200px) {
  .neft-rtgs-page .container {
    max-width: 1140px;
  }
}

@media print {
  .neft-rtgs-page .page-hero {
    background: #25979b !important;

    color: black !important;

    clip-path: none !important;
  }

  .neft-rtgs-page .service-card {
    box-shadow: none !important;

    border: 1px solid #ddd !important;
  }

  .neft-rtgs-page .btn-primary {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .pragati-page-seccc h1 {
    font-size: 24px;
  }

  .pragati-page-seccc .card {
    padding: 18px;

    border-radius: 14px;
  }

  .pragati-page-seccc table th,
  table td {
    padding: 8px 6px;

    font-size: 12px;
  }

  .pragati-page-seccc .info-table th,
  .info-table td {
    padding: 7px;

    font-size: 12px;
  }

  .pragati-page-seccc .notice-wrapper {
    padding: 15px;
  }

  .pragati-page-seccc .bank-logo {
    width: 70px;
  }

  .pragati-page-seccc .notice-header h3 {
    font-size: 16px;
  }

  .pragati-page-seccc .sub-title {
    font-size: 16px;
  }

  .pragati-page-seccc .table-caption {
    font-size: 15px;
  }

  .footer-box {
    font-size: 12px;

    padding: 10px;
  }

  .pragati-page-seccc .sign {
    font-size: 13px;
  }

  .pragati-page-seccc canvas {
    max-height: 200px !important;
  }
}


/* --- TAB WRAPPER --- */

.grievance-page-sec .bank-tabs {
  border-bottom: 2px solid #eee;

  margin-bottom: 25px;

  padding-bottom: 0;
}


.grievance-page-sec .bank-tabs .nav-link {
  padding: 12px 22px;

  font-size: 17px;

  font-weight: 600;

  color: #444;

  border: none;

  border-radius: 0;

  position: relative;

  cursor: pointer;

  transition: all 0.3s ease;
}


.grievance-page-sec .bank-tabs .nav-link:hover {
  color: #d28b00;
}


.bank-tabs .nav-link.active {
  color: #ffffff;

  background: linear-gradient(90deg, #ffca3a, #ffb300);

  border-radius: 6px 6px 0 0;
}


.grievance-page-sec .bank-tabs .nav-link.active::after {
  content: '';

  position: absolute;

  left: 0;

  bottom: -2px;

  width: 100%;

  height: 3px;

  background: #ffb300;

  border-radius: 2px;
}

/* MOBILE RESPONSIVE */

@media (max-width: 576px) {
  .grievance-page-sec .bank-tabs .nav-link {
    font-size: 15px;

    padding: 10px 14px;
  }
}
