@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');

:root {
  --bg-color: #fef9ee;
  --card-bg: #ffffff;

  /* New Orange Gradient Theme Colors - Matching Navbar */
  --primary-color: #fe980b;
  --primary-dark: #e88a00;
  --primary-light: #ffa82e;
  --primary-gradient: linear-gradient(90deg, #fe980b, #ff9412, #ff9a0c);
  --secondary-color: #ff9412;
  --principal-color: #e88a00;

  --text-main: #1c1005;
  --text-muted: #8a6e3d;
  --border-color: #ffe0a3;
  --slider-track: #ffe0a3;

  /* Additional utility variables */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 25px rgba(254, 152, 11, 0.08);
  --shadow-lg: 0 15px 35px rgba(254, 152, 11, 0.12);
  --shadow-xl: 0 20px 40px rgba(254, 152, 11, 0.1);
  --transition-fast: 0.3s ease;
  --transition-smooth: 0.35s ease;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;
  --border-radius-full: 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arimo', sans-serif;
}

/* Reset & Base Styles */
body {
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.5;
}

a {
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
}

/* Header Styles */
.top-header {
  position: relative;
  height: 120px;
  background: #ffffff;
  /* background: linear-gradient(135deg, #fff5e6, #ffe8d4); */
  overflow: hidden;
}

.header-content {
  position: relative;
  z-index: 2;
  padding-left: 40px;
  display: flex;
  align-items: center;
  height: 100%;
}

.header-content a {
  text-decoration: none;
}

.header-curve {
  position: absolute;
  right: 0;
  top: 0;
  width: 74%;
  height: 100%;
  z-index: 1;
}

.right-content {
  position: absolute;
  width: 196px;
  /* height: 178px; */
  right: 10px;
}

.left-content {
  display: flex;
  align-items: center;
  gap: 2px;
}

.left-content img {
  width: 11%;
  margin-right: 8px;
}

.left-content h2 {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  padding-top: 5px;
  text-decoration: none;
}

/* Menu Icon */
.menu-icon {
  position: absolute;
  right: 36px;
  top: 33%;
  transform: translateY(-50%);
  width: 44px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 23%;
  font-size: 23px;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 5;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  display: none;
}

.menu-icon:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

/* Navbar - Orange Gradient */
.bank-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #fe980b, #ff9412, #ff9a0c);
  box-shadow: 0 4px 15px rgba(254, 152, 11, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 999;
  padding: 0 40px;
}

.mega-parent {
  position: static !important;
}

.bank-menu {
  display: flex;
  margin-bottom: 0px;
  gap: 35px;
  list-style: none;
  padding: 15px 15px;
}

.bank-menu li {
  position: relative;
}

.bank-menu a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  line-height: 1.5;
  font-size: 16px;
  transition: var(--transition-fast);
  padding: 5px 0;
  position: relative;
}

.bank-menu a:hover {
  color: #fff5e6;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Underline Animation */
.mega-column a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #ffffff;
  transition: var(--transition-fast);
}

.mega-column a:hover::after {
  width: 100%;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  /* background: rgba(255, 248, 230, 0.98); */
  background: rgb(255 248 230 / 92%);
  padding: 40px 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-xl);
}

.mega-parent:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-container {
  display: flex;
  gap: 70px;
}

.mega-column {
  display: flex;
  flex-direction: column;
  min-width: 180px;
}

.mega-column h4 {
  font-size: 18.5px;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 700;
}

.mega-column a {
  font-size: 17px;
  margin: 6px 0;
  font-weight: 700;
  color: #444;
}

.mega-column a:hover {
  color: var(--primary-color);
}

/* Highlight Card */
.highlight-box {
  background: var(--primary-gradient);
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  max-width: 260px;
  box-shadow: 0 10px 25px rgba(254, 152, 11, 0.25);
  transition: var(--transition-fast);
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(254, 152, 11, 0.35);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.highlight-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
}

.highlight-box p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.btn-mega {
  background: #fff;
  color: var(--primary-color) !important;
  text-align: center;
  padding: 7px 16px !important;
  border-radius: 14px;
  font-size: 15px !important;
  font-weight: 600 !important;
  display: inline-block;
  transition: var(--transition-fast);
  text-decoration: none;
}

