:root {
  --orange: #008c1d;
  --orange-strong: #ff6600;
  --orange-soft: #ff7a33;
  --blue: #003087;
  --blue-deep: #1e3a8a;
  --blue-mid: #2a4ea2;
  --violet: #6d28d9;
  --violet-deep: #4725c7;
  --violet-blue: #273fae;
  --text: #0f1f4f;
  --white: #ffffff;
  --shadow: 0 16px 34px rgba(16, 39, 101, 0.16);
  --shadow-soft: 0 10px 24px rgba(28, 58, 138, 0.12);
  --radius: 8px;
  --header-max: 1240px;

  /* News ticker theme colors — derived from navbar gradient */
  --ticker-green: #008f01;
  --ticker-blue: #0075e6;
  --ticker-gold: #ffe066;
  --ticker-gold-dark: #e6c200;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, Roboto, 'Segoe UI', Arial, sans-serif;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

.site-header {
  position: relative;
  inset: 0 0 auto;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(17, 38, 97, 0.1);
}

.utility-row {
  background: var(--white);
  border-bottom: 1px solid rgba(19, 56, 140, 0.08);
}

.utility-inner,
.primary-inner {
  width: min(100%, var(--header-max));
  margin: 0 auto;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  gap: 18px;
}

.utility-inner .brand img {
  height: 110px;
  padding: 11px 0px;
}

.utility-inner .brand img:nth-child(1) {
  margin-bottom: 5px;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-sun {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.brand-word {
  color: var(--orange);
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.8px;
  text-transform: none;
}

.brand-tagline {
  margin-top: 3px;
  padding-left: 35px;
  color: #6a6f80;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.95px;
  text-transform: uppercase;
}

.utility-panel {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.utility-nav {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  white-space: nowrap;
}

.utility-left,
.utility-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.utility-link {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--white);
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
}

.utility-right .utility-link {
  color: var(--blue);
}

.utility-link:hover {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.45);
}

.utility-right .utility-link:hover {
  text-shadow: 0 0 10px rgba(30, 58, 138, 0.24);
}

.utility-left-wrap {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-radius: 0 0 0 16px;
  background: #2758a3;
  box-shadow: var(--shadow-soft);
}

.utility-right {
  gap: 12px;
}

.pipe {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 600;
}

.utility-right .pipe {
  color: rgba(0, 48, 135, 0.55);
}

.login-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 40px;
  padding: 0 20px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--orange-soft), var(--orange));
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(241, 90, 34, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.login-btn:hover,
.apply-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.login-icon,
.phone-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.primary-row {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #008f01, #0075e6);
}

.primary-inner {
  display: flex;
  align-items: center;
  min-height: 56px;
  gap: 20px;
}

.hamburger {
  display: none;
  width: 47px;
  height: 45px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-left: auto;
  background-color: #2758a3;
}

.hamburger-bar {
  position: relative;
  display: block;
  width: 30px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.hamburger-bar::before,
.hamburger-bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.3s ease;
}

.hamburger-bar::before {
  top: -9px;
}

.hamburger-bar::after {
  top: 9px;
}

.menu-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 20px;
}

.primary-menu {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  position: relative;
}

.menu-button,
.menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 8px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1px;
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease,
    background-color 0.3s ease;
}

.menu-button {
  gap: 5px;
}

.menu-button:hover,
.menu-link:hover,
.menu-item.open > .menu-button {
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.caret {
  width: 13px;
  height: 13px;
  transition: transform 0.3s ease;
}

.menu-item.open .caret,
.menu-item:hover .caret {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 208px;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}

.dropdown a {
  display: block;
  padding: 11px 16px;
  color: var(--blue-deep);
  font-size: 16px;
  font-weight: 600;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.dropdown a:hover {
  background: #f7f7f7;
  color: var(--orange);
}

.menu-item:hover .dropdown,
.menu-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  height: 38px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--orange-soft), var(--orange));
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(241, 90, 34, 0.22);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.sticky-shadow {
  box-shadow: 0 12px 26px rgba(10, 31, 95, 0.14);
}

.mobile-overlay {
  display: none;
}

.mobile-close-btn {
  display: none;
}
.mobile-menu-head {
  display: none;
}

/*--- Caraousel Css ---*/

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 45px;
  height: 45px;
  background-size: 100%;
}

