/* +++++++++++++++++++++++++++++++ Navbar Section CSS Start ++++++++++++++++++++++++++++++++ */

/* ========= Top Bar Styling ========== */
.top-bar {
  color: #fff;
}

.top-bar .bank-name {
  color: #000;
  font-weight: 600;
}

.top-links a {
  padding: 10px 10px;
  box-shadow: 0px 2px 2px 0px gray;
  border-radius: 6px;
  background-color: #864938;
  color: #fff;
  transition: color 0.3s ease;
}

.top-links a:hover {
  color: #ffda6a;
}

/* ========= Navbar Styling ========== */
.main-navbar {
  /* background-color: #864938; */
  background: linear-gradient(135deg, #476eae, #660b05);
}

.main-navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  padding: 10px 18px !important;
  transition: background 0.3s ease, color 0.3s ease;
}

.main-navbar .nav-link:hover {
  /* background-color: #8a0000; */
  color: #ffd37d !important;
  border-radius: 4px;
}

/* ========= Dropdown Menu Styling ========== */
.dropdown-menu {
  border-radius: 6px;
  border: none;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 8px;
}

.dropdown-item {
  color: #8a0000;
  font-weight: 500;
  padding: 10px 15px;
}

.dropdown-item:hover {
  background-color: #ffd93d;
  color: #094c77;
}

/* ========= Hover Dropdown on Desktop ========== */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media (min-width: 1024px) and (max-width: 1390px) {
  .main-navbar .nav-link {
    padding: 10px 12px !important;
  }
}

@media (max-width: 768px) {
  .media-font {
    font-size: 15px;
  }
}

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

.navbar-toggler {
  border: 2px solid #ffffff;
  background-color: #660b05;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ++++++++++++++++++++++++++++ Navbar Section CSS Ends ++++++++++++++++++++++++++++++ */

/* ++++++++++++++++++++ Hero Section Slider CSS Start ++++++++++++++++++++++++++ */

/* ---------- Hero Slider Styles ---------- */

.slider-asset {
  height: 70vh;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.slide-heading {
  font-size: 4.5rem;
  font-weight: 700;
}

.slide-sub {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #094c77;
}

.carousel-caption .btn {
  background-color: #476eae;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
}

.carousel-caption .btn:hover {
  background-color: #00263e;
}

.rbi-slider-img {
  height: 70vh;
  object-fit: contain !important;
  background-color: #fff; /* optional: adds contrast behind transparent areas */
}

/* Responsive Fix */
@media (max-width: 768px) {
  .slider-asset {
    height: 26vh;
    /* height: 60vh; */
    max-width: 100%;
  }

  .carousel-caption {
    top: 40%;
    left: 10px;
    right: 10px;
    text-align: center;
    transform: translateY(-40%);
  }

  .slide-heading {
    font-size: 1.8rem;
  }

  .slide-sub {
    font-size: 1rem;
    color: #fff;
  }

  .carousel-caption .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  .rbi-slider-img {
    height: 26vh;
    /* height: 60vh; */
    object-fit: contain;
  }
}

/* +++++++++++++++++++ Hero Section Slider CSS Ends ++++++++++++++++++++++++++ */

/* +++++++++++++++++ News Section CSS Start ++++++++++++++++++++++++ */

/* ======== News Ticker ======== */
.news-ticker-section {
  background: #476eae; /* green strip */
  overflow: hidden;
  position: relative;
}

.news-ticker-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.news-ticker {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 25s linear infinite;
}

.news-ticker span {
  display: inline-block;
  margin-right: 60px; /* gap between headlines */
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
}

/* Animation */
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .news-ticker span {
    font-size: 14px;
    margin-right: 40px;
  }
}

@media (max-width: 480px) {
  .news-ticker span {
    font-size: 13px;
    margin-right: 30px;
  }
}

/* +++++++++++++++++ News Section CSS Ends +++++++++++++++++++++++++ */

/* +++++++++++++++++ Rate Of Intrest CSS Start +++++++++++++++++++++++ */

/* ===== Interest Rate Section ===== */
.interest-rate-section {
  background: #f9fdfb;
}

.section-title-rate {
  color: #0a254c;
  font-weight: 700;
  font-size: 32px;
}

/* Card Styling */
.interest-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.interest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Title */
.loan-title {
  font-size: 22px;
  color: #8a0000;
  font-weight: 600;
}

/* Rate */
.rate {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
}

.rate-value {
  font-size: 40px;
  font-weight: 700;
  color: #0a254c;
  line-height: 1;
}

.rate-unit {
  font-size: 16px;
  color: #555;
  line-height: 1.2;
}

/* Know More Link Style */
.know-more-link {
  position: relative;
  display: inline-block;
  color: #476eae;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.know-more-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #ffd93d;
  transition: width 0.3s ease;
}

.know-more-link:hover {
  color: #2f4e86; /* thoda dark hover color */
}

.know-more-link:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 576px) {
  .rate-value {
    font-size: 32px;
  }
  .loan-title {
    font-size: 20px;
  }
}