.btn-mega:hover {
  background: var(--primary-gradient);
  color: #fff !important;
}

/* Complaint Button */
.complaint-btn {
  position: relative;
  display: inline-block;
  background: #ffffff;
  color: var(--primary-color);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.complaint-btn::before {
  content: '';
  background: linear-gradient(45deg, #fe980b, #ff9412);
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: left top;
  z-index: -1;
  border-radius: 100px;
  transition: transform var(--transition-smooth);
}

.complaint-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 18px rgba(254, 152, 11, 0.3);
  color: #fff;
}

.complaint-btn:hover::before {
  transform: translate(0, 0) rotate(0deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #fef9ee 100%);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
  transition: 0.4s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: linear-gradient(90deg, #fe980b, #ff9412);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-header h3 {
  font-size: 18px;
  font-weight: 600;
}

.close-menu {
  width: 46px;
  height: 45px;
  background: #fff;
  color: var(--primary-color);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 23%;
}

.mobile-nav {
  list-style: none;
  padding: 10px 0;
}

.mobile-nav .has-dropdown>a {
  position: relative;
  display: block;
  padding: 14px 22px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.mobile-nav .has-dropdown>a::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
  transition: var(--transition-fast);
}

.has-dropdown.active>a::after {
  transform: translateY(-50%) rotate(-135deg);
}

.dropdown {
  max-height: 0;
  overflow: hidden;
  background: #fef9ee;
  transition: var(--transition-fast);
}

.dropdown li {
  border-bottom: 1px solid #fde68a;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav li:last-child,
.dropdown li:last-child {
  border-bottom: none;
}

.dropdown li a {
  display: block;
  padding: 12px 35px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.has-dropdown.active .dropdown {
  max-height: 400px;
}

.mobile-nav li a {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: var(--transition-fast);
}

.mobile-nav li a:hover {
  background: #fff0e0;
  color: var(--primary-color);
}

.menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(254, 152, 11, 0.24);
  backdrop-filter: blur(1px);
  transition: 0.4s;
  z-index: 998;
}

.menu-overlay.active {
  right: 0;
}

.mobile-header img {
  width: 27%;
  padding: 2px;
  background: white;
  border-radius: 15%;
}

/* Carousel Slider */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: var(--transition-fast);
}

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

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 25px;
  height: 25px;
  transition: all var(--transition-fast);
  filter: invert(40%) sepia(70%) saturate(500%) hue-rotate(5deg) drop-shadow(0 0 1px rgba(0, 0, 0, 0.6));
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--primary-gradient);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1) drop-shadow(0 0 1px rgba(0, 0, 0, 0.6));
}

.carousel-indicators {
  bottom: 2px;
}

.carousel-indicators [data-bs-target] {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #a5a5a5c7;
  opacity: 0.5;
  margin: 0 6px;
  transition: var(--transition-fast);
  border: none;
}

.carousel-indicators .active {
  background: var(--primary-color);
  opacity: 1;
  transform: scale(1.4);
}

/* News Ticker */
.ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
}

.ticker-move {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: tickerScroll 15s linear infinite;
  color: #fff;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16.5px;
  line-height: 1.6;
}

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

  100% {
    transform: translateX(-100%);
  }
}

.ticker-wrap:hover .ticker-move {
  animation-play-state: paused;
}

.home-news-sec .container {
  position: relative;
  background: linear-gradient(110deg, #fe980b 60%, #ff9412 60%);
  font-family: 'Oswald', serif;
  max-width: 100%;
}

.home-news-sec .container .headertext {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 11px 11px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  background: var(--primary-color);
  color: #fff;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-size: 16.5px;
  border-radius: 0 4px 4px 0;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

/* Deposit Section */
.deposit-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.deposit-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #fe980b20, #ff941220);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  filter: blur(60px);
}

.deposit-section .deposit-left h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 15px;
}

.deposit-section .deposit-left span {
  color: var(--primary-color);
}

.deposit-section .deposit-left p {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
  font-size: 15.5px;
}

