:root {
  --font-heading: "Poppins", sans-serif;
  /* --primary-red: #f61523; */
  /* --primary-red: #ff3737; */
  --primary-red: #fe504f;
  --light-red: #fe504f;
  /* --brand-red: #c4161c; */
  --light-yellow: #fff9bb;
  /* --primary-blue: #2d2f97; */
  --primary-blue: #535497;
  --light-cyan: #d5e5f4;
  --gray: #eaedf2;
  --white: #ffffff;
  --text-dark: #333333;
  --black: #0a0a0a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-heading);
  background-color: #ffffff;
  overflow-x: hidden;
}

.mahesh-common-btn {
  position: relative;
  display: inline-block;
  margin: 8px 0px;
  padding: 8px 15px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.4px;
  font-weight: 600;
  text-decoration: none;
  color: var(--primary-red);
  background: transparent;
  cursor: pointer;
  transition: ease-out 0.5s;
  border: 2px solid var(--primary-red);
  border-radius: 10px;
  box-shadow: inset 0 0 0 0 var(--primary-red);
}

.mahesh-common-btn:hover {
  color: white;
  box-shadow: inset 0 -100px 0 0 var(--primary-red);
}

.mahesh-common-btn:active {
  transform: scale(0.9);
}

.mahesh-header-nm {
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-red);
}

.for-curved-set {
  width: 108%;
}

.curverd-bg-mahesh {
  height: 100px;
  width: 100%;
}

/* ==================== Navbar Section CSS Start ====================== */
.main-nav-stick-section {
  position: sticky;
  top: 0;
  z-index: 999;
}

.mahesh-header-logo {
  height: 90px;
}
.dropdown-toggle::after {
  display: none !important;
}
.main-header {
  background-color: #ffffff;
  position: relative;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.05);
  width: 100%;
  z-index: 9999;
  isolation: isolate;
}
.main-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  animation: headerSlideDown 0.4s ease-out;
}

#headerSpacer {
  height: 0;
}

.main-header.is-sticky .top-bar {
  padding-left: 0px;
  padding-right: 17px !important;
}
.main-header.is-sticky .navbar {
  padding-left: 0px;
  padding-right: 17px !important;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.logo-section {
  background-color: #ffffff;
  z-index: 10;
  flex-shrink: 0;
  padding-left: 20px;
}
.logo-icon {
  box-shadow: none;
  border: 2px solid var(--primary-red);
}
.logo-icon i {
  color: var(--primary-red) !important;
}
.brand-name {
  color: var(--primary-red);
  font-weight: 700;
}
.brand-sub {
  color: var(--accent-orange);
  font-weight: 600;
}
.flex-grow-1 {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.top-bar {
  background-color: #ffffff;
  color: var(--text-dark);
  font-size: 0.8rem;
  min-height: 40px;
  /* border-bottom: 1px solid #f0f0f0; */
  padding-right: 17px !important;
}
.top-links a {
  color: var(--primary-red);
  text-decoration: none;
  padding: 6px 14px;
  font-weight: 600;
  background-color: rgba(245, 124, 0, 0.1);
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  position: relative;
  transition: color 0.3s ease;
  z-index: 1;
}
.top-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(245, 124, 0, 0.1);
  border-radius: 50px;
  transform: scale(0.5);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.top-links a:hover {
  color: var(--primary-red);
}
.top-links a:hover::before {
  transform: scale(1);
  opacity: 1;
}
.top-links a:active::before {
  background-color: rgba(245, 124, 0, 0.15);
  transform: scale(0.95);
}
.top-links a::after {
  display: none;
}
.bottom-nav-container {
  background-color: #ffffff;
  padding-left: 0;
  position: relative;
  /* padding-top: 5px; */
}
.bottom-nav-container .navbar {
  background-color: var(--primary-red) !important;
  /* border-top-left-radius: var(--border-radius-curve); */
  padding: 0 30px;
  min-height: 70px;
  display: flex;
  align-items: center;
  width: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.bottom-nav-container .navbar {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1400px) {
  .bottom-nav-container .navbar {
    padding-left: 60px;
  }
}

@media (max-width: 1300px) {
  .main-header.is-sticky .top-bar {
    padding-right: 15px !important;
  }
  .main-header.is-sticky .navbar {
    padding-right: 15px !important;
  }
  .navbar-nav .nav-link {
    margin: 0px 0px !important;
    padding: 8px 10px !important;
  }
}

@media (max-width: 1200px) {
  .top-links a {
    padding: 6px 10px;
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .logo-section {
    padding-left: 15px;
  }
  .brand-name {
    font-size: 1.3rem !important;
  }
  .bottom-nav-container .navbar {
    padding: 0 17px !important;
  }
  .navbar-nav .nav-link {
    font-size: 0.8rem;
    padding: 20px 8px !important;
  }
}

@media (max-width: 1199.98px) {
  .top-bar {
    display: none !important;
  }
  .main-header .d-flex {
    align-items: center;
  }
  .logo-section {
    width: auto;
    padding: 10px 0 10px 20px;
    flex-shrink: 0;
  }
  .logo-section img {
    width: auto;
    height: 70px;
  }
  .bottom-nav-container {
    padding-top: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .bottom-nav-container .navbar {
    min-height: 60px;
    border-top-left-radius: 40px;
    padding: 0 25px;
    width: 66%;
    justify-content: flex-end;
  }
  .navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s;
  }
  .navbar-toggler:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.8);
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .mobile-nav-container {
    padding: 10px 0 30px 0;
  }
  .mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .mobile-nav-link {
    display: block;
    padding: 14px 20px;
    color: #444;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
  }
  .mobile-nav-link:hover {
    background-color: #fff5f5;
    color: var(--primary-red);
  }
  .mobile-nav-link:active {
    background-color: #ffebee;
  }
  .mobile-nav-link.active {
    background-color: #ffebee;
    color: var(--primary-red);
  }
  .mobile-dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    color: #bbb;
  }
  .mobile-nav-link[aria-expanded="true"] .mobile-dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary-red);
  }
  .mobile-nav-link[aria-expanded="true"] {
    color: var(--primary-red);
    background-color: #fffafa;
  }
  .mobile-sub-menu ul {
    background-color: #f9f9f9 !important;
    margin: 5px 15px 15px 15px;
    border-left: 2px solid #ffdddd;
  }
  .mobile-sub-link {
    display: block;
    padding: 10px 20px;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
  }
  .mobile-sub-link:hover {
    color: var(--primary-red);
    transform: translateX(5px);
  }
  .btn-outline-danger {
    border-color: var(--primary-red);
    color: var(--primary-red);
  }
  .btn-outline-danger:hover {
    background-color: var(--primary-red);
    color: white;
  }
  .btn-danger {
    background-color: var(--primary-red);
    border: none;
  }
}
@media (max-width: 576px) {
  .logo-section .navbar-brand {
    font-size: 1.4rem;
  }
}