.news-ticker-section {
  width: 100%;
  background: linear-gradient(90deg, #007501 0%, #005fb8 100%);
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  border-bottom: 3px solid rgba(0, 0, 0, 0.18);
  box-shadow: 0 4px 18px rgba(0, 100, 30, 0.18);
}

.news-ticker-section .news-ticker-inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: 44px;
}

.news-ticker-section .news-ticker-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px 0 14px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--ticker-gold);
  font-size: 0.79em;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
}

.news-ticker-section .news-ticker-label::after {
  content: '';
  position: absolute;
  right: -13px;
  top: 0;
  bottom: 0;
  width: 0;
  border-style: solid;
  border-width: 22px 0 22px 13px;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.22);
  z-index: 2;
}

.news-ticker-section .ticker-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ticker-gold);
  flex-shrink: 0;
  animation: tickerPulse 1.4s ease-in-out infinite;
}

@keyframes tickerPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.75);
  }
}

.news-ticker-section .news-ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 0 10px 0 24px;
  cursor: default;
}

.news-ticker-section .news-ticker-track::before,
.news-ticker-track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 36px;
  z-index: 1;
  pointer-events: none;
}

.news-ticker-section .news-ticker-track::before {
  left: 0;
  background: linear-gradient(to right, #007501, transparent);
}

.news-ticker-section .news-ticker-track::after {
  right: 0;
  background: linear-gradient(to left, #005fb8, transparent);
}

.news-ticker-section .news-ticker-scroll {
  display: flex;
  align-items: center;
  height: 44px;
  white-space: nowrap;
  animation: tickerScroll 10s linear infinite;
  will-change: transform;
}

.news-ticker-section .news-ticker-scroll:hover,
.news-ticker-scroll.paused {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.news-ticker-section .ticker-news-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 36px;
  font-size: 0.91rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.93);
  letter-spacing: 0.01em;
}

.news-ticker-section .ticker-badge {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  line-height: 1.5;
}

.news-ticker-section .ticker-badge-rate {
  background: rgba(255, 224, 102, 0.22);
  color: var(--ticker-gold);
  border: 1px solid rgba(255, 224, 102, 0.4);
}
.news-ticker-section .ticker-badge-alert {
  background: rgba(255, 80, 60, 0.22);
  color: #ff9a8b;
  border: 1px solid rgba(255, 80, 60, 0.4);
}
.news-ticker-section .ticker-badge-update {
  background: rgba(100, 200, 255, 0.18);
  color: #a8deff;
  border: 1px solid rgba(100, 200, 255, 0.3);
}
.news-ticker-section .ticker-badge-offer {
  background: rgba(80, 255, 160, 0.18);
  color: #7effc2;
  border: 1px solid rgba(80, 255, 160, 0.3);
}

.news-ticker-section .ticker-divider {
  color: var(--ticker-gold);
  opacity: 0.45;
  font-size: 0.75rem;
  padding: 0 6px 0 0;
  flex-shrink: 0;
}

.news-ticker-section .news-ticker-controls {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.news-ticker-section .ticker-ctrl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition:
    color 0.2s,
    background 0.2s;
}

.news-ticker-section .ticker-ctrl-btn:hover {
  color: var(--ticker-gold);
  background: rgba(255, 255, 255, 0.1);
}

/* SECTION BACKGROUND */
.account-section {
  background: linear-gradient(135deg, #f0fff4, #eef5ff);
}

.account-section .deposit-card-main {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.account-section .account-card {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  position: relative;
}

.account-section .account-card i {
  font-size: 28px;
  color: #0075e6;
  padding: 12px 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e6f0ff, #e6fff0);
  transition: 0.3s;
}

.account-section .account-card h6 {
  margin: 0;
  font-weight: 600;
  margin-top: 15px;
}

.account-section .deposit-card-main .col-6 {
  padding: 0;
  border: 2px solid #eef2f7;
}

.account-section .deposit-card-main .col-6:nth-child(1),
.deposit-card-main .col-6:nth-child(2) {
  border-top: none;
}

.account-section .deposit-card-main .col-6:nth-child(1),
.deposit-card-main .col-6:nth-child(3) {
  border-left: none;
}

.account-section .account-card:hover {
  background-color: #0075e6;
  color: #fff;
  /* transform: translateY(-5px); */
}

.account-section .account-card:hover i {
  /* background-color: white; */
  background: white;
  color: #005fb8;
}

.account-section .image-box img {
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/*---- Home Rates & Charges Sec ----*/

.rates-section {
  position: relative;
  background: url('../img/home-rates-charges.webp') center/cover no-repeat;
  padding: 80px 0 60px 0px;
  margin: 50px 0px;
}

.rates-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(133, 133, 133, 0.425);
}

.rates-section .container {
  position: relative;
  z-index: 2;
}

.rates-section h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 35px;
}

.rates-section .rate-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  transition: 0.3s;
  text-align: center;
  border: 1px solid #e6edf5;
}

.rates-section .rate-card i {
  font-size: 30px;
  margin-bottom: 10px;
  color: #0075e6;
  background: linear-gradient(135deg, #e6fff0, #e6f0ff);
  padding: 12px 17px;
  border-radius: 50%;
}

.rates-section .rate-card h4 {
  font-weight: 700;
  color: #008f01;
  margin-top: 18px;
}

.rates-section .rate-card p {
  margin: 0;
  color: #555;
}

.rates-section .rate-card:hover {
  transform: translateY(-6px);
  border-color: #0075e6;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.rates-section .rate-card:hover i {
  background: linear-gradient(90deg, #008f01, #0075e6);
  color: #fff;
}

/* Home Page Loan Section */

.loan-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
}

.loan-section .container {
  max-width: 1290px;
}

.loan-section .section-title h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a2b49;
}

.loan-section .section-title p {
  color: #666;
  margin-bottom: 48px;
}

.loan-section .loan-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid #eef2f7;
}