.deposit-section .deposit-btn {
  position: relative;
  display: inline-block;
  padding: 13px 32px;
  border-radius: 40px;
  background: var(--primary-gradient);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  overflow: hidden;
  z-index: 1;
}

.deposit-section .deposit-btn::before {
  content: '';
  background: linear-gradient(45deg, #e88a00, #fe980b);
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: left top;
  z-index: -1;
  border-radius: 100px;
  transition: transform var(--transition-smooth);
}

.deposit-section .deposit-btn:hover::before {
  transform: translate(0, 0) rotate(0deg);
}

.deposit-section .deposit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.deposit-section .deposit-card:nth-child(2),
.deposit-card:nth-child(4) {
  margin-top: 32px;
}

.deposit-section .deposit-card {
  background: #fff;
  padding: 35px;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.deposit-section .deposit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.deposit-section .deposit-card:hover::before {
  opacity: 0.09;
}

.deposit-section .deposit-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 50px rgba(254, 152, 11, 0.15);
}

.deposit-section .icon-circle {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
  margin-bottom: 18px;
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 8px 20px rgba(254, 152, 11, 0.3);
  transition: all var(--transition-fast);
}

.deposit-section .deposit-card:hover .icon-circle {
  background: rgb(255, 255, 255);
  color: var(--primary-color);
}

.deposit-section .deposit-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.deposit-section .deposit-card p {
  font-size: 15.5px;
  color: #666;
  position: relative;
  z-index: 2;
}

.deposit-section .deposit-features {
  margin: 20px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.deposit-section .deposit-features span {
  background: #fff0e0;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
}

.deposit-section .section-subtitle {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary-color);
}

/* Services Section */
.services-section {
  padding-top: 60px;
  padding-bottom: 50px;
  background: #fff5e6;
  position: relative;
  width: 100%;
  overflow: hidden;
}

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

.services-section .services-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}

.services-section .services-title h2 span {
  color: var(--primary-color);
}

.services-section .services-title h2::after {
  content: '';
  width: 18%;
  height: 3px;
  background: var(--primary-gradient);
  display: block;
  margin-top: 12px;
  border-radius: 4px;
}

.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px 25px;
}

.services-section .service-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px 0px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 25px rgba(254, 152, 11, 0.06);
  overflow: hidden;
}

.services-section .service-card::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #fe980b20, #ff941220);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  opacity: 0;
  transition: 0.4s;
}

.services-section .service-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
}

.services-section .service-card img {
  width: 45px;
  margin-bottom: 14px;
  transition: 0.4s;
}

.services-section .service-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.services-section .service-card:hover {
  transform: translateY(10px) scale(1.03);
  box-shadow: 0 18px 45px rgba(254, 152, 11, 0.12);
}

.services-section .service-card:hover::before {
  opacity: 1;
}

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

.services-section .service-card:hover img {
  transform: scale(1.12) rotate(3deg);
}

.services-section .services-img img {
  max-width: 100%;
  height: 530px;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.15));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Loan Swiper Section */
.loan-section {
  padding: 70px 0;
  background: #ffffff;
}

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

.loan-section .section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.loan-section .section-title h2 span {
  color: var(--primary-color);
}

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

.loan-section .loan-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
  position: relative;
}

.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;
}

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

.loan-section .loan-btn {
  position: relative;
  display: inline-block;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  background: var(--primary-gradient);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition-fast);
  overflow: hidden;
  z-index: 1;
}

.loan-section .loan-btn::before {
  content: '';
  background: linear-gradient(45deg, #e88a00, #fe980b);
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: left top;
  z-index: -1;
  border-radius: 100px;
  transition: transform var(--transition-smooth);
}

.loan-section .loan-btn:hover::before {
  transform: translate(0, 0) rotate(0deg);
}

.loan-section .loan-btn i {
  transition: var(--transition-fast);
  padding-left: 1px;
}

.loan-section .loan-btn:hover {
  box-shadow: 0 14px 17px rgba(254, 152, 11, 0.4);
}

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

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

/* EMI Calculator Section */
.emi-cal-main-sec {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin-bottom: 50px;
  margin-top: 10px;
  overflow-x: hidden;
}

.emi-cal-main-sec .emi-widget {
  background-color: var(--bg-color);
  border-radius: var(--border-radius-md);
  padding: 40px;
  width: 100%;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(254, 152, 11, 0.06);
}

.emi-cal-main-sec .calculator-title {
  text-align: center;
  color: var(--text-main);
  font-size: 33px;
  font-weight: 700;
  margin-bottom: 40px;
}

.emi-cal-main-sec .calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.emi-cal-main-sec .left-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.emi-cal-main-sec .input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.emi-cal-main-sec .input-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.emi-cal-main-sec .input-header label {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-main);
}