@media (min-width: 1200px) {
  .offcanvas {
    position: static !important;
    z-index: auto !important;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    transform: none !important;
    display: flex !important;
    flex-grow: 1;
    align-items: center;
    border: none !important;
    box-shadow: none !important;
    transition: none !important;
  }
  .offcanvas-header {
    display: none !important;
  }
  .offcanvas-body {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: flex-end;
    overflow: visible !important;
    padding: 0 !important;
  }
  .mahesh-header-logo {
    height: 100px;
  }
  .navbar-nav {
    flex-direction: row !important;
    gap: 48px !important;
    padding-bottom: 0 !important;
  }
  .offcanvas-backdrop {
    display: none !important;
  }
  .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 5px 7px !important;
    border-bottom: none !important;
    background: transparent !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    font-size: 15px;
    white-space: nowrap;
  }
  .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
  }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.show {
    background-color: transparent !important;
    color: #ffffff !important;
  }
  .nav-link:hover::before,
  .navbar-nav .nav-link.show::before {
    transform: scale(1);
    opacity: 1;
  }
  .navbar-nav .nav-item {
    position: relative;
  }
  .navbar-nav .nav-item:hover .nav-link,
  .navbar-nav .nav-item.show .nav-link {
    background-color: transparent !important;
    color: #ffffff !important;
  }
  .navbar-nav .nav-item:hover .nav-link::before,
  .navbar-nav .nav-item.show .nav-link::before {
    transform: scale(1);
    opacity: 1;
  }
  .navbar-nav .nav-link:active::before {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(0.95);
    transition: transform 0.3s ease;
  }
  .navbar-nav .nav-link i.fa-chevron-down {
    color: rgba(255, 255, 255, 0.856) !important;
  }
  .nav-link:hover i.fas.fa-chevron-down {
    transform: rotate(180deg);
  }
  .nav-item .nav-link i.fas.fa-chevron-down {
    display: inline-block;
    transition: transform 0.3s ease;
    transform-origin: center;
  }
  .nav-item:hover .nav-link i.fas.fa-chevron-down,
  .nav-item.show .nav-link i.fas.fa-chevron-down {
    transform: rotate(180deg);
  }
  .navbar-nav .nav-item.mega-menu-parent {
    position: static !important;
  }
  .dropdown-menu.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 15px;
    border-radius: 0 0 20px 20px;
    border: none;
    border-top: 5px solid var(--primary-blue);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: #fff;
    display: none;
  }
  .dropdown-menu.mega-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
  }
  .nav-item.mega-menu-parent:hover .dropdown-menu.mega-menu {
    display: block;
    animation: fadeUp 0.3s ease forwards;
  }
  .mega-menu-column h6 {
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
  }
  .mega-menu-column h6 i {
    color: var(--accent-orange);
    margin-right: 10px;
    font-size: 1rem;
  }
  .mega-menu-list {
    list-style: none;
    padding: 0;
  }
  .mega-menu-list li {
    margin-bottom: 12px;
  }
  .mega-menu-list a {
    color: #555 !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    padding: 0 !important;
    text-transform: none;
  }
  .mega-menu-list a:hover {
    color: var(--primary-red) !important;
    transform: translateX(5px);
    background-color: transparent;
  }
  .mega-menu-list a i {
    color: #ccc;
    margin-right: 10px;
    font-size: 0.7rem;
    transition: color 0.2s;
  }
  .mega-menu-list a:hover i {
    color: var(--accent-orange);
  }
  .mega-feature-card-image {
    border-radius: 20px;
    height: 400px;
  }
  .mega-featured-card {
    background: linear-gradient(135deg, var(--primary-red), #b71c1c);
    color: white;
    padding: 15px;
    border-radius: 20px;
    /* height: 100%; */
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: flex-start; */
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
  }
  .mega-featured-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
  }
  .mega-featured-card h5 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .mega-featured-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  .mega-featured-card .btn-light {
    color: var(--primary-red);
    font-weight: 700;
    border: none;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }
}

/* ==================== Navbar Section CSS Ends ====================== */

/* ===================== Hero Slider Section CSS Start ================ */
.hero-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}

.hero-slider-wrapper {
  position: relative;
}

.hero-slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.hero-slider-slide {
  min-width: 100%;
}

.hero-slider-slide img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
}

/* Buttons */

.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 26px;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 10;
  border-radius: 6px;
  transition: 0.3s;
}

.hero-slider-btn:hover {
  background: var(--primary-red);
}

.hero-slider-prev {
  left: 20px;
}

.hero-slider-next {
  right: 20px;
}

/* Dots */

.hero-slider-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: 0.3s;
}

.hero-slider-dot.active {
  background: var(--primary-red);
  transform: scale(1.2);
}

/* Responsive */

@media (max-width: 768px) {
  .hero-slider-slide img {
    height: 55vh;
  }
}

@media (max-width: 480px) {
  .hero-slider-slide img {
    height: 45vh;
  }

  .hero-slider-btn {
    font-size: 18px;
    padding: 6px 10px;
  }
}
/* ================= Hero Slider Section CSS Ends ================== */

/* =============== Rate Of Interest Section Start ================== */

.rate-of-int-mahesh-section {
  background: var(--white);
  overflow: hidden;
}

.rate-of-int-mahesh-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 0;
  line-height: 1.2;
}

.rate-of-int-mahesh-card {
  background: var(--white);
  border: 1px solid #d9d9d9;
  padding: 40px 25px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
}

/* Hover Effect Only */
.rate-of-int-mahesh-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 10px 18px rgba(0, 0, 0, 0.16);
}

.rate-of-int-mahesh-loan-title {
  font-size: 22px;
  font-weight: 600;
  color: #6e6e6e;
  margin-bottom: 22px;
  line-height: 1.4;
}

.rate-of-int-mahesh-rate-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 24px;
}

/* Main Number */
.rate-of-int-mahesh-rate {
  font-size: 72px;
  font-weight: 700;
  line-height: 0.9;
  color: var(--primary-red);
  letter-spacing: -1px;
}

/* % and P.A */
.rate-of-int-mahesh-pa {
  font-size: 22px;
  font-weight: 600;
  color: #6e6e6e;
  line-height: 1.1;
  text-align: left;
  margin-left: 8px;
  margin-top: 8px;
}

.rate-of-int-mahesh-pa span {
  font-size: 15px;
}

.rate-of-int-mahesh-btn {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #6e6e6e;
  transition: all 0.3s ease;
  position: relative;
}

.rate-of-int-mahesh-btn::after {
  content: "";
  width: 0%;
  height: 2px;
  background: var(--primary-red);
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: all 0.3s ease;
}

.rate-of-int-mahesh-btn:hover {
  color: var(--primary-red);
}

.rate-of-int-mahesh-btn:hover::after {
  width: 100%;
}