.loan-section .loan-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s;
}

.loan-section .loan-card:hover img {
  transform: scale(1.08);
}

.loan-section .loan-content {
  padding: 30px;
}

.loan-section .loan-content h4 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a2b49;
}

.loan-section .loan-content p {
  font-size: 15px;
  color: #666;
  line-height: 28px;
  margin-bottom: 18px;
}

.loan-section .loan-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #008f01, #0075e6);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.loan-section .loan-btn i {
  transition: 0.3s ease;
}

.loan-section .loan-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 117, 230, 0.3);
}

.loan-section .loan-btn:hover i {
  transform: translateX(6px);
}

.loan-section .loan-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.loan-section .loan-btn:hover::before {
  left: 130%;
}

.loan-section .loan-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Footer Section Css */

.credit-footer {
  background: linear-gradient(135deg, #127912, #1965b1);
  color: #fff;
  padding: 60px 0 25px;
}

.credit-footer .container {
  max-width: 1250px;
}

.credit-footer .footer-logo {
  text-decoration: none;
  color: #f5f5f5;
}

.credit-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 0px;
  margin-bottom: 15px;
}

.credit-footer .footer-brand img {
  height: 109px;
  background-color: white;
  border-radius: 20%;
  margin-right: 18px;
  padding: 5px 6px;
}

.credit-footer .footer-brand h4 {
  font-size: 26px;
  font-weight: 700;
  padding-top: 5px;
  letter-spacing: 0.5px;
  margin: 0;
}

.credit-footer .footer-about {
  font-size: 16.5px;
  padding-left: 8px;
  line-height: 1.9;
  color: white;
  margin-bottom: 18px;
}

.credit-footer .dicgc-ff-img {
  width: 45%;
  border-radius: 5px;
}

.credit-footer .footer-social {
  display: flex;
  gap: 14px;
}

.credit-footer .footer-social a {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: rgb(255 255 255 / 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}

.credit-footer .footer-social a:hover {
  background: #ffe1e1;
  color: #9c1212;
  transform: translateY(-4px);
}

.credit-footer .footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20.5px;
  position: relative;
}

.credit-footer .footer-title::after {
  content: '';
  width: 43px;
  height: 2px;
  background: #ffffff;
  display: block;
  margin-top: 9px;
}

.credit-footer .footer-links {
  list-style: none;
  padding: 0;
}

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

.credit-footer .footer-links a {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.credit-footer .footer-links i {
  margin-right: 6px;
  font-size: 14px;
}

.credit-footer .footer-links a:hover {
  color: #e0f0ff;
  padding-left: 6px;
}

.credit-footer .footer-contact {
  list-style: none;
  padding: 0;
}

.credit-footer .footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 12px;
}

.credit-footer .footer-contact .contact-icon-ff {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.233);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.credit-footer .footer-divider {
  border-color: rgb(255, 255, 255);
  margin: 35px 0 15px;
}