.emi-cal-main-sec .input-box {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 6px 10px;
  width: 120px;
}

.emi-cal-main-sec .input-box input {
  border: none;
  outline: none;
  width: 100%;
  text-align: right;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  background: transparent;
}

.emi-cal-main-sec .prefix,
.suffix {
  font-size: 17px;
  color: var(--text-main);
  font-weight: 500;
}

.emi-cal-main-sec .prefix {
  margin-right: 5px;
}

.emi-cal-main-sec .suffix {
  margin-left: 5px;
}

.emi-cal-main-sec .slider-wrapper {
  position: relative;
  width: 100%;
  padding: 5px 0;
}

.emi-cal-main-sec .range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--slider-track);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.emi-cal-main-sec .range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #fff;
  border: 5.5px solid var(--primary-color);
  cursor: pointer;
  margin-top: -8px;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 0 1px #fff inset;
}

.emi-cal-main-sec .range-slider::-moz-range-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #fff;
  border: 5.5px solid var(--primary-color);
  cursor: pointer;
}

.emi-cal-main-sec .slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 14px;
  color: #8a94a6;
  font-weight: 500;
}

.emi-cal-main-sec .emi-result-container {
  background-color: #ffffff;
  padding: 20px;
  border-radius: var(--border-radius-md);
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border: 1px dotted var(--primary-color);
}

.emi-cal-main-sec .emi-result-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}

.emi-cal-main-sec .emi-amount-display {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.emi-cal-main-sec .emi-label {
  font-size: 21px;
  color: var(--text-main);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.emi-cal-main-sec .emi-value {
  font-size: 24.5px;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary-color);
  display: inline-block;
}

.emi-cal-main-sec .cta-button {
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: var(--border-radius-sm);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: inherit;
}

.emi-cal-main-sec .cta-button:hover {
  opacity: 0.9;
}

.emi-cal-main-sec .emi-note {
  font-size: 11px;
  color: var(--text-muted);
}

.emi-cal-main-sec .right-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.emi-cal-main-sec .chart-card {
  background-color: #ffffff;
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.emi-cal-main-sec .donut-chart-container {
  position: relative;
  width: 280px;
  height: 280px;
  margin-bottom: 40px;
}

.emi-cal-main-sec .chart-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  width: 100%;
}

.emi-cal-main-sec .center-label {
  font-size: 14px;
  color: #7b8698;
  margin-bottom: 4px;
}

.emi-cal-main-sec .center-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
}

.emi-cal-main-sec .chart-legend {
  display: flex;
  gap: 25px;
  justify-content: center;
  width: 100%;
}

.emi-cal-main-sec .legend-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.emi-cal-main-sec .legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 4px;
}

.emi-cal-main-sec .principal-dot {
  background-color: var(--principal-color);
}

.emi-cal-main-sec .interest-dot {
  background-color: var(--secondary-color);
}

.emi-cal-main-sec .legend-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.emi-cal-main-sec .item-label {
  font-size: 14px;
  color: #7b8698;
}

.emi-cal-main-sec .item-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}

/* Footer */
.credit-footer {
  background: linear-gradient(90deg, #fe980b, #ff9412, #ff9a0c);
  color: #fff;
  padding: 60px 0 25px;
}

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

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

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

.credit-footer .footer-brand img {
  height: 93px;
  margin-right: 8px;
}

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

.credit-footer .footer-about {
  font-family: "DM Sans", sans-serif;
  font-size: 16.5px;
  padding-left: 8px;
  line-height: 1.9;
  /* color: #000000; */
  margin-bottom: 18px;
}

.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: var(--transition-fast);
  text-decoration: none;
}