@media (max-width: 991px) {
  .rate-of-int-mahesh-title {
    font-size: 36px;
  }

  .rate-of-int-mahesh-card {
    padding: 35px 22px;
  }

  .rate-of-int-mahesh-loan-title {
    font-size: 20px;
  }

  .rate-of-int-mahesh-rate {
    font-size: 62px;
  }

  .rate-of-int-mahesh-pa {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .rate-of-int-mahesh-title {
    font-size: 30px;
  }

  .rate-of-int-mahesh-card {
    padding: 30px 20px;
  }

  .rate-of-int-mahesh-loan-title {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .rate-of-int-mahesh-rate {
    font-size: 52px;
  }

  .rate-of-int-mahesh-pa {
    font-size: 17px;
    margin-top: 6px;
  }

  .rate-of-int-mahesh-btn {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .rate-of-int-mahesh-section {
    padding: 55px 0;
  }

  .rate-of-int-mahesh-title {
    font-size: 26px;
  }

  .rate-of-int-mahesh-rate {
    font-size: 46px;
  }

  .rate-of-int-mahesh-pa {
    font-size: 15px;
  }
}
/* =============== Rate Of Interest Section Ends ================== */

/* ============= EMI calculator Section start ================== */
.mahesh-emi-calcu-section {
  background: var(--gray);
  overflow: hidden;
}

.mahesh-emi-calcu-title {
  font-size: 46px;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.mahesh-emi-calcu-subtitle {
  color: var(--text-dark);
  font-size: 16px;
}

.mahesh-emi-calcu-left-box {
  background: var(--white);
  padding: 45px;
  height: 100%;
}

.mahesh-emi-calcu-right-box {
  background: var(--light-cyan);
  padding: 45px;
  height: 100%;
}

.mahesh-emi-calcu-field {
  margin-bottom: 40px;
}

.mahesh-emi-calcu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.mahesh-emi-calcu-top label {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
}
.mahesh-emi-calcu-input-group {
  display: flex;
  align-items: center;
  border: 1px solid #cccccc;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
}

.mahesh-emi-calcu-input-group span {
  padding: 12px 16px;
  background: #f6f6f6;
  font-weight: 600;
  color: var(--black);
  border-right: 1px solid #cccccc;
}

.mahesh-emi-calcu-input-group input {
  width: 160px;
  border: none;
  outline: none;
  padding: 12px 15px;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  text-align: right;
}

.mahesh-emi-calcu-field input[type="range"] {
  width: 100%;
  height: 6px;
  appearance: none;
  border-radius: 20px;
  background: #d2d2d2;
  outline: none;
}

.mahesh-emi-calcu-field input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--primary-red);
  border-radius: 50%;
  cursor: pointer;
}

.mahesh-emi-calcu-range-values {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.mahesh-emi-calcu-range-values span {
  font-size: 15px;
  color: #666666;
}

.mahesh-emi-calcu-result-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.mahesh-emi-calcu-icon {
  font-size: 60px;
}

.mahesh-emi-calcu-result-top h4 {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.mahesh-emi-calcu-result-top h2 {
  font-size: 44px;
  font-weight: 700;
  color: var(--primary-red);
}

.mahesh-emi-calcu-breakdown {
  margin-top: 35px;
}

.mahesh-emi-calcu-break-item {
  margin-bottom: 35px;
}

.mahesh-emi-calcu-break-item p {
  font-size: 18px;
  color: #666666;
  margin-bottom: 10px;
}

.mahesh-emi-calcu-break-item h5 {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary-red);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .mahesh-emi-calcu-title {
    font-size: 34px;
  }

  .mahesh-emi-calcu-left-box,
  .mahesh-emi-calcu-right-box {
    padding: 30px;
  }

  .mahesh-emi-calcu-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .mahesh-emi-calcu-input-group {
    width: 100%;
  }

  .mahesh-emi-calcu-input-group input {
    width: 100%;
  }

  .mahesh-emi-calcu-result-top h2 {
    font-size: 34px;
  }

  .mahesh-emi-calcu-break-item h5 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .mahesh-emi-calcu-section {
    padding: 60px 0;
  }

  .mahesh-emi-calcu-title {
    font-size: 28px;
  }

  .mahesh-emi-calcu-subtitle {
    font-size: 14px;
  }

  .mahesh-emi-calcu-left-box,
  .mahesh-emi-calcu-right-box {
    padding: 22px;
  }

  .mahesh-emi-calcu-top label {
    font-size: 18px;
  }

  .mahesh-emi-calcu-input-group input {
    font-size: 16px;
  }

  .mahesh-emi-calcu-result-top {
    gap: 15px;
  }

  .mahesh-emi-calcu-icon {
    font-size: 45px;
  }

  .mahesh-emi-calcu-result-top h4 {
    font-size: 24px;
  }

  .mahesh-emi-calcu-result-top h2 {
    font-size: 28px;
  }

  .mahesh-emi-calcu-break-item p {
    font-size: 16px;
  }

  .mahesh-emi-calcu-break-item h5 {
    font-size: 24px;
  }
}
/* ============= EMI Calculator Section Ends ================== */

/* ========= Loan service section css ends ============ */
.loan-mahesh-hm-section {
  background: #ffffff;
  overflow: hidden;
}

.loan-mahesh-hm-title {
  font-size: 42px;
  font-weight: 700;
  color: #fe504f;
  margin-bottom: 12px;
}

.loan-mahesh-hm-subtitle {
  max-width: 720px;
  margin: auto;
  font-size: 16px;
  color: #555555;
  line-height: 1.7;
}

.loan-mahesh-hm-card {
  background: #ffffff;
  border: 1px solid #dddddd;
  height: 100%;
  transition: all 0.35s ease;
}

.loan-mahesh-hm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.loan-mahesh-hm-img-wrap {
  overflow: hidden;
  padding: 15px 25px;
}

.loan-mahesh-hm-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

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

.loan-mahesh-hm-content {
  padding: 28px 32px 35px;
  border-top: 1px solid #dddddd;
}

.loan-mahesh-hm-card-title {
  font-size: 32px;
  font-weight: 600;
  color: #fe504f;
  margin-bottom: 18px;
}

.loan-mahesh-hm-card-text {
  font-size: 17px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 28px;
}

.loan-mahesh-hm-btn {
  display: inline-block;
  background: #fe504f;
  color: #ffffff;
  text-decoration: none;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.loan-mahesh-hm-btn:hover {
  background: #0a0a0a;
  color: #ffffff;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
  .loan-mahesh-hm-card-title {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .loan-mahesh-hm-title {
    font-size: 34px;
  }

  .loan-mahesh-hm-card-title {
    font-size: 26px;
  }

  .loan-mahesh-hm-card-text {
    font-size: 16px;
  }

  .loan-mahesh-hm-img {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .loan-mahesh-hm-title {
    font-size: 30px;
  }

  .loan-mahesh-hm-subtitle {
    font-size: 15px;
  }

  .loan-mahesh-hm-content {
    padding: 24px;
  }

  .loan-mahesh-hm-card-title {
    font-size: 24px;
  }

  .loan-mahesh-hm-card-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .loan-mahesh-hm-img {
    height: 210px;
  }
}

@media (max-width: 575px) {
  .loan-mahesh-hm-section {
    padding: 60px 0;
  }

  .loan-mahesh-hm-title {
    font-size: 26px;
  }

  .loan-mahesh-hm-img-wrap {
    padding: 18px 18px 0;
  }

  .loan-mahesh-hm-content {
    padding: 20px;
  }

  .loan-mahesh-hm-card-title {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .loan-mahesh-hm-card-text {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .loan-mahesh-hm-btn {
    padding: 11px 22px;
    font-size: 14px;
  }
}
/* ========= Loan service section css ends ============ */

/* ========== Indicator Section start ================ */

.mahesh-indicators-hm-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: var(--gray);
}

.mahesh-indicators-hm-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.mahesh-indicators-hm-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.mahesh-indicators-hm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.92),
    rgba(213, 229, 244, 0.88)
  );
}

.mahesh-indicators-hm-wrapper {
  position: relative;
  z-index: 2;
}

.mahesh-indicators-hm-box {
  padding: 20px 12px;
  transition: all 0.35s ease;
}

.mahesh-indicators-hm-box:hover {
  transform: translateY(-8px);
}

.mahesh-indicators-hm-icon {
  margin-bottom: 18px;
}

.mahesh-indicators-hm-icon i {
  font-size: 42px;
  color: var(--primary-red);
}

.mahesh-indicators-hm-box h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-red);
  line-height: 1.2;
  margin-bottom: 8px;
  word-break: break-word;
}

.mahesh-indicators-hm-box p {
  font-size: 18px;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 1199px) {
  .mahesh-indicators-hm-box h3 {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .mahesh-indicators-hm-section {
    padding: 70px 0;
  }

  .mahesh-indicators-hm-box {
    padding: 18px 10px;
  }

  .mahesh-indicators-hm-box h3 {
    font-size: 34px;
  }

  .mahesh-indicators-hm-box p {
    font-size: 16px;
  }

  .mahesh-indicators-hm-icon i {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .mahesh-indicators-hm-section {
    padding: 60px 0;
  }

  .mahesh-indicators-hm-box h3 {
    font-size: 28px;
  }

  .mahesh-indicators-hm-box p {
    font-size: 15px;
  }

  .mahesh-indicators-hm-icon i {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .mahesh-indicators-hm-section {
    padding: 50px 0;
  }

  .mahesh-indicators-hm-box {
    padding: 15px 8px;
  }

  .mahesh-indicators-hm-box h3 {
    font-size: 24px;
  }

  .mahesh-indicators-hm-box p {
    font-size: 14px;
  }

  .mahesh-indicators-hm-icon {
    margin-bottom: 14px;
  }

  .mahesh-indicators-hm-icon i {
    font-size: 28px;
  }
}
/* =========== Indicator Section Ends ================ */

/* ========== Mobile Secrion css start ================ */
.mobile-app-hm-section {
  position: relative;
  background: url("../images/new-bg-sec.avif");
  background-size: contain;
  background-position: center;
  overflow: hidden;
  font-family: var(--font-heading);
}

/* OVERLAY */
.mobile-app-hm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  /* background: linear-gradient(
    135deg,
    rgba(45, 47, 151, 0.7),
    rgba(246, 21, 35, 0.6)
  ); */
}

/* LEFT SIDE */
.mobile-app-hm-left {
  padding-left: 0 !important;
}

.mobile-app-hm-img {
  width: 90%;
  max-width: 500px;
  animation: mobile-app-hm-float 4s ease-in-out infinite;
  transform-style: preserve-3d;
}

/* FLOAT ANIMATION (3D FEEL) */
@keyframes mobile-app-hm-float {
  0% {
    transform: translateY(0px) rotateY(0deg);
  }
  50% {
    transform: translateY(-15px) rotateY(5deg);
  }
  100% {
    transform: translateY(0px) rotateY(0deg);
  }
}

/* RIGHT SIDE */
.mobile-app-hm-right {
  position: relative;
  z-index: 2;
  /* color: var(--white); */
  padding: 20px 40px;
}

.mobile-app-hm-right h2 {
  font-size: 36px;
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 15px;
}

.mobile-app-hm-right p {
  color: var(--black);
  line-height: 24px;
  margin-bottom: 25px;
}

/* BUTTON */
.mobile-app-hm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.mobile-app-hm-btn img {
  width: 35px;
}

.mobile-app-hm-btn small {
  font-size: 10px;
  letter-spacing: 1px;
}

.mobile-app-hm-btn span {
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
}

.mobile-app-hm-btn:hover {
  transform: translateY(-3px);
  background: var(--primary-red);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .mobile-app-hm-section {
    padding: 60px 0;
  }

  .mobile-app-hm-left {
    text-align: center;
    margin-bottom: 30px;
  }

  .mobile-app-hm-img {
    width: 70%;
  }

  .mobile-app-hm-right {
    text-align: center;
    padding: 0 20px;
  }

  .mobile-app-hm-right h2 {
    font-size: 26px;
  }

  .mobile-app-hm-right p {
    font-size: 14px;
  }
}
/* ============ Mobile Section CSS Ends ================ */

/* ============= Short cut section hm ends ================ */

.hm-shortcut-mahesh {
  padding: 40px 0;
  background: var(--white);
}

/* MAIN WRAPPER */
.parent-shortcut-hm {
  padding: 45px 30px;
  border: 1px solid #dcdcdc;
  border-radius: 14px;
  background: var(--white);
}

/* BOX */
.hm-shortcut-mahesh-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.35s ease;
  height: 100%;
  padding: 15px 10px;
}

/* HOVER */
.hm-shortcut-mahesh-box:hover {
  transform: translateY(-6px);
}

/* ICON */
.hm-shortcut-mahesh-icon {
  margin-bottom: 18px;
}

.hm-shortcut-mahesh-icon i {
  font-size: 35px;
  color: var(--primary-red);
  transition: all 0.35s ease;
}

/* HOVER ICON */
.hm-shortcut-mahesh-box:hover .hm-shortcut-mahesh-icon i {
  transform: scale(1.08);
}

/* TEXT */
.hm-shortcut-mahesh-box h4 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: #0072c6;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .parent-shortcut-hm {
    padding: 35px 20px;
  }

  .hm-shortcut-mahesh-icon i {
    font-size: 44px;
  }

  .hm-shortcut-mahesh-box h4 {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .hm-shortcut-mahesh {
    padding: 30px 0;
  }

  .parent-shortcut-hm {
    padding: 30px 15px;
  }

  .hm-shortcut-mahesh-box {
    padding: 10px 5px;
  }

  .hm-shortcut-mahesh-icon {
    margin-bottom: 14px;
  }

  .hm-shortcut-mahesh-icon i {
    font-size: 38px;
  }

  .hm-shortcut-mahesh-box h4 {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .hm-shortcut-mahesh-box h4 {
    font-size: 14px;
    line-height: 1.5;
  }

  .hm-shortcut-mahesh-icon i {
    font-size: 34px;
  }
}

/* ============== Short cut section hm start =================== */

/* ================ Footer Section CSS Start ================== */

.footer-hm {
  background: linear-gradient(135deg, var(--primary-blue), var(--black));
  color: var(--white);
  padding: 60px 0 20px;
  font-family: var(--font-heading);
}

/* TITLE */
.footer-hm-title {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.footer-hm-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--primary-red);
  position: absolute;
  left: 0;
  bottom: -5px;
}
.footer-hm-logo {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  width: 325px;
}

/* TEXT */
.footer-hm p {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 10px;
}

.footer-hm i {
  margin-right: 8px;
  color: var(--primary-red);
}

/* LINKS */
.footer-hm-links {
  list-style: none;
  padding: 0;
}

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

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

.footer-hm-links a:hover {
  color: var(--primary-red);
  padding-left: 5px;
}

/* NOTE */
.footer-hm-note {
  font-size: 13px;
  margin-bottom: 15px;
  color: #ccc;
}

/* 🔥 IMAGE SECTION */
.footer-hm-images {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.footer-hm-img-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  width: 110px;
}

.footer-hm-img-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.footer-hm-img-box img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 5px;
}

.footer-hm-img-box span {
  font-size: 11px;
  color: #ccc;
}

/* BOTTOM */
.footer-hm-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
}