.credit-footer .footer-bottom {
  font-size: 15px;
  color: #f2f2f2;
}

.credit-footer .home-title {
  font-size: 35px;
  font-family: 600;
}

/*--- Home Youtube Video Sec ---*/
.video-section {
  padding: 70px 0;
  background: #f8fbff;
}

.video-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.video-section .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a2b49;
  margin-bottom: 10px;
}

.video-section .section-header p {
  color: #666;
}

.video-section .video-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid #eef2f7;
}

.video-section .video-box {
  width: 100%;
  height: 200px;
}

.video-section .video-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-section .video-card h6 {
  padding: 12px;
  font-weight: 600;
  color: #1a2b49;
  margin: 0;
}

.video-section .video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}



/* Introduction Css */

.intro-section {
  padding: 80px 0;
  background: #f8fbff;
}

.intro-section .intro-img img {
  border-radius: 12px;
  transition: 0.4s;
}

.intro-section .intro-img img:hover {
  transform: scale(1.03);
}

.intro-section .intro-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a2b49;
}

.intro-section .intro-content p {
  color: #555;
  line-height: 28px;
  margin-bottom: 15px;
}



/* Board  Of Director Css */

.director-section {
  padding: 80px 0;
  background: #f8fbff;
}

.director-section .section-title h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1a2b49;
  margin-bottom: 10px;
}

.director-section .section-title p {
  color: #666;
  margin-bottom: 40px;
}

.director-section .director-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  transition: 0.3s;
  border: 1px solid #eef2f7;
  position: relative;
  overflow: hidden;
}

.director-section .director-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  margin-bottom: 15px;
  padding: 4px;
  background: linear-gradient(90deg, #008f01, #0075e6);
}

.director-section .director-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1a2b49;
}

.director-section .director-card span {
  font-size: 14px;
  color: #0075e6;
}

.director-section .director-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.director-section .director-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #008f01, #0075e6);
  transform: scaleX(0);
  transition: 0.3s;
}

.director-section .director-card:hover::after {
  transform: scaleX(1);
}



/* Saving Account CSS */

.saving-section{
    background:#f6faff;
    padding:60px 0;
}

.saving-section .container{
    max-width:1100px;
}

.saving-section .saving-title{
    font-weight:700;
    color:#222;
    font-size:34px;
    letter-spacing:0.5px;
}