.credit-footer .footer-social a:hover {
  background: #fff0e0;
  color: var(--primary-color);
  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: #fff5e6;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.credit-footer .footer-links a:hover {
  color: #ffffff;
  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: rgba(255, 255, 255, 0.3);
  margin: 35px 0 15px;
}

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

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

/* Page Header */
.page-header {
  position: relative;
  padding: 90px 0;
  background: rgb(0 0 0 / 44%);
  overflow: hidden;
}

.page-header .page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.page-header .breadcrumb-icon-home {
  margin-right: 7px;
  font-size: 14px;
}

.page-header .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-header .page-header__title {
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.page-header .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 16px;
}

.page-header .breadcrumb li {
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
}

.page-header .breadcrumb li a {
  color: #fff;
  text-decoration: none;
}

.page-header .breadcrumb li::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 10px;
  font-size: 15px;
}

.page-header .breadcrumb li:last-child::after {
  display: none;
}

/* Introduction Page */
.bank-intro-section {
  background: #fef9ee;
}

.bank-intro-section .bank-image img {
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 30px rgba(254, 152, 11, 0.12);
}

.bank-intro-section .section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.bank-intro-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1c1005;
  margin-bottom: 20px;
}

.bank-intro-section .bank-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Board of Directors */
.director-section {
  background: #fef9ee;
}

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

.director-section .director-title {
  font-size: 40px;
  font-weight: 700;
}

.director-section .director-title span {
  color: var(--primary-color);
}

.director-section .director-card {
  background: #fff;
  padding: 30px 11px;
  text-align: center;
  border-radius: var(--border-radius-md);
  box-shadow: 0 5px 20px rgba(254, 152, 11, 0.08);
  transition: var(--transition-smooth);
  overflow: hidden;
  height: 100%;
}

.director-section .director-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(254, 152, 11, 0.15);
}

.director-section .director-img-box {
  width: 150px;
  height: 74%;
  margin: auto;
  /* border-radius: 50%; */
  overflow: hidden;
  margin-bottom: 18px;
  border: 5px solid #fff0e0;
  transition: var(--transition-smooth);
}

.director-section .director-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.director-section .director-card:hover .director-img-box {
  border-color: var(--primary-color);
}

.director-section .director-card:hover img {
  transform: scale(1.15);
}

.director-section .director-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.director-section .director-card span {
  font-size: 15px;
  color: #000000;
  font-weight: 800;
}

/* Savings Account */
.saving-section {
  background: #fef9ee;
}

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

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

.saving-section .saving-title span {
  color: var(--primary-color);
}

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

.saving-section .saving-table {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(254, 152, 11, 0.07);
}

.saving-section .saving-table thead th {
  background: var(--primary-gradient);
  color: #fff;
  padding: 15px;
  font-weight: 600;
  border: none;
}

.saving-section .saving-table td {
  padding: 14px;
  vertical-align: middle;
}

.saving-section .saving-table tbody tr:hover {
  background: #fff0e0;
  transition: var(--transition-fast);
}

.saving-section .saving-note {
  background: #fff0e0;
  border-left: 4px solid var(--primary-color);
  padding: 15px 18px;
  border-radius: var(--border-radius-sm);
  font-size: 15px;
}

.saving-section .saving-note .loan-note-hh {
  font-size: 23px;
}

.saving-section .doc-title {
  font-weight: 600;
  margin-bottom: 20px;
}

.saving-section .doc-card {
  background: #fff;
  padding: 18px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 5px 18px rgba(254, 152, 11, 0.08);
  font-weight: 500;
  transition: var(--transition-fast);
}

.saving-section .doc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(254, 152, 11, 0.13);
  color: var(--primary-color);
}

/* Core Banking */
.corebanking-section {
  background: #fef9ee;
}

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

.corebanking-section .core-title {
  font-weight: 700;
  font-size: 32px;
  color: #222;
}

.corebanking-section .core-title span {
  color: var(--primary-color);
}

.corebanking-section .core-subtitle {
  color: #6c757d;
  max-width: 720px;
  margin: auto;
}