/* POWERED */
.footer-hm-powered a {
  color: orange;
  text-decoration: none;
  font-weight: 500;
}

.footer-hm-powered a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .footer-hm-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-hm-images {
    justify-content: center;
  }
}

/* =============== Footer Section CSS Ends ================== */

/* ================== Common Internal  Banner Section CSS Start ================= */

/* MAIN BANNER */
.common-banner {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  color: var(--white);
  font-family: var(--font-heading);
  overflow: hidden;
  background-attachment: fixed;
}

/* 🔥 BACKGROUND IMAGE (KEEP SAME CLASS PER PAGE) */
.inner-hm-banner-about {
  background: url("../images/about-banner.jpg") center/cover no-repeat;
  background-position-y: 50%;
}

/* OVERLAY */
.common-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 47, 151, 0.7),
    rgba(246, 21, 35, 0.6)
  );
  z-index: 1;
}

/* CONTENT */
.common-banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

/* BREADCRUMB */
.common-banner-breadcrumb {
  margin-bottom: 10px;
  font-size: 14px;
}

.common-banner-breadcrumb a {
  color: var(--light-yellow);
  text-decoration: none;
  transition: 0.3s;
}

.common-banner-breadcrumb a:hover {
  color: var(--white);
}

.common-banner-breadcrumb span {
  margin: 0 5px;
  color: #ddd;
}

/* TITLE */
.common-banner-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* SUBTITLE */
.common-banner-subtitle {
  font-size: 15px;
  color: #eee;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .common-banner {
    min-height: 250px;
    background-attachment: scroll;
  }

  .common-banner-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .common-banner-title {
    font-size: 22px;
  }

  .common-banner-subtitle {
    font-size: 13px;
  }
}

/* ================== Common Internal  Banner Section CSS Start ================= */

/* ============= Abous us section css start =================== */

.about-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* IMAGE */
.about-img-wrapper {
  position: relative;
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  animation: aboutFloat 4s ease-in-out infinite;
}

@keyframes aboutFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* BOOK STYLE */
.about-book {
  position: relative;
  background: var(--white);
  border-radius: 15px;
  padding: 30px 30px 30px 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* SPIRAL */
.about-spiral {
  position: absolute;
  left: 15px;
  top: 20px;
  bottom: 20px;
  width: 8px;
  background: repeating-linear-gradient(
    to bottom,
    var(--primary-red),
    var(--primary-red) 6px,
    transparent 6px,
    transparent 12px
  );
}

/* CONTENT */
.about-title {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 600;
}

.about-book-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 12px;
}

/* CARDS */
.about-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-card i {
  font-size: 30px;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.about-card h4 {
  color: var(--primary-blue);
  margin-bottom: 10px;
}

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

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-book {
    padding: 20px;
  }

  .about-spiral {
    display: none;
  }
}

/* ============= Abous us section css start =================== */

/* ================ BOD Section CSS Start ================= */

.inner-hm-banner-bod {
  background: url("../images/bod-banner.jpg") center/cover no-repeat;
  background-position-y: 50%;
}

.bod-section {
  background: var(--gray);
  font-family: var(--font-heading);
}

/* TITLE */
.bod-title {
  color: var(--primary-blue);
  font-weight: 600;
}

.bod-subtitle {
  color: var(--text-dark);
}

/* CARD */
.bod-card {
  border-radius: 15px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
}

/* IMAGE AREA */
.bod-img {
  position: relative;
  height: 220px;
  background-size: contain; /* 🔥 image cut fix */
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f8f8f8;
  overflow: hidden;
  transition: 0.4s;
}

/* OVERLAY (only image) */
.bod-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 47, 151, 0.7),
    rgba(246, 21, 35, 0.6)
  );
  opacity: 0;
  transition: 0.4s;
}

/* 👉 HOVER ONLY IMAGE */
.bod-img:hover {
  transform: scale(1.03);
}

.bod-img:hover .bod-overlay {
  opacity: 1;
}

/* CONTENT (separate section) */
.bod-content {
  padding: 15px;
  text-align: center;
  background: var(--white);
}

/* NAME */
.bod-content h4 {
  font-size: 14px;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 8px;
}

/* BADGE */
.bod-badge {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(45, 47, 151, 0.9),
    rgba(246, 21, 35, 0.8)
  );
}

/* OPTIONAL SEPARATOR */
.bod-img {
  border-bottom: 3px solid var(--primary-red);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .bod-img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .bod-img {
    height: 180px;
  }

  .bod-content h4 {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .bod-img {
    height: 160px;
  }
}

/* ================ BOD Section CSS Ends ================= */

/* ================ BOM Section CSS Start ================ */

.inner-hm-banner-bom {
  background: url("../images/bom-banner.jpg") center/cover no-repeat;
  background-position-y: 65%;
}

/* ================= BOM Section CSS Ends ================ */

/* ==================== Fixed Deposit section css start ============ */

.inner-hm-banner-fd {
  background: url("../images/fd-banner.jpg") center/cover no-repeat;
  background-position-y: 80%;
}

.fd-about-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.fd-about-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.fd-about-subtitle {
  color: var(--text-dark);
  max-width: 600px;
  margin: auto;
}

/* IMAGE */
.fd-about-img {
  text-align: center;
  animation: fd-float 4s ease-in-out infinite;
}

.fd-about-img img {
  max-width: 100%;
  border-radius: 20px;
}

/* FLOAT ANIMATION */
@keyframes fd-float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* CONTENT */
.fd-about-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* CARD */
.fd-about-card {
  background: var(--white);
  padding: 18px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

/* LEFT BORDER ACCENT */
.fd-about-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
}

/* HOVER */
.fd-about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* TEXT */
.fd-about-card p {
  margin: 0;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.6;
}

/* HIGHLIGHT CARD */
.fd-about-card.highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: linear-gradient(
    135deg,
    rgba(45, 47, 151, 0.08),
    rgba(246, 21, 35, 0.08)
  );
}