/* ++++++++++++++++++ Rate Of Intrest CSS Ends ++++++++++++++++++++++ */

/* ++++++++++++++++ Deposit & Schemes Section CSS Start +++++++++++++++++++ */

/* ===== Deposit Section ===== */
.deposit-section {
  background-color: #f9fafc;
}

.section-title-deposit {
  font-size: 32px;
  font-weight: 700;
  color: #0a254c;
}

/* ===== Card Style ===== */
.deposit-card {
  background: #ffffff;
  border: 2px solid #476eae20; /* light border from primary */
  border-radius: 18px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.deposit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: #476eae;
}

/* Image */
.deposit-img img {
  height: 100px;
  object-fit: contain;
  width: 100%;
  /* border-radius: 12px; */
}

/* Title */
.deposit-title {
  color: #476eae;
  font-size: 22px;
  font-weight: 600;
}

/* Description */
.deposit-desc {
  color: #0a254c;
  font-size: 15px;
  line-height: 1.5;
}

/* Apply Button */
.apply-btn {
  display: inline-block;
  background-color: #ffd93d;
  color: #8a0000;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background-color: #8a0000;
  color: #ffd93d;
}

/* Responsive */
@media (max-width: 576px) {
  .section-title-deposit {
    font-size: 26px;
  }
  .deposit-title {
    font-size: 20px;
  }
}

/* ++++++++++++++++++ Desposit & Schemes Section CSS Ends +++++++++++++++++++ */

/* ++++++++++++++++ Banking Services Section CSS Start +++++++++++++++++++++ */

/* ====== Services Section ====== */
.services-section {
  padding: 0px 0px;
  background: #476eae;
}

.section-title-home {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  text-align: center;
}

.services-content {
  padding: 10px 20px;
}

.service-card-home {
  display: block;
  background: #fff;
  border-radius: 16px;
  padding: 25px 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
}

.service-card-home:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 1.5rem;
  color: #660b05;
  margin-bottom: 12px;
}

.service-title-home {
  font-size: 1rem;
  font-weight: 600;
  color: #476eae;
  margin: 0;
}

.services-image {
  max-width: 90%;
  max-height: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .section-title-home {
    font-size: 1.8rem;
  }
  .service-card-home {
    padding: 20px 10px;
  }
  .service-icon {
    font-size: 1.7rem;
  }
  .service-title-home {
    font-size: 0.95rem;
  }
}

/* ++++++++++++++++ Banking Services Section CSS Ends +++++++++++++++++++++ */

/* ++++++++++++++ Loan Scheme Section CSS Start +++++++++++++++++++++++ */

.text-primary {
  color: #0a254c !important;
}

.loan-card {
  border: 2px solid #476eae;
  border-radius: 15px;
  background-color: #f9faff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(71, 110, 174, 0.3);
}

.loan-img {
  height: 120px;
  object-fit: contain;
}

.apply-btn {
  background-color: #660b05;
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s ease;
}

.apply-btn:hover {
  background-color: #8c150b;
}

/* +++++++++++++++++++ Loan Scheme Section CSS Ends +++++++++++++++++ */

/* +++++++++++++++++ EMI Calculator Section CSS Start +++++++++++++++ */

.emi-section {
  padding: 50px 0;
}

.emi-box {
  background: #fff;
  border: 1px solid #d33;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 30px;
  height: 100%;
}

.emi-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0a254c;
  margin-bottom: 25px;
  text-align: center;
}

.form-label {
  font-weight: 600;
  color: #333;
}

.btn-calc {
  background: #476eae;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 25px;
  transition: background 0.3s ease;
  border: 1px solid #476eae;
}

.btn-calc:hover {
  background: #2f5695;
  color: #fff;
}

.result-title {
  font-weight: 700;
  color: #0a254c;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.result-title img {
  width: 40px;
  height: 40px;
}

.result-box p {
  margin: 20px 0;
  color: #333;
  font-size: 1rem;
}

/* +++++++++++++++++ EMI Calculator Section CSS Ends +++++++++++++++++ */

/* +++++++++++++++ Footer Section CSS Start ++++++++++++++++++++ */