.corebanking-section .core-heading {
  font-weight: 600;
  margin-bottom: 15px;
}

.corebanking-section .core-img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  height: 320px;
  width: 98%;
}

.corebanking-section .core-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(254, 152, 11, 0.07);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--primary-color);
}

.corebanking-section .core-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(254, 152, 11, 0.15);
  border: none;
}

.corebanking-section .core-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(254, 152, 11, 0.15), transparent);
  transition: 0.6s;
}

.corebanking-section .core-card:hover::before {
  left: 100%;
}

.corebanking-section .core-icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  background: var(--primary-gradient);
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  margin: 0 auto 15px;
  transition: var(--transition-fast);
}

.corebanking-section .core-card:hover .core-icon {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.corebanking-section .core-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.corebanking-section .core-card p {
  font-size: 14px;
  color: #6c757d;
}

.corebanking-section .core-benefits-title {
  font-size: 30px;
  font-weight: 600;
}

/* Branches */
.branches-section {
  background: #fef9ee;
}

.branches-section .branch-title {
  font-weight: 700;
}

.branches-section .branch-title span {
  color: var(--primary-color);
}

.branches-section .branch-subtitle {
  color: #666;
  font-size: 15px;
}

.branches-section .branch-card {
  background: #fff;
  padding: 22px 25px;
  border-radius: 10px;
  border-top: 3px solid var(--primary-color);
  box-shadow: 0 5px 18px rgba(254, 152, 11, 0.07);
  transition: var(--transition-fast);
  height: 100%;
}

.branches-section .branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(254, 152, 11, 0.13);
}

.branches-section .branch-name {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: 1;
}

.branches-section .branch-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
}

.branches-section .branch-text i {
  color: var(--primary-color);
  margin-right: 6px;
  font-size: 18px;
}

/* Contact Us */
.contact-section {
  background: #fef9ee;
}

.contact-section h4 {
  font-size: 26px;
}

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

.contact-section .contact-title {
  font-weight: 700;
}

.contact-section .contact-title span {
  color: var(--primary-color);
}

.contact-section .contact-subtitle {
  color: #666;
}

.contact-section .contact-info-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 8px 25px rgba(254, 152, 11, 0.07);
}

.contact-section .contact-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.contact-section .contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-section .contact-item i {
  font-size: 22px;
  color: var(--primary-color);
}

.contact-section .contact-item h6 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.contact-section .contact-item p {
  margin: 2px 0 0;
  font-size: 15px;
  color: #444;
}

.contact-section .contact-support {
  margin-top: 20px;
  padding: 12px;
  background: #fff0e0;
  border-radius: var(--border-radius-sm);
  font-size: 15px;
}

.contact-section .contact-map {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 100%;
}

/* Customer Grievance */
.grievance-section {
  background: #fff0e0;
}

.grievance-section .form-wrapper {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(254, 152, 11, 0.08);
}

.grievance-section .form-title {
  font-weight: 700;
}

.grievance-section .form-title span {
  color: var(--primary-color);
}

.grievance-section .form-subtitle {
  font-size: 14px;
  color: #666;
}

.grievance-section .modern-input {
  border-radius: 8px;
  height: 45px;
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.grievance-section textarea.modern-input {
  height: auto;
}

.grievance-section .modern-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(254, 152, 11, 0.15);
}

.grievance-section .submit-btn {
  position: relative;
  display: inline-block;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  background: var(--primary-gradient);
  color: #fff;
  padding: 11px 27px;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition-fast);
  overflow: hidden;
  z-index: 1;
}

.grievance-section .submit-btn::before {
  content: '';
  background: linear-gradient(45deg, #e88a00, #fe980b);
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: left top;
  z-index: -1;
  border-radius: 100px;
  transition: transform var(--transition-smooth);
}

.grievance-section .submit-btn:hover::before {
  transform: translate(0, 0) rotate(0deg);
}

.grievance-section .submit-btn:hover {
  box-shadow: 0 10px 10px rgba(254, 152, 11, 0.4);
  color: white;
}

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

/* Financial Strength Section */
.financial-section {
  position: relative;
  background: url('../img/intro-bn.webp') no-repeat center center/cover;
  padding: 50px 0 20px 0px;
  color: #fff;
}

.financial-section .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 44%);
  top: 0;
  left: 0;
}