.fd-about-card.highlight i {
  color: var(--primary-red);
  font-size: 20px;
  margin-top: 3px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .fd-about-title {
    font-size: 26px;
  }

  .fd-about-img {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .fd-about-card {
    padding: 15px;
  }

  .fd-about-card p {
    font-size: 13px;
  }
}

/* ==================== Fixed Deposit section css start ============ */

/* ================ Recurring Deposit Section CSS Start ============== */
.inner-hm-banner-rd {
  background: url("../images/rd-banner.jpg") center/cover no-repeat;
  background-position-y: 60%;
}

.rd-hm-section {
  background: linear-gradient(135deg, var(--light-cyan), var(--gray));
  font-family: var(--font-heading);
}

/* TITLE */
.rd-hm-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.rd-hm-subtitle {
  color: var(--text-dark);
  max-width: 600px;
  margin: auto;
}

/* CONTENT */
.rd-hm-content {
  position: relative;
  padding-left: 30px;
}

/* vertical line (timeline style) */
.rd-hm-content::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(var(--primary-blue), var(--primary-red));
}

/* ITEM */
.rd-hm-item {
  position: relative;
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  background: var(--white);
  padding: 15px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

/* ICON */
.rd-hm-item i {
  min-width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

/* DOT CONNECT */
.rd-hm-item::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 20px;
  width: 12px;
  height: 12px;
  background: var(--primary-red);
  border-radius: 50%;
}

/* TEXT */
.rd-hm-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

/* HOVER */
.rd-hm-item:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* HIGHLIGHT */
.rd-hm-item.highlight {
  background: linear-gradient(
    135deg,
    rgba(45, 47, 151, 0.08),
    rgba(246, 21, 35, 0.08)
  );
}

/* IMAGE */
.rd-hm-image {
  text-align: center;
  animation: rd-float 4s ease-in-out infinite;
}

.rd-hm-image img {
  max-width: 100%;
  border-radius: 20px;
}

/* FLOAT ANIMATION */
@keyframes rd-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .rd-hm-title {
    font-size: 26px;
  }

  .rd-hm-content {
    padding-left: 20px;
  }

  .rd-hm-content::before {
    left: 6px;
  }

  .rd-hm-item::before {
    left: -18px;
  }
}

@media (max-width: 576px) {
  .rd-hm-item {
    padding: 12px;
  }

  .rd-hm-item p {
    font-size: 13px;
  }
}

/* ================ Recurring Deposit Section CSS Ends ============ */

/* ================ Unclaimed Accounts Section CSS Start =========== */
.inner-hm-banner-ua {
  background: url("../images/UA-banner.jpg") center/cover no-repeat;
}

.unclaimed-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.unclaimed-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.unclaimed-subtitle {
  color: var(--text-dark);
}

/* CONTENT */
.unclaimed-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.unclaimed-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: var(--white);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* ICON */
.unclaimed-card i {
  min-width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* TEXT */
.unclaimed-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.7;
}

/* HOVER */
.unclaimed-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* HIGHLIGHT */
.unclaimed-card.highlight {
  background: linear-gradient(
    135deg,
    rgba(45, 47, 151, 0.08),
    rgba(246, 21, 35, 0.08)
  );
}

/* SEARCH BOX */
.unclaimed-search-box {
  display: flex;
  justify-content: center;
}