.footer-section {
  background: linear-gradient(135deg, #476eae, #660b05);
}

.footer-logo {
  width: 130px;
  height: auto;
}

.footer-qr {
  width: 300px;
  height: auto;
  margin-top: 10px;
  border-radius: 10px;
}

.footer-title {
  font-weight: 600;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  padding-bottom: 5px;
}

.footer-contact li {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffd37d;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .footer-logo,
  .footer-qr {
    margin: 0 auto;
    display: block;
  }

  .footer-title {
    text-align: center;
    width: 100%;
  }

  .footer-contact,
  .footer-links {
    text-align: start;
  }
}

/* ++++++++++++++ Footer Section CSS Ends ++++++++++++++++++++ */

/* =========================== About Us Section CSS Start ===================== */

/* About us Banner */

.about-us-banner {
  position: relative;
  background: url("../images/about-us-banner.jpg") center center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.about-us-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.about-us-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.about-us-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .about-us-banner {
    height: 40vh;
  }

  .about-us-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .about-us-banner h1 {
    font-size: 1.5rem;
  }
}

/* About us Banner */

/* about us content section start */

.about-us-section {
  background: #f8faff;
}

.about-content {
  background: #fff;
  border-left: 6px solid #476eae;
  border-radius: 12px;
}

.about-title {
  font-weight: 700;
  color: #476eae;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: #476eae;
  border-radius: 4px;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1rem;
}

.about-img-wrapper {
  display: inline-block;
  overflow: hidden;
  border-radius: 15px;
  border: 5px solid #476eae;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-img {
  transition: transform 0.4s ease;
}

.about-img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .about-title,
  .about-text {
    text-align: center;
  }
  .about-img-wrapper {
    border-width: 4px;
  }
  .about-content {
    padding: 2rem 1.2rem;
  }
}

/* about us content section ends */

/* =========================== About Us Section CSS Ends ====================== */

/* =================== Board Of Directors CSS Start ======================= */

/* BOD Banner CSS Start */

.bod-banner {
  position: relative;
  background: url("../images/bod-banner.jpg") center bottom/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.bod-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.bod-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.bod-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .bod-banner {
    height: 40vh;
  }

  .bod-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .bod-banner h1 {
    font-size: 1.5rem;
  }
}

/* BOD Banner CSS Ends */

/* BOD Member Section css start */

.board-section h2 {
  color: #0a254c;
}

.member-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.member-photo {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 15px;
}

.member-photo img {
  height: 100px;
  width: 100px;
  border-radius: 15px;
}

.member-name {
  color: #112f7d;
  font-weight: 600;
  margin-bottom: 4px;
}

.member-role {
  color: #444;
  margin: 0;
  font-size: 15px;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .member-card.d-flex {
    flex-direction: column;
    text-align: center;
  }
  .member-card.d-flex .member-photo {
    margin-right: 0 !important;
    margin-bottom: 12px;
  }
}

/* BOD Member Section CSS Ends  */

/* ================== Board Of Directors CSS Ends ======================== */

/* ================= Bank Details Table Section CSS Start =================== */

/* Bank Details Banner CSS  */

.bank-details {
  position: relative;
  background: url("../images/bank-details-banner.jpg") center center/cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.bank-details .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.bank-details .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.bank-details h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .bank-details {
    height: 40vh;
  }

  .bank-details .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .bank-details h1 {
    font-size: 1.5rem;
  }
}

/* Bank Detais Banner CSS  */

/* banking tables css start */

.table-card {
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.table-card .card-header {
  background: #476eae;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.table thead {
  background: #e9f7ef;
}

.table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

.table th,
.table td {
  vertical-align: middle;
  text-align: start;
}

@media (max-width: 768px) {
  .table-responsive {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    overflow-x: auto;
  }
}

/* banking table css ends */

/* ================= Bank Details Table Section CSS Ends ==================== */

/* ================= Branches Section CSS Start =========================== */

/* Check Book Facility Banner */

.our-branches-banner {
  position: relative;
  background: url("../images/branch-banner-main.jpg") center center/cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.our-branches-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.our-branches-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.our-branches-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .our-branches-banner {
    height: 40vh;
  }

  .our-branches-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .our-branches-banner h1 {
    font-size: 1.5rem;
  }
}

/* Check Book Facility Banner */
.branches-section {
  background: #f7fcfb;
  padding: 50px 25px;
  border-radius: 18px;
}

.branches-title {
  color: #0a254c;
  font-size: 2.2rem;
  font-weight: 700;
}

.branches-subtitle {
  color: #555;
  font-size: 1.1rem;
}

.branch-card {
  background: #fff;
  border: 1px solid #e1e8e5;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.branch-name {
  color: #8a0000;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.branch-label {
  color: #444;
  margin-bottom: 10px;
  font-size: 1rem;
}

.branch-label i {
  width: 20px;
  text-align: center;
}

.branch-label a {
  color: #476eae;
  text-decoration: none;
}

.branch-label a:hover {
  text-decoration: underline;
}

/* 👇 Address section styling */
.branch-address {
  background: #f8fbfa;
  border: 1px solid #e1e8e5;
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 15px;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}

.branch-address i {
  color: #0a7c4a !important;
  margin-right: 6px;
}

.branch-address p {
  margin: 0 0 8px 0;
}

.branch-address .map-link {
  display: inline-block;
  color: #476eae;
  font-size: 0.9rem;
  text-decoration: none;
}

.branch-address .map-link:hover {
  text-decoration: underline;
}

/* 👇 Map iframe styling */
.branch-map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e1e8e5;
  margin-top: 15px;
}