.financial-section .content {
  position: relative;
  z-index: 2;
}

.financial-section .section-title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 1px;
}

.financial-section .stat-box {
  padding: 20px 10px;
  transition: var(--transition-fast);
}

.financial-section .stat-box:hover {
  transform: translateY(-10px);
}

.financial-section .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: var(--transition-fast);
}

.financial-section .stat-box:hover .icon {
  background: #ffffff;
  color: var(--primary-color);
  border-color: #ffffff;
}

.financial-section .stat-box h3 {
  font-size: 30px;
  font-weight: bold;
  margin: 8px 0;
}

.financial-section .stat-box span {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.financial-section .note {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}

/* Scroll to Top */
#topBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  background: var(--primary-gradient);
  color: #fff;
  padding: 12px 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}

#topBtn:hover {
  background: var(--primary-dark);
  transform: translateY(-5px) scale(1.05);
}

/* Quick Access Shortcuts */
.quick-shortcuts {
  position: fixed;
  top: 54%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quick-shortcuts i {
  margin-right: 20px;
}

.quick-shortcuts a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 55px;
  overflow: hidden;
  background: var(--primary-gradient);
  backdrop-filter: blur(10px);
  color: #fff;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(254, 152, 11, 0.25);
}

.quick-shortcuts a span {
  font-size: 18px;
  min-width: 20px;
}

.quick-shortcuts a:hover {
  width: 210px;
  transform: translateX(-8px);
  box-shadow: 0 12px 30px rgba(254, 152, 11, 0.35);
}

/* Deposit Calculator */
.deposit-calculator {
  padding: 80px 0;
  background: #fff0e0;
}

.deposit-calculator .calculator-box {
  background: #fff;
  border-radius: 30px;
  padding: 45px;
  box-shadow: 0 15px 50px rgba(254, 152, 11, 0.09);
  overflow: hidden;
}

.deposit-calculator .calculator-box h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.deposit-calculator .calc-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.deposit-calculator .tab-btn {
  flex: 1;
  height: 58px;
  border: none;
  border-radius: 16px;
  background: #fff0e0;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.deposit-calculator .tab-btn:hover {
  transform: translateY(-3px);
}

.deposit-calculator .tab-btn.active {
  color: #fff;
  background: var(--primary-gradient);
  box-shadow: 0 10px 25px rgba(254, 152, 11, 0.28);
}

.deposit-calculator .calc-content {
  display: none;
}

.deposit-calculator .calc-content.active {
  display: block;
}

.deposit-calculator .calculator-left {
  padding-right: 35px;
}

.deposit-calculator .range-box {
  margin-bottom: 35px;
}

.deposit-calculator .range-box label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.deposit-calculator .range-box span {
  color: var(--primary-color);
  font-weight: 700;
}

.deposit-calculator .range-box input[type='range'] {
  width: 100%;
  appearance: none;
  height: 7px;
  border-radius: 20px;
  background: var(--border-color);
  outline: none;
  cursor: pointer;
}

.deposit-calculator .range-box input[type='range']::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-gradient);
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(254, 152, 11, 0.25);
  cursor: pointer;
}

.deposit-calculator .result-box {
  background: #fef9ee;
  border-radius: 28px;
  padding: 35px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 35px rgba(254, 152, 11, 0.08);
}

.deposit-calculator .result-box canvas {
  width: 74% !important;
  height: 300px !important;
}

.deposit-calculator .result-info {
  text-align: center;
}

.deposit-calculator .result-info h3 {
  margin-top: 20px;
  color: #666;
  font-size: 18px;
  font-weight: 500;
}

.deposit-calculator .result-info h2 {
  margin-top: 10px;
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 700;
}


.bank-image {
  justify-content: center;
  display: flex;
}

/* ========== Media Queries ========== */
@media (min-width: 992px) {

  .mobile-menu,
  .menu-overlay {
    display: none;
  }

}