.unclaimed-search-inner {
  width: 100%;
  max-width: 900px;
  background: var(--white);
  border-radius: 50px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

/* SEARCH ICON */
.unclaimed-search-inner i {
  color: var(--primary-blue);
  margin-left: 10px;
}

/* INPUT */
.unclaimed-search-inner input {
  border: none;
  outline: none;
  flex: 1;
  padding: 10px;
  font-size: 14px;
  font-family: var(--font-heading);
}

/* BUTTON */
.unclaimed-search-inner button {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

/* BUTTON HOVER */
.unclaimed-search-inner button:hover {
  transform: scale(1.05);
}

/* SEARCH HOVER */
.unclaimed-search-inner:focus-within {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .unclaimed-title {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .unclaimed-card {
    flex-direction: column;
  }

  .unclaimed-search-inner {
    flex-direction: column;
    border-radius: 15px;
    padding: 15px;
  }

  .unclaimed-search-inner button {
    width: 100%;
  }
}

/* ============== Unclaimed Accounts Section CSS Ends =============== */

/* =========== Deposit Interest Rate Section CSS Start ============ */
.inner-hm-banner-di {
  background: url("../images/di-banner.jpg") center/cover no-repeat;
}

.deposit-int-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.deposit-int-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.deposit-int-subtitle {
  color: var(--text-dark);
}

/* TABLE WRAPPER */
.deposit-int-table-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  overflow-x: auto;
}

/* TABLE */
.deposit-int-table {
  margin: 0;
  border-collapse: separate;
  border-spacing: 0 12px;
}

/* HEAD */
.deposit-int-table thead th {
  background: var(--primary-blue);
  color: var(--white);
  padding: 14px;
  font-size: 14px;
  border: none;
}

/* ROW */
.deposit-int-table tbody tr {
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.deposit-int-table tbody tr:hover {
  transform: translateY(-5px);
}

/* CELL */
.deposit-int-table td {
  padding: 14px;
  font-size: 14px;
  vertical-align: middle;
  border-top: none;
}

/* BADGE */
.deposit-int-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  background: var(--light-cyan);
  color: var(--primary-blue);
  display: inline-block;
  transition: 0.3s;
}

/* HIGHLIGHT (Senior Citizen) */
.deposit-int-badge.highlight {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

/* HOVER EFFECT */
.deposit-int-table tbody tr:hover .deposit-int-badge {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .deposit-int-title {
    font-size: 26px;
  }

  .deposit-int-table td,
  .deposit-int-table th {
    font-size: 12px;
  }
}

/* ============ Deposit Interest Rate Section CSS Ends ============= */

/* ==================== Loans Section Start ===================== */

/* ================== Mahesh Housing Loan Section Start ========== */

.inner-hm-banner-housing {
  background: url("../images/housing-banner.jpg") center/cover no-repeat;
}

.mahesh-housing-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.mahesh-housing-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.mahesh-housing-subtitle {
  color: var(--text-dark);
}

/* BOX */
.mahesh-housing-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.mahesh-housing-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.mahesh-housing-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* CARD */
.mahesh-housing-card {
  background: var(--gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.mahesh-housing-card:hover {
  background: var(--light-cyan);
}

/* HEADINGS */
.mahesh-housing-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.mahesh-housing-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* LIST */
.mahesh-housing-card ul {
  padding-left: 18px;
}

.mahesh-housing-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* DOCUMENT LIST SCROLL */
.mahesh-housing-docs {
  max-height: 350px;
  overflow-y: auto;
  padding-right: 10px;
}

/* RATE BOX */
.mahesh-housing-rate {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.mahesh-housing-rate h4 {
  margin-bottom: 5px;
}

.mahesh-housing-rate h2 {
  font-size: 36px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .mahesh-housing-title {
    font-size: 26px;
  }

  .mahesh-housing-docs {
    max-height: none;
  }
}

/* ================= Mahesh Housing Loan Section Ends ============ */

/* =============== Personal Loan section start ========== */

.inner-hm-banner-personal {
  background: url("../images/personal-banner.jpg") center/cover no-repeat;
  background-position-y: 45%;
}

.personal-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.personal-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.personal-subtitle {
  color: var(--text-dark);
}

/* BOX */
.personal-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.personal-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.personal-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* CARD */
.personal-card {
  background: var(--gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.personal-card:hover {
  background: var(--light-cyan);
}

/* HEADINGS */
.personal-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.personal-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* LIST */
.personal-card ul {
  padding-left: 18px;
}

.personal-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* DOC SCROLL */
.personal-docs {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 10px;
}

/* RATE */
.personal-rate {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.personal-rate h4 {
  margin-bottom: 5px;
}

.personal-rate h2 {
  font-size: 34px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .personal-title {
    font-size: 26px;
  }

  .personal-docs {
    max-height: none;
  }
}

/* ============== Personal loan section ends ============ */

/* ============== Education Loan section start ============ */

.inner-hm-banner-education {
  background: url("../images/education-banner.jpg") center/cover no-repeat;
  background-position-y: 45%;
}

.education-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.education-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.education-subtitle {
  color: var(--text-dark);
}

/* BOX */
.education-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.education-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.education-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* CARD */
.education-card {
  background: var(--gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.education-card:hover {
  background: var(--light-cyan);
}

/* HEADINGS */
.education-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.education-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* LIST */
.education-card ul {
  padding-left: 18px;
}

.education-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* DOC SCROLL */
.education-docs {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 10px;
}

/* RATE BOX */
.education-rate {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.education-rate h4 {
  margin-bottom: 5px;
}

.education-rate h2 {
  font-size: 34px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .education-title {
    font-size: 26px;
  }

  .education-docs {
    max-height: none;
  }
}

/* ============= Education Loans Section ends ================== */

/* ============= Gold Loan section start =========== */

.inner-hm-banner-gold {
  background: url("../images/gold-loan-banner.jpg") center/cover no-repeat;
  background-position-y: 45%;
}

.gold-loan-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.gold-loan-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.gold-loan-subtitle {
  color: var(--text-dark);
}

/* BOX */
.gold-loan-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.gold-loan-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.gold-loan-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* CARD */
.gold-loan-card {
  background: var(--gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.gold-loan-card:hover {
  background: var(--light-cyan);
}

/* HEADINGS */
.gold-loan-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.gold-loan-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* TEXT */
.gold-loan-card p {
  font-size: 14px;
  color: var(--text-dark);
}

/* LIST */
.gold-loan-card ul {
  padding-left: 18px;
}

.gold-loan-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* DOC SCROLL */
.gold-loan-docs {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 10px;
}

/* RATE BOX */
.gold-loan-rate {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.gold-loan-rate h4 {
  margin-bottom: 5px;
}

.gold-loan-rate h2 {
  font-size: 30px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .gold-loan-title {
    font-size: 26px;
  }

  .gold-loan-docs {
    max-height: none;
  }
}
/* ============== Gold Loan section ends ================= */

/* ================ Gold Loan OverDraft Section Start ======== */

.inner-hm-banner-goldOver {
  background: url("../images/gold-over-banner.jpg") center/cover no-repeat;
  background-position-y: 30%;
}

.gold-loan-overdraft-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.gold-loan-overdraft-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.gold-loan-overdraft-subtitle {
  color: var(--text-dark);
}

/* BOX */
.gold-loan-overdraft-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.gold-loan-overdraft-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.gold-loan-overdraft-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* CARD */
.gold-loan-overdraft-card {
  background: var(--gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.gold-loan-overdraft-card:hover {
  background: var(--light-cyan);
}

/* HEADINGS */
.gold-loan-overdraft-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.gold-loan-overdraft-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* TEXT */
.gold-loan-overdraft-card p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

/* LIST */
.gold-loan-overdraft-card ul {
  padding-left: 18px;
}

.gold-loan-overdraft-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--text-dark);
}

/* DOC SCROLL */
.gold-loan-overdraft-docs {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 10px;
}

/* RATE BOX */
.gold-loan-overdraft-rate {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.gold-loan-overdraft-rate h4 {
  margin-bottom: 5px;
}

.gold-loan-overdraft-rate h2 {
  font-size: 34px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .gold-loan-overdraft-title {
    font-size: 26px;
  }

  .gold-loan-overdraft-docs {
    max-height: none;
  }
}

/* =============== Gold Loan OverDraft Section Ends =========== */

/* =============== Vehicle Loan section start ============== */

.inner-hm-banner-vehicle {
  background: url("../images/vehicle-banner.jpg") center/cover no-repeat;
}

.vehicle-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.vehicle-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.vehicle-subtitle {
  color: var(--text-dark);
}

/* BOX */
.vehicle-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.vehicle-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.vehicle-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* CARD */
.vehicle-card {
  background: var(--gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.vehicle-card:hover {
  background: var(--light-cyan);
}

/* HEADINGS */
.vehicle-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.vehicle-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* TEXT */
.vehicle-card p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

/* LIST */
.vehicle-card ul {
  padding-left: 18px;
}

.vehicle-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* DOC SCROLL */
.vehicle-docs {
  max-height: 220px;
  overflow-y: auto;
  padding-right: 10px;
}

/* RATE BOX */
.vehicle-rate {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.vehicle-rate h4 {
  margin-bottom: 5px;
}

.vehicle-rate h2 {
  font-size: 34px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .vehicle-title {
    font-size: 26px;
  }

  .vehicle-docs {
    max-height: none;
  }
}

/* =============== Vehicle Loan section ends ============== */

/* =============== Business Loan Section Start ================== */

.inner-hm-banner-business {
  background: url("../images/business-banner.jpg") center/cover no-repeat;
}

.business-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.business-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.business-subtitle {
  color: var(--text-dark);
}

/* BOX */
.business-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.business-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.business-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* CARD */
.business-card {
  background: var(--gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.business-card:hover {
  background: var(--light-cyan);
}

/* HEADINGS */
.business-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.business-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* LIST */
.business-card ul {
  padding-left: 18px;
}

.business-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* DOC SCROLL */
.business-docs {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 10px;
}

/* TABLE STYLE */
.business-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.business-row {
  display: flex;
  justify-content: space-between;
  background: var(--white);
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.business-row:hover {
  background: var(--light-yellow);
}

/* RATE BOX */
.business-rate {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.business-rate h2 {
  font-size: 34px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .business-title {
    font-size: 26px;
  }

  .business-docs {
    max-height: none;
  }
}

/* =============== Business Loan Section Ends ============== */

/* ============== Shop Loan Section start ================ */
.inner-hm-banner-shop {
  background: url("../images/shop-banner.jpg") center/cover no-repeat;
}

.shop-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.shop-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.shop-subtitle {
  color: var(--text-dark);
}

/* BOX */
.shop-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.shop-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.shop-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* CARD */
.shop-card {
  background: var(--gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.shop-card:hover {
  background: var(--light-cyan);
}

/* HEADINGS */
.shop-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.shop-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* LIST */
.shop-card ul {
  padding-left: 18px;
}

.shop-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* DOC SCROLL */
.shop-docs {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 10px;
}

/* RATE BOX */
.shop-rate {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.shop-rate h2 {
  font-size: 34px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .shop-title {
    font-size: 26px;
  }

  .shop-docs {
    max-height: none;
  }
}

/* ============= Shop Loan Section Ends =============== */

/* ============= HYPO Cash Credit Section start =============== */

.inner-hm-banner-hypo {
  background: url("../images/cash-banner.jpg") center/cover no-repeat;
}

.cash-credit-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.cash-credit-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.cash-credit-subtitle {
  color: var(--text-dark);
}

/* BOX */
.cash-credit-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.cash-credit-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.cash-credit-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* CARD */
.cash-credit-card {
  background: var(--gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.cash-credit-card:hover {
  background: var(--light-cyan);
}

/* HEADINGS */
.cash-credit-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.cash-credit-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* LIST */
.cash-credit-card ul {
  padding-left: 18px;
}

.cash-credit-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* DOC SCROLL */
.cash-credit-docs {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 10px;
}

/* RATE BOX */
.cash-credit-rate {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.cash-credit-rate h2 {
  font-size: 34px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .cash-credit-title {
    font-size: 26px;
  }

  .cash-credit-docs {
    max-height: none;
  }
}

/* ============= HYPO Cash Credit Section Ends ================ */

/* ============== Cash Credit Installment Start ============== */

.inner-hm-banner-creditInstall {
  background: url("../images/cash-install-banner.webp") center/cover no-repeat;
}

.cash-credit-installment-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.cash-credit-installment-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.cash-credit-installment-subtitle {
  color: var(--text-dark);
}

/* BOX */
.cash-credit-installment-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.cash-credit-installment-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.cash-credit-installment-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* CARD */
.cash-credit-installment-card {
  background: var(--gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.cash-credit-installment-card:hover {
  background: var(--light-cyan);
}

/* HEADINGS */
.cash-credit-installment-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.cash-credit-installment-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* LIST */
.cash-credit-installment-card ul {
  padding-left: 18px;
}

.cash-credit-installment-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* DOC SCROLL */
.cash-credit-installment-docs {
  max-height: 220px;
  overflow-y: auto;
  padding-right: 10px;
}

/* RATE BOX */
.cash-credit-installment-rate {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.cash-credit-installment-rate h2 {
  font-size: 34px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .cash-credit-installment-title {
    font-size: 26px;
  }

  .cash-credit-installment-docs {
    max-height: none;
  }
}

/* ============= Cash Credit Installment Ends ============== */

/* ============ Clean Cash Credit Section Start ================ */

.inner-hm-banner-clean {
  background: url("../images/clean-cash-banner.webp") center/cover no-repeat;
}

.clean-cash-credit-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.clean-cash-credit-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.clean-cash-credit-subtitle {
  color: var(--text-dark);
}

/* BOX */
.clean-cash-credit-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.clean-cash-credit-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.clean-cash-credit-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
  object-fit: cover;
}

/* CARD */
.clean-cash-credit-card {
  background: var(--gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.clean-cash-credit-card:hover {
  background: var(--light-cyan);
}

/* HEADINGS */
.clean-cash-credit-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.clean-cash-credit-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* LIST */
.clean-cash-credit-card ul {
  padding-left: 18px;
}

.clean-cash-credit-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* DOC SCROLL */
.clean-cash-credit-docs {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 10px;
}

/* RATE BOX */
.clean-cash-credit-rate {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.clean-cash-credit-rate h4 {
  margin-bottom: 5px;
}

.clean-cash-credit-rate h2 {
  font-size: 34px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .clean-cash-credit-title {
    font-size: 26px;
  }

  .clean-cash-credit-docs {
    max-height: none;
  }
}

/* ============ Clean Cash Credit Section Ends ============== */

/* ============= Working capital section start ============ */

.inner-hm-banner-working {
  background: url("../images/working-banner.webp") center/cover no-repeat;
  background-position-y: 65%;
}

.working-capital-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.working-capital-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.working-capital-subtitle {
  color: var(--text-dark);
}

/* BOX */
.working-capital-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.working-capital-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.working-capital-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
  object-fit: cover;
}

/* CARD */
.working-capital-card {
  background: var(--gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.working-capital-card:hover {
  background: var(--light-cyan);
}

/* HEADINGS */
.working-capital-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.working-capital-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* LIST */
.working-capital-card ul {
  padding-left: 18px;
}

.working-capital-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* DOC SCROLL */
.working-capital-docs {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 10px;
}

/* RATE BOX */
.working-capital-rate {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.working-capital-rate h4 {
  margin-bottom: 5px;
}

.working-capital-rate h2 {
  font-size: 34px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .working-capital-title {
    font-size: 26px;
  }

  .working-capital-docs {
    max-height: none;
  }
}

/* ============= Working capital section ends ============== */

/* =========== Working capital Loan section start ============= */

.inner-hm-banner-wcl {
  background: url("../images/wcl-banner.webp") center/cover no-repeat;
  background-position-y: 65%;
}

.wcl-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.wcl-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.wcl-subtitle {
  color: var(--text-dark);
}

/* BOX */
.wcl-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.wcl-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.wcl-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
  object-fit: cover;
}

/* CARD */
.wcl-card {
  background: var(--gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.wcl-card:hover {
  background: var(--light-cyan);
}

/* HEADINGS */
.wcl-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.wcl-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* LIST */
.wcl-card ul {
  padding-left: 18px;
}

.wcl-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* DOC SCROLL */
.wcl-docs {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 10px;
}

/* RATE BOX */
.wcl-rate {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.wcl-rate h4 {
  margin-bottom: 5px;
}

.wcl-rate h2 {
  font-size: 34px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .wcl-title {
    font-size: 26px;
  }

  .wcl-docs {
    max-height: none;
  }
}

/* ========= Working capital loan section ends ============ */

/* ========== Real estate loan section start ========== */
.inner-hm-banner-real {
  background: url("../images/real-banner.webp") center/cover no-repeat;
}

.real-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.real-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.real-subtitle {
  color: var(--text-dark);
}

/* BOX */
.real-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.real-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.real-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
  object-fit: cover;
}

/* CARD */
.real-card {
  background: var(--gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.real-card:hover {
  background: var(--light-cyan);
}

/* HEADINGS */
.real-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.real-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* LIST */
.real-card ul {
  padding-left: 18px;
}

.real-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* DOC SCROLL */
.real-docs {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 10px;
}

/* RATE */
.real-rate {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.real-rate h4 {
  margin-bottom: 5px;
}

.real-rate h2 {
  font-size: 34px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .real-title {
    font-size: 26px;
  }

  .real-docs {
    max-height: none;
  }
}

/* ======== Real estate loan section ends =============== */

/* ============= Machinery term loan section start ============== */
.inner-hm-banner-machinery {
  background: url("../images/machinery-banner.webp") center/cover no-repeat;
}

.machinery-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.machinery-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.machinery-subtitle {
  color: var(--text-dark);
}

/* BOX */
.machinery-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.machinery-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.machinery-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* CARD */
.machinery-card {
  background: var(--gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.machinery-card:hover {
  background: var(--light-cyan);
}

/* HEADINGS */
.machinery-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.machinery-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* TEXT */
.machinery-card p {
  font-size: 14px;
  color: var(--text-dark);
}

/* LIST */
.machinery-card ul {
  padding-left: 18px;
}

.machinery-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* SCROLL DOC */
.machinery-docs {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 10px;
}

/* RATE BOX */
.machinery-rate {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.machinery-rate h4 {
  margin-bottom: 5px;
}

.machinery-rate h2 {
  font-size: 34px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .machinery-title {
    font-size: 26px;
  }

  .machinery-docs {
    max-height: none;
  }
}

/* ============ Machinery term loan section ends ============== */

/* =========== Warehouse receipt loan section start ============= */

.inner-hm-banner-warehouse {
  background: url("../images/warehouse-banner.webp") center/cover no-repeat;
}

.warehouse-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.warehouse-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.warehouse-subtitle {
  color: var(--text-dark);
}

/* BOX */
.warehouse-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.warehouse-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.warehouse-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* CARD */
.warehouse-card {
  background: var(--gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.warehouse-card:hover {
  background: var(--light-cyan);
}

/* HEADINGS */
.warehouse-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.warehouse-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* TEXT */
.warehouse-card p {
  font-size: 14px;
  color: var(--text-dark);
}

/* LIST */
.warehouse-card ul {
  padding-left: 18px;
}

.warehouse-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* DOC SCROLL */
.warehouse-docs {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 10px;
}

/* RATE BOX */
.warehouse-rate {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.warehouse-rate h4 {
  margin-bottom: 5px;
}

.warehouse-rate h2 {
  font-size: 34px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .warehouse-title {
    font-size: 26px;
  }

  .warehouse-docs {
    max-height: none;
  }
}

/* ========== Warehouse recipt loan section start =========== */

/* ============ Overdraft secured loan section start ========= */
.inner-hm-banner-os {
  background: url("../images/os-banner.webp") center/cover no-repeat;
}
.os-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.os-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.os-subtitle {
  color: var(--text-dark);
}

/* BOX */
.os-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.os-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.os-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* CARD */
.os-card {
  background: var(--gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.os-card:hover {
  background: var(--light-cyan);
}

/* HEADINGS */
.os-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.os-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* TEXT */
.os-card p {
  font-size: 14px;
  color: var(--text-dark);
}

/* LIST */
.os-card ul {
  padding-left: 18px;
}

.os-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* DOC SCROLL */
.os-docs {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 10px;
}

/* RATE BOX */
.os-rate {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.os-rate h4 {
  margin-bottom: 5px;
}

.os-rate h2 {
  font-size: 32px;
  font-weight: 700;
}

.os-rate p {
  font-size: 13px;
  margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .os-title {
    font-size: 26px;
  }

  .os-docs {
    max-height: none;
  }
}

/* ============ Overdraft secured loan section ends ============ */

/* ========= Advance against FDR section start ============= */
.inner-hm-banner-fdr {
  background: url("../images/adv-fd-banner.webp") center/cover no-repeat;
  background-position-y: 65%;
}

.adv-fd-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.adv-fd-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.adv-fd-subtitle {
  color: var(--text-dark);
}

/* BOX */
.adv-fd-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.adv-fd-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.adv-fd-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* CARD */
.adv-fd-card {
  background: var(--gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.adv-fd-card:hover {
  background: var(--light-cyan);
}

/* HEADINGS */
.adv-fd-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.adv-fd-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* TEXT */
.adv-fd-card p {
  font-size: 14px;
  color: var(--text-dark);
}

/* LIST */
.adv-fd-card ul {
  padding-left: 18px;
}

.adv-fd-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* DOC SCROLL */
.adv-fd-docs {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 10px;
}

/* RATE BOX */
.adv-fd-rate {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.adv-fd-rate h4 {
  margin-bottom: 5px;
}

.adv-fd-rate h2 {
  font-size: 32px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .adv-fd-title {
    font-size: 26px;
  }

  .adv-fd-docs {
    max-height: none;
  }
}

/* ======== Advance against FDR section ends ============== */

/* =========== Loan Interest Rate section start ============= */
.inner-hm-banner-lir {
  background: url("../images/lir-banner.webp") center/cover no-repeat;
  background-position-y: 65%;
}

.lir-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.lir-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-blue);
}

.lir-subtitle {
  color: var(--text-dark);
}

/* CARD */
.lir-card {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.lir-card:hover {
  transform: translateY(-5px);
}

/* HEADING */
.lir-card h4 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 600;
}

.lir-card h4 i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* TABLE */
.lir-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 10px;
}

/* HEADER */
.lir-table th {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
  padding: 12px;
  font-size: 14px;
}

/* ROW */
.lir-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: var(--text-dark);
}

/* HOVER */
.lir-table tr:hover td {
  background: var(--light-cyan);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .lir-title {
    font-size: 26px;
  }

  .lir-table th,
  .lir-table td {
    font-size: 12px;
    padding: 8px;
  }
}

/* =========== Loan Interest Rate section ends ============= */

/* ==================== Loans Section Ends ====================== */

/* =============== Services Section Start ==================== */

/* ================ Mobile Banking Section Start =================== */
.inner-hm-banner-mobile {
  background: url("../images/mobile-banner.webp") center/cover no-repeat;
  background-position-y: 45%;
}

.mobile-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* IMAGE */
.mobile-img img {
  width: 80%;
  max-width: 350px;
  animation: floatImg 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes floatImg {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* TITLE */
.mobile-title {
  font-size: 36px;
  color: var(--primary-blue);
  font-weight: 600;
}

.mobile-subtitle {
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* CARD */
.mobile-card {
  background: var(--white);
  padding: 18px;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.mobile-card::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  opacity: 0.1;
  transition: 0.4s;
}

.mobile-card:hover::before {
  width: 100%;
}

.mobile-card:hover {
  transform: translateX(5px);
}

.mobile-card h5 {
  font-size: 16px;
  color: var(--primary-blue);
  font-weight: 600;
}

.mobile-card h5 i {
  color: var(--primary-red);
  margin-right: 8px;
}

.mobile-card p {
  font-size: 14px;
  margin: 5px 0 0;
}

/* BUTTON */
.mobile-btn {
  margin-top: 20px;
}

.btn-download {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-download i {
  margin-right: 8px;
}

.btn-download:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .mobile-title {
    font-size: 26px;
  }

  .mobile-img img {
    width: 60%;
    margin-bottom: 20px;
  }
}

/* ================= Mobile Banking Section Ends ==================== */

/* ============== Lockers section start ============== */
.inner-hm-banner-locker {
  background: url("../images/locker-banner.webp") center/cover no-repeat;
  background-position-y: 50%;
}

.locker-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

/* TITLE */
.locker-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.locker-subtitle {
  color: var(--text-dark);
}

/* TABLE */
.locker-table-wrapper {
  overflow-x: auto;
  margin-bottom: 40px;
}

.locker-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.locker-table thead {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: #fff;
}

.locker-table th,
.locker-table td {
  padding: 15px;
  text-align: center;
}

.locker-table tbody tr {
  transition: 0.3s;
}

.locker-table tbody tr:hover {
  background: var(--light-cyan);
}

/* CARDS */
.locker-card {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.locker-card::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  opacity: 0.1;
  transition: 0.4s;
}

.locker-card:hover::before {
  width: 100%;
}

.locker-card:hover {
  transform: translateY(-5px);
}

/* TEXT */
.locker-card h5 {
  color: var(--primary-blue);
  font-weight: 600;
}

.locker-type {
  display: inline-block;
  margin: 10px 0;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--primary-red);
  color: #fff;
  font-size: 12px;
}

.locker-card h3 {
  color: var(--primary-blue);
  font-weight: 700;
}

/* RESPONSIVE */
.locker-cards {
  display: none;
}

@media (max-width: 768px) {
  .locker-table-wrapper {
    display: none;
  }

  .locker-cards {
    display: flex;
  }

  .locker-title {
    font-size: 26px;
  }
}

/* ================ Lockers section ends =========== */

/* ================ Service Charges section start =========== */
.inner-hm-banner-sc {
  background: url("../images/sc-banner.webp") center/cover no-repeat;
  background-position-y: 50%;
}

.sc-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

.sc-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.sc-subtitle {
  color: var(--text-dark);
  margin-bottom: 30px;
}

/* CARD */
.sc-pdf-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.sc-pdf-card:hover {
  transform: translateY(-5px);
}

/* HEADER */
.sc-pdf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
  font-weight: 500;
}

.sc-pdf-header i {
  margin-right: 8px;
}

/* DOWNLOAD BUTTON */
.sc-download-btn {
  background: var(--white);
  color: var(--primary-blue);
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.sc-download-btn:hover {
  background: var(--light-yellow);
}

/* PDF WRAPPER */
.sc-pdf-wrapper {
  width: 100%;
  height: 600px;
}

.sc-pdf-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .sc-title {
    font-size: 26px;
  }

  .sc-pdf-wrapper {
    height: 400px;
  }

  .sc-pdf-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ============= Service charges section ends =============== */

/* ============== Services Section Ends ==================== */

/* ================ Cotact Us Section CSS Start =============== */

/* =========== Our Branches section start ============== */

.inner-hm-banner-branches {
  background: url("../images/branches-banner.webp") center/cover no-repeat;
  background-position-y: 32%;
}

.branches-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
}

.branches-heading {
  max-width: 600px;
  margin: 0 auto;
}

.branches-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
  position: relative;
}

/* underline effect */
.branches-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

.branches-subtitle {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.6;
}

/* responsive */
@media (max-width: 768px) {
  .branches-title {
    font-size: 26px;
  }

  .branches-subtitle {
    font-size: 14px;
  }
}

.branches-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.branches-btn {
  background: var(--white);
  font-weight: 600;
  color: var(--primary-blue);
}

.branches-btn:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: #fff;
}

.branches-body {
  background: var(--gray);
  padding: 15px;
}

.branches-body p {
  margin-bottom: 8px;
  font-size: 14px;
}

.branches-body i {
  color: var(--primary-red);
  margin-right: 8px;
}

.branches-body a {
  text-decoration: none;
  color: var(--primary-blue);
}

.branches-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .branches-map iframe {
    min-height: 300px;
  }
}

/* ============= Our Branches section ends ============== */

/* ============= Customer Grievance Section Start =========== */
.inner-hm-banner-grievance {
  background: url("../images/grievance-banner.webp") center/cover no-repeat;
}
/* ============== Customer Grievance Section Ends ============ */

/* ============== Contact Us Section CSS Ends ================ */

/* ============= More Section CSS Start ================= */

/* ============ Form section start ========== */

.inner-hm-banner-forms {
  background: url("../images/forms-banner.webp") center/cover no-repeat;
  background-position-y: 30%;
}
.forms-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

.forms-title {
  font-size: 34px;
  color: var(--primary-blue);
  font-weight: 600;
}

.forms-subtitle {
  color: var(--text-dark);
}

/* TABLE */
.forms-table-wrapper {
  overflow-x: auto;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.forms-table {
  width: 100%;
  border-collapse: collapse;
}

.forms-table thead {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
}

.forms-table th,
.forms-table td {
  padding: 16px;
  text-align: left;
  font-size: 14px;
}

.forms-table tbody tr {
  border-bottom: 1px solid var(--gray);
  transition: 0.3s;
}

.forms-table tbody tr:hover {
  background: var(--light-yellow);
  transform: scale(1.01);
}

/* BUTTONS */
.forms-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  margin: 2px;
  font-size: 13px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--white);
  transition: 0.3s;
}

/* View */
.forms-btn.view {
  background: var(--primary-blue);
}

.forms-btn.view:hover {
  background: #1d1f70;
  transform: translateY(-2px);
}

/* Download */
.forms-btn.download {
  background: var(--primary-red);
}

.forms-btn.download:hover {
  background: var(--brand-red);
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .forms-title {
    font-size: 26px;
  }

  .forms-table th,
  .forms-table td {
    padding: 12px;
    font-size: 13px;
  }

  .forms-btn {
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* ============ Form section ends ============ */

/* =========== annual report section start ======= */

.inner-hm-banner-forms {
  background: url("../images/annual-banner.webp") center/cover no-repeat;
}

.report-section {
  background: linear-gradient(135deg, var(--gray), var(--light-cyan));
  font-family: var(--font-heading);
}

.report-title {
  font-size: 34px;
  font-weight: 600;
  color: var(--primary-blue);
}

.report-subtitle {
  color: var(--text-dark);
}

/* CARD */
.report-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.report-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.report-img-box {
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--primary-red);
}

.report-img-box img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  transition: 0.4s;
}

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

/* OVERLAY */
.report-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 47, 151, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
  opacity: 0;
  transition: 0.3s;
}

.report-card:hover .report-overlay {
  opacity: 1;
}

/* CONTENT */
.report-content {
  padding: 15px;
  text-align: center;
}

.report-content h5 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

/* BUTTONS */
.report-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.report-btn {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

/* View */
.report-btn.view {
  background: var(--primary-blue);
}

.report-btn.view:hover {
  background: #1d1f70;
}

/* Download */
.report-btn.download {
  background: var(--primary-red);
}

.report-btn.download:hover {
  background: var(--brand-red);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .report-title {
    font-size: 26px;
  }

  .report-img-box img {
    height: 200px;
  }
}

/* ============ annual report section ends =========== */

/* =============== More Section CSS Ends =============== */