.saving-section .saving-title span{
    background: linear-gradient(90deg, #008f01, #0075e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.saving-section .saving-subtitle{
    color:#6c757d;
    font-size:15px;
    margin-top:6px;
}

.saving-section .saving-table{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    margin-top:25px;
}

.saving-section .saving-table thead{
    background: linear-gradient(90deg, #008f01, #0075e6);
}

.saving-section .saving-table thead th{
    background: transparent;
    color:#fff;
    padding:15px;
    font-weight:600;
    border:none;
    font-size: 16px;
}

.saving-section .saving-table td{
    padding:15px;
    border-color:#eef2f7;
    font-size:16px;
    color:#333;
}

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

.saving-section .saving-table tbody tr{
    transition:0.25s;
}

.saving-section .saving-table tbody tr:hover{
    background:#eef6ff;
}

.saving-section .saving-note{
    background:#ffffff;
    border-left:4px solid #0075e6;
    padding:16px;
    border-radius:8px;
    font-size:15px;
    margin-top:25px;
    box-shadow:0 5px 15px rgba(0,0,0,0.04);
}

.saving-section .saving-note p{
    margin:6px 0;
}

.saving-section .documents-section{
    margin-top:45px;
}

.saving-section .doc-title{
    font-weight:600;
    margin-bottom:18px;
    font-size:20px;
    color:#222;
}

.saving-section .doc-card{
    background:#fff;
    padding:18px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 6px 18px rgba(0,0,0,0.06);
    font-weight:500;
    font-size:15px;
    transition:0.25s;
    border:1px solid #f0f3f7;
}

.saving-section .doc-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(0,0,0,0.08);
      background: linear-gradient(90deg, #008f01, #007df1);
      color: white;
}





/* Home Loan Section Css */
.loan-section-hh{
    background:#f6faff;
    padding:60px 0;
}

.loan-section-hh .container{
    max-width:1170px;
}

.loan-section-hh .loan-title{
    font-weight:700;
    font-size:34px;
    color:#222;
}

.loan-section-hh .loan-subtitle{
    color:#6c757d;
    font-size:15px;
    margin-top:5px;
}

.loan-section-hh .loan-table{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    margin-top:20px;
    border:none;
}

.loan-section-hh .loan-table thead{
    background: linear-gradient(90deg, #008f01, #0075e6);
}

.loan-section-hh .loan-table thead th{
    background:transparent;
    color:#fff;
    padding:15px;
    font-weight:600;
    border:none;
}

.loan-section-hh .loan-table td{
    padding:15px;
    font-size:15px;
    border-color:#eef2f7;
}

.loan-section-hh .loan-table tbody tr:nth-child(even){
    background:#f9fcff;
}

.loan-section-hh .loan-table tbody tr:hover{
    background:#eef6ff;
}

.loan-section-hh .fd-box{
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
    height:100%;
    transition:0.3s;
    position:relative;
    overflow:hidden; 
}

.loan-section-hh .fd-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background: linear-gradient(90deg, #008f01, #0075e6);
     border-top-left-radius:20px;
    border-top-right-radius:20px;
}
.loan-section-hh .fd-box:hover{
    transform:translateY(-4px);
}

.loan-section-hh .fd-title{
    font-weight:600;
    font-size:18px;
    margin-bottom:15px;
    margin-top: 4px;
    letter-spacing: 0.5px;
    color:#222;
    position:relative;
}

.loan-section-hh .fd-title::after{
    content:"";
    width:40px;
    height:2px;
    background: linear-gradient(90deg, #008f01, #0075e6);
    position:absolute;
    left:0;
    bottom:-6px;
    border-radius:5px;
}

.loan-section-hh .fd-list{
    list-style:none;
    padding:0;
    margin-top:15px;
}

.loan-section-hh .fd-list li{
    font-size:15px;
    padding:8px 0;
    border-bottom:1px solid #f1f3f7;
    color:#333333;
    display:flex;
    align-items:center;
}

.loan-section-hh .fd-list li::before{
    content:"✔";
    color:#008f01;
    margin-right:10px;
    font-size:13px;
}

.loan-section-hh .fd-list li:last-child{
    border-bottom:none;
}





/* Other Services CSS */

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

.other-services-section .services-title{
    font-weight:700;
    font-size:34px;
    color:#222;
    letter-spacing: 0.5px;
}

.other-services-section .services-title span{
    background: linear-gradient(90deg, #008f01, #0075e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.other-services-section .services-subtitle{
    color:#6c757d;
    font-size:14px;
    margin-top:5px;
}

.other-services-section .service-card{
    background:#fff;
    padding:20px;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
    height:100%;
    transition:0.3s;
    border-top: 4px solid #64b664;
    border-radius: 12px;
}

.other-services-section .service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.other-services-section .service-card h5{
    font-weight:600;
    margin-bottom:8px;
    color:#222;
}

.other-services-section .service-card p{
    font-size:14px;
    color:#555;
    margin:0;
}




/* Pradhan Mantri Yojana Css */
.yojana-section{
    background:#f6faff;
    padding:60px 0;
}

.yojana-section .yojana-title{
    font-weight:700;
    font-size:34px;
    color:#222;
    letter-spacing: 0.5px;
}

.yojana-section .yojana-subtitle{
    color:#6c757d;
    font-size:14px;
    margin-top:5px;
}

.yojana-section .yojana-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:0.3s;
    height: 100%;
}

.yojana-section .yojana-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.yojana-section .yojana-img img{
    width:100%;
    height:210px;
    object-fit:cover;
}

.yojana-section .yojana-content{
    padding:20px;
}

.yojana-section .yojana-content h5{
    font-weight:600;
    margin-bottom:8px;
    color:#222;
}

.yojana-section .yojana-content p{
    font-size:14px;
    color:#555;
    margin-bottom:15px;
}

.yojana-section .yojana-btn{
    display:inline-block;
    padding:8px 18px;
    font-size:14px;
    background: linear-gradient(90deg, #008f01, #0075e6);
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.yojana-section .yojana-btn:hover{
    opacity:0.9;
}



/* Branches Page CSS */

.branch-section{
    background:#f4f9ff;
    padding:60px 0;
}

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

.branch-section .branch-title{
    font-weight:700;
    font-size:34px;
    color:#222;
    letter-spacing: 0.5px;
}

.branch-section .branch-title span{
    background: linear-gradient(90deg, #008f01, #0075e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.branch-section .branch-subtitle{
    color:#6c757d;
    font-size:15px;
}

.branch-section .branch-card{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    transition:0.3s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.branch-section .branch-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background: linear-gradient(90deg, #008f01, #0075e6);
}

.branch-section .branch-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.branch-section .branch-card h5{
    font-weight:600;
    margin-bottom:15px;
    color:#222;
    font-size: 21px;
    text-align: center;
}

.branch-section .branch-info{
    list-style:none;
    padding:0;
    margin-bottom:12px;
}

.branch-section .branch-info li{
    font-size:16px;
    margin-bottom:6px;
    color:#444;
}

.branch-section .branch-map{
    border-radius:8px;
    overflow:hidden;
    margin-top:10px;
}

.branch-section .branch-map iframe{
    width:100%;
    height:180px;
    border:0;
}




/* Contact Page Css */

.contact-section{
    background:#f6faff;
    padding:60px 0;
}

.contact-section .contact-title{
    font-weight:700;
    font-size:34px;
    color:#222;
    letter-spacing: 0.5px;
}

.contact-section .contact-subtitle{
    color:#6c757d;
    font-size:15px;
}

.contact-section .contact-box{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    height:100%;
    position:relative;
    overflow:hidden;
}

.contact-section .contact-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background: linear-gradient(90deg, #008f01, #0075e6);
}

.contact-section .contact-box h5{
    font-weight:600;
    margin-bottom:15px;
    font-size: 25px;
}

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

.contact-section .contact-info li{
    font-size:16.5px;
    margin-bottom:10px;
    color:#444;
}

.contact-section .contact-map{
    height:100%;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.contact-section .contact-map iframe{
    width:100%;
    height:100%;
    min-height:300px;
    border:0;
}



/* Customer Grievance CSS */

/* SECTION */

.grievance-section{
    background:#f4f8ff;
    padding:60px 0;
}

/* FORM WRAPPER */

.grievance-section .form-wrapper{
    background:#fff;
    padding:35px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    position:relative;
    overflow:hidden;
}

/* gradient top line */
.grievance-section .form-wrapper::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background: linear-gradient(90deg, #008f01, #0075e6);
}

/* TITLE */

.grievance-section .form-title{
    font-weight:700;
    font-size:27px;
    margin-bottom:5px;
}

.grievance-section .form-subtitle{
    font-size:14px;
    color:#6c757d;
    margin-bottom:20px;
}

/* INPUT */

.grievance-section .modern-input{
    border-radius:8px;
    height:45px;
    border:1px solid #e2e6ea;
    transition:0.25s;
    font-size:14px;
    padding:10px 12px;
}

.grievance-section textarea.modern-input{
    height:auto;
    min-height:120px;
    resize:none;
}

/* FOCUS */

.grievance-section .modern-input:focus{
    border-color:#0075e6;
    box-shadow:0 0 0 2px rgba(0,117,230,0.12);
}

/* BUTTON */

.grievance-section .submit-btn{
    position:relative;
    display:inline-block;
    font-weight:600;
    background: linear-gradient(90deg, #008f01, #0075e6);
    color:#fff;
    padding:11px 28px;
    border-radius:30px;
    border:none;
    text-decoration:none;
    transition:0.3s;
    overflow:hidden;
    z-index:1;
}

/* hover overlay effect */
.grievance-section .submit-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: linear-gradient(90deg, #0075e6, #008f01);
    transform:translateX(-100%);
    transition:0.3s;
    z-index:-1;
}

.grievance-section .submit-btn:hover::before{
    transform:translateX(0);
}

.grievance-section .submit-btn:hover{
    box-shadow:0 8px 20px rgba(0,117,230,0.3);
}

/* VALIDATION */

.modern-input.is-invalid,
.form-select.is-invalid{
    border:2px solid #dc3545 !important;
}

/* OPTIONAL LABEL SPACING */

.grievance-section label{
    font-size:14px;
    margin-bottom:5px;
    font-weight:500;
}






@media (max-width: 1024px) {
  .utility-inner,
  .primary-inner {
    padding: 0 16px;
  }

  .utility-left-wrap {
    padding: 11px 14px;
  }

  .utility-nav,
  .utility-left,
  .utility-right {
    gap: 9px;
  }

  .brand {
    width: 184px;
    min-width: 184px;
  }

  .brand-word {
    font-size: 27px;
  }

  .primary-menu {
    gap: 3px;
  }

  .menu-button,
  .menu-link {
    font-size: 14px;
    padding: 0 7px;
  }

  .primary-actions {
    gap: 12px;
  }

  .phone-link {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .mobile-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
  }

  .mobile-menu-head img {
    width: 28%;
  }

  .utility-inner {
    min-height: 50px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .utility-left-wrap,
  .utility-right {
    display: none;
  }

  .utility-panel {
    justify-content: flex-end;
  }

  .brand {
    width: auto;
    min-width: 0;
  }

  .brand-word {
    font-size: 25px;
  }

  .brand-tagline {
    font-size: 8px;
  }

  .primary-inner {
    min-height: 4px;
    flex-wrap: wrap;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .hamburger {
    display: inline-flex;
  }

  .mobile-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.4s;
  }

  .mobile-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .menu-shell {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 20px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
  }

  .menu-shell.open {
    right: 0;
  }

  .mobile-close-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    background: #f1f5fa;
    border-radius: 50%;
    color: var(--blue-deep);
    cursor: pointer;
    transition:
      background 0.3s ease,
      transform 0.3s ease;
  }

  .mobile-close-btn:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
  }

  .primary-menu {
    grid-template-columns: 1fr;
    gap: 8px;
    background: transparent;
    border-radius: 0;
  }

  .menu-item {
    border-bottom: 1px solid #f1f5fa;
  }

  .menu-item:last-child {
    border-bottom: none;
  }

  .menu-button,
  .menu-link {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    padding: 0 4px;
    text-align: left;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
  }

  .menu-button:hover,
  .menu-link:hover,
  .menu-item.open > .menu-button {
    text-shadow: none;
    background: #f8fafc;
    color: var(--orange);
    padding-left: 12px;
  }

  .caret path {
    stroke: #64748b;
  }

  .menu-button:hover .caret path,
  .menu-item.open > .menu-button .caret path {
    stroke: var(--orange);
  }

  .dropdown {
    position: static;
    min-width: 100%;
    max-height: 0;
    padding: 0;
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    overflow: hidden;
    transition:
      max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      padding 0.4s ease;
  }

  .menu-item:hover .dropdown {
    max-height: 0;
    padding: 0;
  }

  .menu-item.open .dropdown {
    max-height: 400px;
    padding: 4px 0 16px 12px;
  }

  .dropdown a {
    font-size: 15px;
    padding: 10px 12px;
    color: #475569;
    border-radius: 8px;
    margin-bottom: 4px;
  }

  .dropdown a:hover {
    background: #eff6ff;
    color: var(--blue-mid);
    padding-left: 18px;
  }

  .primary-actions {
    margin-top: 15px;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    width: 100%;
    padding: 0 4px;
  }

  .phone-link {
    color: var(--text);
    font-size: 16px;
    width: 100%;
  }

  .phone-link .phone-icon path {
    stroke: var(--blue-deep);
  }

  .phone-link:hover {
    color: var(--orange);
  }
  .phone-link:hover .phone-icon path {
    stroke: var(--orange);
  }

  /* Media 991 Home-Deposit */

  .account-section {
    text-align: center;
  }


  /*--- Introduction  Css ---*/

   .intro-section .intro-content {
    margin-top: 30px;
    text-align: center;
  }


}







@media (max-width: 576px) {
  .carousel-inner img{
  height: 180px;
}
  .utility-inner .brand img {
    height: 95px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 25px;
    height: 25px;
  }

  /*--- Media576 News Section ---*/

  .news-ticker-section .news-ticker-label span.ticker-label-text {
    display: none;
  }
  
}

@media (max-width: 480px) {
  .utility-inner,
  .primary-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand-logo {
    gap: 5px;
  }

  .brand-sun {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .brand-word {
    font-size: 22px;
  }

  .brand-tagline {
    padding-left: 29px;
    letter-spacing: 0.7px;
  }

  .login-btn {
    height: 36px;
    padding: 0 15px;
    font-size: 14px;
  }

  .primary-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .phone-link,
  .apply-btn {
    font-size: 14px;
  }

  .apply-btn {
    min-width: 84px;
  }
}

@media (max-width: 350px) {
    .carousel-inner img{
  height: 145px;
}
}