@media (max-width: 992px) {
  .right-content {
    display: none;
  }

  .menu-icon {
    display: flex;
  }

  .bank-navbar {
    display: none;
  }

  .left-content h2 {
    width: 54%;
  }

  .header-content {
    padding-left: 23px;
  }

  .deposit-section .deposit-left {
    text-align: center;
    margin-bottom: 40px;
  }

  .deposit-section .deposit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .deposit-section .deposit-left h2 {
    font-size: 32px;
  }

  .services-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-section .services-img {
    margin-top: 50px;
  }

  .services-section .services-img img {
    display: none;
  }

  .emi-cal-main-sec {
    overflow-x: hidden;
  }

  .emi-cal-main-sec .calculator-title {
    font-size: 28px;
  }

  .emi-cal-main-sec .calculator-grid {
    grid-template-columns: 1fr;
  }

  .emi-cal-main-sec .emi-widget {
    padding: 20px;
  }

  .emi-cal-main-sec .emi-result-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .emi-cal-main-sec .cta-button {
    width: 100%;
  }

  .emi-cal-main-sec .donut-chart-container {
    width: 220px;
    height: 220px;
  }

  .emi-cal-main-sec .emi-result-container {
    order: 4;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .deposit-calculator .calculator-left {
    padding-right: 0;
    margin-bottom: 35px;
  }

  .deposit-calculator .calculator-box {
    padding: 25px;
  }

  .deposit-calculator .calc-tabs {
    flex-direction: column;
  }

  .deposit-calculator .result-box {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .quick-shortcuts {
    right: 10px;
  }

  .quick-shortcuts a {
    width: 48px;
    padding: 12px 15px;
  }

  .quick-shortcuts a:hover {
    width: 190px;
  }
}

@media (max-width: 576px) {

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

  .ticker-move {
    font-size: 14px;
  }

  .home-news-sec .container .headertext {
    font-size: 14px;
  }

  .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
  }

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

  .carousel-item img {
    height: 230px;
  }

  .header-content {
    padding-left: 0px;
  }

  .top-header {
    height: 105px;
  }

  .grievance-section .form-title {
    font-size: 27px;
  }

  .grievance-section .form-wrapper {
    padding: 29px;
  }

  .left-content img {
    width: 15%;
  }

  .left-content h2 {
    font-size: 18px;
    padding-top: 9px;
  }

  .left-content h5 {
    font-size: 15px;
  }

  .left-content {
    gap: 0px;
  }

  .menu-icon {
    right: 18px;
    top: 29%;
  }

  .deposit-section {
    padding: 65px 0;
  }

  .services-section .services-title h2 {
    font-size: 32px;
  }

  .services-section .services-grid {
    padding: 20px 9px;
  }

  .loan-section .section-title h2 {
    font-size: 32px;
  }

  .loan-section {
    padding: 47px 0;
  }

  .director-section .director-title {
    font-size: 32px;
  }

  .page-header .page-header__title {
    font-size: 35px;
  }

  .saving-section .saving-title {
    font-size: 32px;
  }

  .branches-section .branch-title {
    font-size: 32px;
  }

  .contact-section .contact-title {
    font-size: 32px;
  }

  .deposit-section .deposit-card {
    padding: 25px;
  }

  .deposit-section .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 21px;
  }

  .deposit-section .deposit-card h4 {
    font-size: 16px;
  }

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

  .deposit-section .deposit-grid {
    gap: 15px;
  }

  .deposit-section .deposit-card:nth-child(2),
  .deposit-card:nth-child(4) {
    margin-top: 20px;
  }

  .deposit-section .deposit-left h2 {
    font-size: 26px;
  }

  .quick-shortcuts {
    display: none;
  }
}

@media (max-width: 1324px) {

  .bank-menu {
    gap: 22px;
  }
}


@media (max-width: 1228px) {
  .bank-menu a {
    font-size: 14px;
  }
}

@media (max-width: 1095px) {
  .complaint-btn {
    padding: 10px 9px;
    font-size: 13px;
  }
}

@media (max-width: 1095px) {
  .bank-menu a {
    font-size: 13px;
  }

  .bank-menu {
    gap: 17px;
  }
}