.branch-map iframe {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: 10px;
}

/* Responsive adjustment */
@media (max-width: 576px) {
  .branch-map iframe {
    height: 150px;
  }
}

/* ================ Branches Section CSS Ends =========================== */

/* ================ Cheque Book Facility section css start ================= */

/* Check Book Facility Banner */

.check-book-facility-banner {
  position: relative;
  background: url("../images/check-book-banner.jpg") center center/cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.check-book-facility-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.check-book-facility-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.check-book-facility-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .check-book-facility-banner {
    height: 40vh;
  }

  .check-book-facility-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .check-book-facility-banner h1 {
    font-size: 1.5rem;
  }
}

/* Check Book Facility Banner */

.cheque-book-section {
  padding: 60px 0;
}

.cheque-book-info-card {
  background: linear-gradient(135deg, #476eae, #660b05);
  color: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  text-align: center;
}

.cheque-book-info-card h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.cheque-book-table-card {
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.cheque-book-table-card .cheque-book-card-header {
  background: #476eae;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  padding: 15px;
}

.cheque-book-table thead {
  background: #e9f7ef;
}

.cheque-book-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

.cheque-book-table th,
.cheque-book-table td {
  vertical-align: middle;
  text-align: center;
}

@media (max-width: 768px) {
  .cheque-book-table-responsive {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    overflow-x: auto;
  }
}

/* ============= cheque book facility section css ends ================ */

/* =============== Core Banking Facility Section CSS Start ================ */

/* Check Book Facility Banner */

.core-banking-facility-banner {
  position: relative;
  background: url("../images/core-banking-banner.jpg") center center/cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.core-banking-facility-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.core-banking-facility-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.core-banking-facility-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .core-banking-facility-banner {
    height: 40vh;
  }

  .core-banking-facility-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .core-banking-facility-banner h1 {
    font-size: 1.5rem;
  }
}

/* Check Book Facility Banner */

.core-banking-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.core-banking-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.core-banking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.core-banking-title {
  color: #8a0000;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.core-banking-intro {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.core-banking-list li {
  background: #e9f7ef;
  border-left: 4px solid #476eae;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  color: #333;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.core-banking-list li::before {
  content: "✓";
  color: #476eae;
  font-weight: 700;
}

@media (max-width: 768px) {
  .core-banking-card {
    padding: 25px;
  }
  .core-banking-title {
    font-size: 1.7rem;
  }
}

/* =========== Core Banking Facility Section CSS Ends ================ */

/* ========= Current Bank Account Section CSS Start ==================== */

/* Check Book Facility Banner */

.current-bank-account-banner {
  position: relative;
  background: url("../images/current-bank-banner.jpg") center center/cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.current-bank-account-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.current-bank-account-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.current-bank-account-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .current-bank-account-banner {
    height: 40vh;
  }

  .current-bank-account-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .current-bank-account-banner h1 {
    font-size: 1.5rem;
  }
}

/* Check Book Facility Banner */

.current-account-section {
  background: #f9f9f9;
  padding: 60px 0;
}

.current-account-title {
  color: #476eae;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.current-account-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.current-account-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
}

.current-account-table th {
  background: #476eae;
  color: #fff;
  text-align: center;
}

.current-account-table td {
  text-align: center;
  vertical-align: middle;
}

.document-list li {
  background: #f3f6fb;
  border-left: 4px solid #8a0000;
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
}

.document-list li::before {
  content: "📄";
  margin-right: 8px;
}

@media (max-width: 768px) {
  .current-account-title {
    font-size: 1.6rem;
  }
}

/* ========== Current Bank Account Section CSS Ends ==================== */

/* ========== Fixed Deposit section CSS Start ================= */

/* Check Book Facility Banner */

.FD-banner {
  position: relative;
  background: url("../images/fd-banner.jpg") center bottom/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.FD-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.FD-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.FD-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .FD-banner {
    height: 40vh;
  }

  .FD-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .FD-banner h1 {
    font-size: 1.5rem;
  }
}

/* Check Book Facility Banner */

.fixed-deposit-section {
  background: #f9f9f9;
  padding: 60px 0;
}

.fixed-deposit-title {
  color: #476eae;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.fixed-deposit-subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

.fixed-deposit-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.fixed-deposit-table th {
  background: #476eae;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}

.fixed-deposit-table td {
  text-align: center;
  vertical-align: middle;
  font-size: 1rem;
  color: #333;
}

.fixed-note {
  text-align: center;
  margin-top: 20px;
  color: #8a0000;
  font-weight: 600;
}

@media (max-width: 768px) {
  .fixed-deposit-title {
    font-size: 1.7rem;
  }
}

/* ========== Fixed Deposit section css ends ================ */

/* ========== Loan Product Details CSS Start =================== */

/* Check Book Facility Banner */

.loan-product-detais-banner {
  position: relative;
  background: url("../images/loan-product-banner.jpg") center bottom/cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.loan-product-detais-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.loan-product-detais-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.loan-product-detais-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .loan-product-detais-banner {
    height: 40vh;
  }

  .loan-product-detais-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .loan-product-detais-banner h1 {
    font-size: 1.5rem;
  }
}

/* Check Book Facility Banner */

.loan-section {
  padding: 60px 0;
  background: #f9f9f9;
}
.loan-section h2 {
  color: #476eae;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
.loan-table th {
  background-color: #476eae;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}
.loan-table td {
  vertical-align: middle;
  text-align: center;
}
.notes-card {
  border-left: 5px solid #8a0000;
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}
.notes-card h5 {
  color: #8a0000;
  font-weight: 600;
  margin-bottom: 15px;
}
.notes-card ul {
  margin: 0;
  padding-left: 20px;
}
.notes-card li {
  margin-bottom: 8px;
}

/* ========== Loan Product Details CSS Ends ==================== */

/* ========== Locker Facility Section CSS Start ===================== */

/* Check Book Facility Banner */

.locker-facility-banner {
  position: relative;
  background: url("../images/locker-facility-banner.jpg") center center/cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.locker-facility-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.locker-facility-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.locker-facility-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .locker-facility-banner {
    height: 40vh;
  }

  .locker-facility-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .locker-facility-banner h1 {
    font-size: 1.5rem;
  }
}

/* Check Book Facility Banner */

.locker-section {
  padding: 60px 0;
  background: #f9f9f9;
}
.locker-section h2 {
  color: #476eae;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}
.locker-intro {
  background: #fff;
  border-left: 5px solid #8a0000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin-bottom: 40px;
  border-radius: 8px;
}
.locker-intro p {
  margin-bottom: 10px;
}
.locker-sizes {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.locker-size-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 150px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.locker-size-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.locker-size-card h5 {
  color: #8a0000;
  margin-bottom: 0;
}
.locker-table th {
  background-color: #476eae;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}
.locker-table td {
  vertical-align: middle;
  text-align: center;
}

/* ========== Locker Facility Section CSS Ends ================= */

/* ========= Other Services Section CSS Start ================= */

/* Check Book Facility Banner */

.other-services-banner {
  position: relative;
  background: url("../images/other-services-banner.jpg") center center/cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.other-services-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.other-services-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.other-services-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .other-services-banner {
    height: 40vh;
  }

  .other-services-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .other-services-banner h1 {
    font-size: 1.5rem;
  }
}

/* Check Book Facility Banner */

.other-services {
  background: #f9f9f9;
  padding: 60px 0;
}

.other-services h2 {
  color: #476eae;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.service-card {
  background: #fff;
  border: 1px solid #ddd;
  border-left: 5px solid #8a0000;
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  color: #476eae;
  margin-bottom: 10px;
}

.service-detail {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* ======== Other Services Section CSS Ends ============= */

/* ========= Reccuring Deposit Section CSS Start ============== */

/* Check Book Facility Banner */

.reccuring-deposit-banner {
  position: relative;
  background: url("../images/reccuring-banner.jpg") center center/cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.reccuring-deposit-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.reccuring-deposit-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.reccuring-deposit-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .reccuring-deposit-banner {
    height: 40vh;
  }

  .reccuring-deposit-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .reccuring-deposit-banner h1 {
    font-size: 1.5rem;
  }
}

/* Check Book Facility Banner */

/* ========= Recurring Deposit Section ========= */
.rd-title {
  color: #476eae;
  font-weight: 700;
  font-size: 2.2rem;
}

.rd-subtitle {
  color: #555;
  font-size: 1.1rem;
}

.rd-table {
  border: 2px solid #476eae;
  border-radius: 10px;
  overflow: hidden;
}

.table-header th {
  background-color: #476eae;
  color: #fff;
}

.rd-table th,
.rd-table td {
  padding: 14px;
  vertical-align: middle;
  font-size: 1rem;
}

.rd-table tbody tr:nth-child(even) {
  background-color: #f9faff;
}

.rd-table tbody tr:hover {
  background-color: #fff4f4;
}

/* responsive horizontal scroll is handled by bootstrap's .table-responsive */

/* =========== Reccuring Deposit Section CSS Ends ============== */

/* =============== RTGS NEft Page Section CSS Start ===================== */

/* Check Book Facility Banner */

.rtgs-neft-banner {
  position: relative;
  background: url("../images/rtgs-banner.jpg") center center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.rtgs-neft-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.rtgs-neft-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.rtgs-neft-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .rtgs-neft-banner {
    height: 40vh;
  }

  .rtgs-neft-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .rtgs-neft-banner h1 {
    font-size: 1.5rem;
  }
}

/* Check Book Facility Banner */

/* ========= RTGS / NEFT Section ========= */
.rtgs-title {
  color: #476eae;
  font-weight: 700;
  font-size: 2.2rem;
}

.rtgs-subtitle {
  color: #555;
  font-size: 1.1rem;
}

.table-heading {
  color: #476eae;
  font-weight: 600;
}

.rtgs-table {
  border: 2px solid #476eae;
  border-radius: 10px;
  overflow: hidden;
}

.table-header th {
  background-color: #476eae;
  color: #fff;
  font-size: 1.05rem;
}

.rtgs-table th,
.rtgs-table td {
  padding: 14px;
  vertical-align: middle;
  font-size: 1rem;
}

.rtgs-table tbody tr:nth-child(even) {
  background-color: #f9faff;
}

.rtgs-table tbody tr:hover {
  background-color: #fff4f4;
  transition: background-color 0.2s ease;
}

/* ============== RTGS Neft Page Section CSS Ends ================== */

/* =========== Saving Bank Account Section CSS Start ================ */

/* Check Book Facility Banner */

.saving-account-banner {
  position: relative;
  background: url("../images/saving-account-banner.jpg") center center/cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.saving-account-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.saving-account-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.saving-account-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .saving-account-banner {
    height: 40vh;
  }

  .saving-account-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .saving-account-banner h1 {
    font-size: 1.5rem;
  }
}

/* Check Book Facility Banner */

/* ======== Saving Bank Section ======== */
.saving-title {
  color: #476eae;
  font-weight: 700;
  font-size: 2.2rem;
}

.saving-subtitle {
  color: #555;
  font-size: 1.1rem;
}

.saving-table {
  border: 2px solid #476eae;
  border-radius: 10px;
  overflow: hidden;
}

.table-header th {
  background-color: #476eae;
  color: #fff;
  font-size: 1.05rem;
  padding: 14px;
}

.saving-table td {
  vertical-align: middle;
  padding: 12px;
  font-size: 1rem;
}

.saving-table tbody tr:nth-child(even) {
  background-color: #f9faff;
}

.saving-table tbody tr:hover {
  background-color: #fff4f4;
}

.interest-rate {
  color: #8a0000;
  font-weight: 600;
}

.interest-rate span {
  background: #476eae;
  color: #fff;
  padding: 6px 15px;
  border-radius: 30px;
}

.section-heading {
  color: #476eae;
  font-weight: 600;
}

/* ============ Saving Bank Account Section CSS Ends ============== */

/* ============ Service Charges Section CSS Start =============== */

/* Check Book Facility Banner */

.service-charges-banner {
  position: relative;
  background: url("../images/service-charges-banner.jpg") center center/cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.service-charges-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.service-charges-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.service-charges-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .service-charges-banner {
    height: 40vh;
  }

  .service-charges-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .service-charges-banner h1 {
    font-size: 1.5rem;
  }
}

/* Check Book Facility Banner */

.charges-section {
  background: #f9fffc;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
  color: #0a254c;
  font-weight: 700;
}

.savings-table thead th,
.current-table thead th,
.service-charges-table thead th {
  background: #476eae;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.savings-table,
.current-table,
.service-charges-table {
  border: 1px solid #dee2e6;
  border-radius: 12px;
  overflow: hidden;
}

.savings-table tbody tr:hover,
.current-table tbody tr:hover,
.service-charges-table tbody tr:hover {
  background: #e9f7ef;
  transition: 0.3s;
}

.savings-table td,
.savings-table th,
.current-table td,
.current-table th,
.service-charges-table td,
.service-charges-table th {
  vertical-align: middle;
  padding: 14px;
}

/* ============ Service Charges Section CSS Ends ================ */

/* ========== Customer Grievance Form Section CSS Start ================ */

/* Customer Grievance banner */

.customer-grievance-banner {
  position: relative;
  background: url("../images/customer-grievance-form.jpg") center center/cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.customer-grievance-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.customer-grievance-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.customer-grievance-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .customer-grievance-banner {
    height: 40vh;
  }

  .customer-grievance-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .customer-grievance-banner h1 {
    font-size: 1.5rem;
  }
}

/* Customer Grievance Form */

:root {
  --brand: #476eae;
  --accent: #660b05;
}

.card-form {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(10, 37, 76, 0.08);
}
.form-header {
  background: linear-gradient(90deg, #476eae, #660b05);
  color: #fff;
  padding: 18px;
  border-radius: 12px 12px 0 0;
}
.required-star {
  color: var(--accent);
  margin-left: 4px;
}
.form-note {
  font-size: 0.9rem;
  color: #ffffff;
}
.checkbox-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mobile-gap {
  gap: 16px;
}
@media (max-width: 767px) {
  .form-header {
    text-align: center;
  }
  .mobile-gap {
    gap: 12px;
    flex-direction: column;
  }
}

/* ============ Customer Grievance Form Section CSS Ends ============= */

/* ========== Chairman Message Section CSS Start ================ */

.chairman-message-banner {
  position: relative;
  background: url("../images/chairman-banner.jpg") center center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.chairman-message-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.chairman-message-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.chairman-message-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .chairman-message-banner {
    height: 40vh;
  }

  .chairman-message-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .chairman-message-banner h1 {
    font-size: 1.5rem;
  }
}

.chairman-section {
  padding: 60px 0;
  background: #f8f9fa;
}
.chairman-img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}
.chairman-title {
  font-size: 32px;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.chairman-message {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}
.chairman-sign {
  font-weight: 600;
  color: #000;
  margin-top: 15px;
}

/* =========== Chairman Message Section CSS Ends ================= */

/* ============ Board Of Management Section CSS Start ================ */

.board-of-management-banner {
  position: relative;
  background: url("../images/board-management-banner.jpg") center center/cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.board-of-management-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.board-of-management-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.board-of-management-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .board-of-management-banner {
    height: 40vh;
  }

  .board-of-management-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .board-of-management-banner h1 {
    font-size: 1.5rem;
  }
}

/* =========== Board Of Management Section CSS Ends ================= */

/* ========== Cyber Awareness Section CSS Start ======================= */

/* Check Book Facility Banner */

.cyber-awareness-banner {
  position: relative;
  background: url("../images/cyber-awareness-banner.jpg") center bottom / cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cyber-awareness-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.cyber-awareness-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.cyber-awareness-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .cyber-awareness-banner {
    height: 40vh;
  }

  .cyber-awareness-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .cyber-awareness-banner h1 {
    font-size: 1.5rem;
  }
}

/* Check Book Facility Banner */

.awareness-section {
  padding: 60px 20px;
}

.awareness-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
  color: #476eae;
}

.card-custom {
  border: none;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 15px;
  line-height: 1.5;
}

.card-custom:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.dos-card {
  background: #eef2fb;
  border-left: 6px solid #476eae;
}

.donts-card {
  background: #fceaea;
  border-left: 6px solid #8a0000;
}

.dos-card i {
  color: #476eae;
}

.donts-card i {
  color: #8a0000;
}

.dos-title {
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #476eae;
}

.donts-title {
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #8a0000;
}

/* =========== Cyber Awareness Section CSS Ends ===================== */

/* ========== Atm Do and Donts Section CSS Start =============== */

/* Check Book Facility Banner */

.atm-do-banner {
  position: relative;
  background: url("../images/atm-do-banner.jpg") center top / cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.atm-do-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.atm-do-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.atm-do-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .atm-do-banner {
    height: 40vh;
  }

  .atm-do-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .atm-do-banner h1 {
    font-size: 1.5rem;
  }
}

/* Check Book Facility Banner */

.pdf-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #476eae 0%, #8a0000 100%);
  color: #fff;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.pdf-section h2 {
  font-weight: 700;
  margin-bottom: 25px;
}

.view-btn {
  background: #fff;
  color: #476eae;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.view-btn:hover {
  background: #8a0000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* ============ Atm Do And Donts Section CSS Ends =============== */

/* ========== Cyber DO And DOnts Section CSS Start ================= */

/* Check Book Facility Banner */

.cyber-do-banner {
  position: relative;
  background: url("../images/cyber-do-banner.jpg") center bottom / cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cyber-do-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.cyber-do-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.cyber-do-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .cyber-do-banner {
    height: 40vh;
  }

  .cyber-do-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .cyber-do-banner h1 {
    font-size: 1.5rem;
  }
}

/* Check Book Facility Banner */

.image-section {
  min-height: 100vh; /* pura screen cover karega */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.image-container {
  max-width: 900px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========== Cybere Do And DOnts Section CSS Ennds ================*/

/* ========== Complain Form Section CSS Start =================== */

/* Check Book Facility Banner */

.complain-form-banner {
  position: relative;
  background: url("../images/complain-form-banner.jpg") center center / cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.complain-form-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.complain-form-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.complain-form-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .complain-form-banner {
    height: 40vh;
  }

  .complain-form-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .complain-form-banner h1 {
    font-size: 1.5rem;
  }
}

/* Check Book Facility Banner */

.complain-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.complain-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.complain-box h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #476eae;
  font-weight: 700;
}

.complain-box .form-control {
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #ccc;
}

.complain-box .btn-submit {
  background: #476eae;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px;
  width: 100%;
  transition: 0.3s;
}

.complain-box .btn-submit:hover {
  background: #8a0000;
}

/* ============ Complain Form Section CSS Ends ================ */

/* ==========Contact Us section css start ================= */

.contact-us-banner {
  position: relative;
  background: url("../images/contact-us-banner.jpg") center center / cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-us-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.contact-us-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.contact-us-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .contact-us-banner {
    height: 40vh;
  }

  .contact-us-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .contact-us-banner h1 {
    font-size: 1.5rem;
  }
}

/* Contact Branches Section */
.contact-branches-section {
  background-color: #f8f9fa;
}

.contact-branch-card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #fff;
}

.contact-branch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.contact-branch-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.contact-branch-info {
  background-color: #fff;
}

.contact-branch-info h5 {
  color: #094c77;
}

.contact-branch-info p {
  font-size: 15px;
  margin-bottom: 6px;
  color: #333;
}

/* Responsive */
@media (max-width: 576px) {
  .contact-branch-info h5 {
    font-size: 16px;
  }
  .contact-branch-info p {
    font-size: 14px;
  }
}

/* ========= contact us section css ends ================== */

/* ======= Interest Calculator Section CSS Start =============== */

.interest-calc-banner {
  position: relative;
  background: url("../images/interest-calc-banner.jpg") center center / cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.interest-calc-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.interest-calc-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.interest-calc-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .interest-calc-banner {
    height: 40vh;
  }

  .interest-calc-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .interest-calc-banner h1 {
    font-size: 1.5rem;
  }
}

/* =========== Interest Calulator Section CSS Ends ================ */

/* ============== Ahwals Section CSS Start ============ */

.ahwals-banner {
  position: relative;
  background: url("../images/annual-report-banner.jpg") center center / cover
    no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ahwals-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.ahwals-banner .content {
  color: #ffffff;
  background: #476eae;
  padding: 20px 30px;
  max-width: 700px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.ahwals-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .ahwals-banner {
    height: 40vh;
  }

  .ahwals-banner .content {
    padding: 15px 20px;
    max-width: 100%;
    clip-path: none;
  }

  .ahwals-banner h1 {
    font-size: 1.5rem;
  }
}

.ahwal-section {
  padding: 60px 15px;
  width: 100%;
}

.ahwal-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.ahwal-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 20px 25px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.35s ease;
  border-left: 4px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ahwal-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
  border-left: 4px solid #476eae;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.ahwal-card-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ahwal-card i {
  font-size: 25px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px;
  border-radius: 10px;
}

.ahwal-card h6 {
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem;
}

/* ===== Buttons Container ===== */
.ahwal-buttons .ahwal-btn {
  border-radius: 25px;
  font-weight: 500;
  padding: 6px 14px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}

/* ===== View Button (Updated Design) ===== */
.ahwal-btn-view {
  background-color: #ffffff;
  color: #476eae;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ahwal-btn-view i {
  font-size: 13px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.ahwal-btn-view:hover {
  background-color: #476eae;
  color: #fff;
  padding-right: 22px;
  text-decoration: none;
}

.ahwal-btn-view:hover i {
  opacity: 1;
  transform: translateX(2px);
}

/* ===== Download Button ===== */
.ahwal-btn-download {
  background-color: transparent;
  border: 1px solid #fff;
  color: #476eae;
  margin-left: 6px;
  padding: 6px 14px;
  font-size: 0.85rem;
  border-radius: 25px;
}

.ahwal-btn-download:hover {
  background-color: #fff;
  color: #8a0000;
}

/* ===== Responsive ===== */
@media (max-width: 575px) {
  .ahwal-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .ahwal-buttons {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
}

/* ============= Ahwals Section CSS Ends ====================== */
