@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Roboto+Condensed:wght@400;700&display=swap');

:root {
  --primary-orange: #f36f21;
  --dark-orange: #d15610;
  --bank-red: #c2352a;
  --bank-gray: #4a4a4a;
  --bank-white: #ffffff;
  --nav-gradient: linear-gradient(90deg, #f36f21 0%, #d15610 100%);
}

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

/* Header & Navbar Styling */
.navbar-custom {
  background-color: var(--bank-white);
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-custom .container-fluid {
  align-items: end;
}

.navbar-custom .navbar-brand {
  padding: 0;
  display: flex;
  align-items: flex-end;
}

.bank-logo {
  height: 110px;
  padding-left: 30px;
  padding-top: 5px;
  width: auto;
  object-fit: contain;
}

.nav-section-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  align-self: stretch;
  padding: 2px 0px;
  z-index: 1;
}

.nav-section-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: #ff7f50; */
  /* background: linear-gradient(135deg,rgba(255, 127, 80, 1) 47%, rgba(255, 100, 43, 1) 59%); */
  background: linear-gradient(
    135deg,
    rgba(255, 127, 80, 1) 54%,
    rgba(255, 104, 54, 1) 60%
  );
  clip-path: polygon(60px 0, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
  pointer-events: none;
}

.top-nav-wrapper {
  width: 55%;
  /* background: var(--nav-gradient); */
  /* background: linear-gradient(135deg,
            #ff7e40 0%,
            #f57c00 100%); */

  /* background: #ff7f50; */
  background: linear-gradient(
    135deg,
    rgba(255, 127, 80, 1) 54%,
    rgba(255, 104, 54, 1) 60%
  );
  clip-path: polygon(60px 0, 100% 0, 100% 100%, 0% 100%);
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 2px;
}

.top-nav-wrapper .nav-link-custom {
  font-size: 15px;
  padding: 16px 15px !important;
  text-transform: capitalize;
}

.top-nav-wrapper .nav-link-custom::after {
  bottom: 5px;
}

.navbar-nav-custom {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: 10px;
}

.nav-item-custom {
  margin: 0 3px;
}

.home-nav-link-icon {
  margin-right: 3px;
  font-size: 19px;
  padding-bottom: 1px;
}

.nav-link-custom {
  color: var(--bank-white) !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 17px;
  padding: 15px 15px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  text-transform: capitalize;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 15px;
  right: 15px;
  height: 2px;
  background-color: var(--bank-white);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

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

.nav-link-custom.dropdown-toggle::before {
  content: '\f078';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  font-size: 10px;
  margin-left: 8px;
  order: 2;
  transition: transform 0.3s ease;
}

.nav-link-custom.dropdown-toggle.show::before,
.nav-item-custom.dropdown:hover .nav-link-custom.dropdown-toggle::before {
  transform: rotate(180deg);
}

.search-btn {
  background: transparent;
  border: none;
  color: var(--bank-white);
  font-size: 18px;
  padding: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.search-btn:hover {
  transform: scale(1.1);
}

.nav-item-custom.dropdown {
  position: static;
}

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

.nav-item-custom.dropdown:hover .mega-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) !important;
}

.mega-menu-custom {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 100%;
  left: 50% !important;
  transform: translateX(-50%) translateY(10px) !important;
  width: 850px;
  background: white;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.mega-menu-custom::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

.mega-menu-container {
  display: flex;
  gap: 0;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
}

.mega-menu-image-area {
  flex: 0 0 33%;
  min-height: 250px;
}

.mega-menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.mega-menu-content-area {
  flex: 1;
  padding: 30px 40px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-left: 15px;
}

.mega-menu-title {
  color: #d32f2f;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.mega-menu-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
}

.mega-menu-link {
  color: #555;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.mega-menu-link:hover {
  color: var(--primary-orange);
}

.dropdown-item-custom {
  padding: 10px 20px;
  font-weight: 500;
  color: var(--bank-gray);
  transition: all 0.2s ease;
}

.dropdown-item-custom:hover {
  background-color: var(--primary-orange);
  color: var(--bank-white);
}

.section-fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.mobile-sidebar {
  display: none;
}

/* Home Slider Sec Css */
.hero-slider {
  position: relative;
  overflow: hidden;
  padding: 8px 20px 0px 20px;
  background: #fff;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  width: 100%;
  overflow: hidden;
  border-radius: 35px 35px 0px 0px;
  position: relative;
}

.hero-slider .carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: 0.5s ease;
}

.hero-slider .carousel-item.active img {
  transform: scale(1.02);
}

.hero-slider::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 90%;
  height: 60px;
  background: rgba(255, 127, 80, 0.12);
  filter: blur(35px);
  z-index: 0;
  border-radius: 50px;
}

.hero-slider .custom-indicators {
  bottom: 25px;
  margin-bottom: 0;
  z-index: 10;
}

.hero-slider .custom-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  border: none !important;
  background: rgba(255, 255, 255, 0.6) !important;
  margin: 0 6px !important;
  opacity: 1 !important;
  transition: 0.3s;
}

.hero-slider .custom-indicators button.active {
  width: 28px !important;
  border-radius: 20px !important;
  background: #ff7f50 !important;
}

.hero-slider .carousel-control-prev,
.carousel-control-next {
  width: 70px;
  opacity: 1;
  z-index: 11;
}

.hero-slider .carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 52px;
  height: 52px;
  background-size: 45%;
  background-color: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Home News Sec Css */

.news-ticker-section {
  padding: 0px 20px;
  background: #ffffff;
  margin-bottom: 50px;
}

.news-ticker-section .news-ticker-card {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 2px 0px 35px 35px;
  overflow: hidden;
  background-color: rgb(61, 61, 61);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.news-ticker-section .news-ticker-card::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 15%;
  width: 280px;
  height: 120px;
  background: rgba(255, 127, 80, 0.1);
  filter: blur(70px);
  transform: translateY(-50%);
  z-index: 0;
}

.news-ticker-section .news-badge {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #ff7f50, #ff5e3a);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 20px 34px;
  letter-spacing: 1px;
  white-space: nowrap;
  border-radius: 0 35px 0px 0;
  box-shadow: 0 8px 20px rgba(255, 94, 58, 0.18);
}

.news-ticker-section .news-scroll {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 10px 0;
  background: transparent;
}

.news-ticker-section .news-scroll marquee {
  font-size: 17px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.5px;
}





/* Home Deposit Sec Css */

.deposit-schemes-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

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

.deposit-schemes-section .section-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
}

.deposit-schemes-section .deposit-tabs ul {
    display: flex;
    justify-content: center;
    gap: 45px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}

.deposit-schemes-section .deposit-tabs ul li {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    padding-bottom: 12px;
    transition: 0.3s;
}

.deposit-schemes-section .deposit-tabs ul li.active {
    color: rgba(255, 104, 54, 1);
}

.deposit-schemes-section .deposit-tabs ul li.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(255, 127, 80, 1) 54%,
        rgba(255, 104, 54, 1) 60%
    );
}

.deposit-schemes-section .deposit-cards-wrapper {
    position: relative;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.deposit-schemes-section .deposit-card {
    position: absolute;
    width: 380px;
    height: 480px;
    border-radius: 30px;
    overflow: hidden;
    transition: 0.5s ease;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.deposit-schemes-section .card-bg {
    width: 100%;
    height: 100%;
}

.deposit-schemes-section .card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deposit-schemes-section .deposit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.10)
    );
    z-index: 1;
}

.deposit-schemes-section .card-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.deposit-schemes-section .card-content span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 104, 54, 1);
    display: inline-block;
    margin-bottom: 10px;
}

.deposit-schemes-section .card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.deposit-schemes-section .card-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.deposit-schemes-section .card-content a {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(
        135deg,
        rgba(255, 127, 80, 1) 54%,
        rgba(255, 104, 54, 1) 60%
    );
}

.deposit-schemes-section .active-card {
    opacity: 1;
    transform: translateX(0) scale(1.08);
    z-index: 3;
    pointer-events: auto;
}

.deposit-schemes-section .left-card {
    opacity: 0.85;
    transform: translateX(-350px) scale(0.9);
    z-index: 2;
    pointer-events: auto;
}

.deposit-schemes-section .right-card {
    opacity: 0.85;
    transform: translateX(350px) scale(0.9);
    z-index: 2;
    pointer-events: auto;
}

.deposit-schemes-section .hidden-card {
    opacity: 0;
    transform: scale(0.7);
    z-index: 1;
}




/* Home Page Loan Sec Css */


.loan-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

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

.loan-section .loan-heading .loan-tag {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 50px;
    background: linear-gradient(
        135deg,
        rgba(255, 127, 80, 1) 54%,
        rgba(255, 104, 54, 1) 60%
    );
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.loan-section .loan-heading h2 {
    font-size: 39px;
    font-weight: 700;
    color: #111;
    margin-bottom: 17px;
}

.loan-section .loan-heading p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    width: 60%;
    font-size: 17.5px;
}

.loan-section .loan-tabs {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.loan-section .loan-tab {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 13px 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.loan-section .loan-tab span {
    width: 62px;
    height: 51px;
    min-width: 52px;
    border-radius: 50%;
    background: rgb(255 104 54 / 14%);
    color: rgba(255, 104, 54, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.loan-section .loan-tab-text-main{
  padding-top: 15px;
}

.loan-tab h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 2px;
}

.loan-section .loan-tab:hover,
.loan-tab.active {
    border-color: rgb(255, 102, 0);
    transform: translateX(8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

.loan-section .loan-tab.active span {
    background: linear-gradient(
        135deg,
        rgba(255, 127, 80, 1) 54%,
        rgba(255, 104, 54, 1) 60%
    );
    color: #fff;
}

.loan-section .loan-showcase {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid #f3f3f3;
    max-width: 450px;
     margin: auto;
}

.loan-section .loan-image {
    height: 240px;
    overflow: hidden;
}

.loan-section .loan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loan-section .loan-content {
   padding: 18px 28px;
}

.loan-section .loan-content .small-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 104, 54, 1);
    margin-bottom: 7px;
}

.loan-section .loan-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

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

.loan-section .loan-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 25px;
}

.loan-section .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.loan-section .feature-item i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.loan-section .feature-item span {
    font-weight: 500;
    color: #222;
    font-size: 14px;
}

.loan-section .loan-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(
        135deg,
        rgba(255, 127, 80, 1) 54%,
        rgba(255, 104, 54, 1) 60%
    );
    transition: 0.4s;
     font-size: 15px;
}

.loan-section .loan-tab-sub-txt{
  font-size: 13px;
  letter-spacing: 0.2px;
  line-height: 1.5;
}

.loan-section .loan-btn:hover {
    color: #fff;
    transform: translateY(-4px);
}







/* Home Service Sec Css */

.services-section {
    background: #fff;
    padding: 100px 0;
}

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

.services-section .home-service-ss{
  background-color: #fde3ca;
  border-radius: 20px;
}

.services-section .services-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.services-section .services-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 35px;
    position: relative;
}

.services-section .services-content h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: linear-gradient(
        135deg,
        rgba(255,127,80,1) 54%,
        rgba(255,104,54,1) 60%
    );
    position: absolute;
    left: 0;
    bottom: -12px;
    border-radius: 20px;
}

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

.services-section .service-card {
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 20px;
    padding: 28px 15px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.services-section .service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,104,54,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.services-section .service-card i {
    font-size: 28px;
    color: rgba(255,104,54,1);
    margin-bottom: 16px;
}

.services-section .service-card h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
}

.services-section .services-image {
    height: 100%;
    min-height: 520px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.services-section .services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}




/* EMI Calculator Css */


.home-emi-cal-main-div {
  margin: 20px 0px 40px 0px;
}

.home-emi-cal-main-div .emi-wrapper {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid #f3f3f3;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

.home-emi-cal-main-div .container{
  max-width: 1200px;
}

.home-emi-cal-main-div .emi-wrapper::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: rgba(255,104,54,0.05);
    border-radius: 50%;
}

.home-emi-cal-main-div .emi-wrapper::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 180px;
    height: 180px;
    background: rgba(255,127,80,0.05);
    border-radius: 50%;
}

.home-emi-cal-main-div .emi-title {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.home-emi-cal-main-div .emi-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin: 0;
    display: inline-block;
    position: relative;
}

.home-emi-cal-main-div .emi-title h2::after {
    content: "";
    width: 70px;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(255,127,80,1),
        rgba(255,104,54,1)
    );
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
}

.home-emi-cal-main-div .emi-field {
    background: #fff;
    border: 2px solid #f1f1f1;
    border-radius: 18px;
    padding: 16px 22px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.home-emi-cal-main-div .emi-field:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.home-emi-cal-main-div .field-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.home-emi-cal-main-div .field-top label {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.home-emi-cal-main-div .field-top input {
    width: 150px;
    height: 46px;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 0 14px;
    font-weight: 600;
    background: #fafafa;
    outline: none;
}

.home-emi-cal-main-div .field-top input:focus {
    border-color: rgba(255,104,54,1);
    background: #fff;
}

.home-emi-cal-main-div .emi-field input[type="range"] {
    width: 100%;
    height: 6px;
    cursor: pointer;
    accent-color: rgba(255,104,54,1);
}

.home-emi-cal-main-div .range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.home-emi-cal-main-div .range-values span {
    font-size: 13px;
    color: #777;
}

.home-emi-cal-main-div .emi-result-box {
    background: #fffaf7;
    border-radius: 24px;
    padding:  15px 35px;
    border: 1px solid rgba(255,104,54,0.08);
    position: relative;
    z-index: 2;
}

.home-emi-cal-main-div .emi-circle {
    width: 280px;
    height: 280px;
    margin: auto;
    border-radius: 50%;
    background: conic-gradient(
        rgba(255,127,80,1) 0% 72%,
        #ececec 72% 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.home-emi-cal-main-div .emi-circle::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    background: #fff;
    border-radius: 50%;
}

.home-emi-cal-main-div .emi-center {
    position: relative;
    z-index: 2;
    text-align: center;
}

.home-emi-cal-main-div .emi-center h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}

.home-emi-cal-main-div .emi-center p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.home-emi-cal-main-div .emi-details {
    margin-top: 25px;
}

.home-emi-cal-main-div .detail-item {
    background: #fff;
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgb(255, 164, 179);
}

.home-emi-cal-main-div .detail-item span {
    font-size: 14px;
    color: #666;
}

.home-emi-cal-main-div .detail-item strong {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}





/* Footer Css */

/*------ Footer Css -----*/


  .credit-footer{
background: linear-gradient(
    135deg,
    rgb(243, 95, 41) 0%,
    rgb(230, 80, 35) 100%
);

  color:#fff;
  padding:60px 0 25px;
}


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

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

/* LEFT SIDE */
.credit-footer .footer-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom:15px;
}

.credit-footer .footer-left{
      width: 96%;
}

.credit-footer .footer-brand img{
  height: 109px;
}

.credit-footer .footer-brand h4{
  font-size: 26px;
  font-weight: 700;
  /* padding-bottom: 5px; */
  padding-top: 3px;
  letter-spacing: 0.5px;
  margin:0;
  color: white;
  /* width: 70%; */
}

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


.dicgc-ff-img{
  width: 45%;
  /* height: 130px; */
  border-radius: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



/* Other Page Banner Sec */

.page-banner {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-banner .banner-overlay {
    position: absolute;
    inset: 0;
     background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.55),
        rgba(255, 115, 69, 0.25)
    );

}

.page-banner .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-banner .banner-content span {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 14.5px;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.2);
}

.page-banner .banner-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.15);
}




/* Introduction page */

.about-bank-section {
    background: #fff;
}

.about-bank-section .about-bank-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.about-bank-section .about-bank-img img {
    width: 100%;
    height: 100%;
    /* min-height: 500px; */
    object-fit: cover;
    display: block;
}

.about-bank-section .about-bank-content .section-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.about-bank-section .about-bank-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-bank-section .about-bank-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 18px;
}

.about-bank-section .about-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    background: linear-gradient(
        135deg,
        rgba(255, 127, 80, 1),
        rgba(255, 104, 54, 1)
    );
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.about-bank-section .about-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}




/* Board of Director Page */

.board-directors-section {
    background: #fff;
}

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

.board-directors-section .section-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.board-directors-section .section-heading h2 {
    font-size: 41px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.board-directors-section .section-heading p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.board-directors-section .director-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #f2f2f2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    transition: 0.3s;
    height: 100%;
}

.board-directors-section .director-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.board-directors-section .director-img {
    height: 280px;
    overflow: hidden;
}

.board-directors-section .director-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: 0.4s;
}

.board-directors-section .director-card:hover .director-img img {
    transform: scale(1.05);
}

.board-directors-section .director-content {
    padding: 22px 20px;
    text-align: center;
}

.board-directors-section .director-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.board-directors-section .director-content p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 104, 54, 1);
    font-weight: 600;
}



/* Saving Account page  */

.saving-account-section {
    background: #fff;
}

.saving-account-section .saving-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.saving-account-section .saving-heading h2 {
    font-size: 41px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.saving-account-section .saving-heading p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.saving-account-section .saving-table-wrapper {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid #f2f2f2;
}

.saving-account-section .saving-table {
    width: 100%;
    border-collapse: collapse;
}

.saving-account-section .saving-table thead {
    background: linear-gradient(
        135deg,
        rgba(255, 127, 80, 1),
        rgba(255, 104, 54, 1)
    );
}

.saving-account-section .saving-table thead th {
    padding: 20px 25px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.saving-account-section .saving-table tbody tr {
    border-bottom: 1px solid #f1f1f1;
    transition: 0.3s;
}

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

.saving-account-section .saving-table tbody td {
    padding: 22px 25px;
    font-size: 15px;
    color: #444;
}

.saving-account-section .documents-box {
    background: #fffaf7;
    border: 1px solid rgba(255, 104, 54, 0.08);
    border-radius: 24px;
    padding: 35px;
}

.saving-account-section .documents-box h3 {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
}

.saving-account-section .doc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 20px;
    border: 1px solid #f1f1f1;
}

.saving-account-section .doc-item i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.saving-account-section .doc-item span {
    font-size: 15px;
    font-weight: 500;
    color: #222;
}


/* Loan Page Css */

.all-loans-section {
    background: #fff;
}

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

.all-loans-section .loan-page-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.all-loans-section .loan-table,
.all-loans-section .loan-table th,
.all-loans-section .loan-table td {
    border: 1px solid #00000025;
}

.all-loans-section .loan-page-heading h2 {
    font-size: 41px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.all-loans-section .loan-page-heading p {
    max-width: 750px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.all-loans-section .loan-table-wrapper {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #f2f2f2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.all-loans-section .loan-table {
    width: 100%;
    border-collapse: collapse;
}

.all-loans-section .loan-table thead {
    background: linear-gradient(
        135deg,
        rgba(255, 127, 80, 1),
        rgba(255, 104, 54, 1)
    );
}

.all-loans-section .loan-table thead th {
    padding: 20px 25px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.all-loans-section .loan-table tbody tr {
    border-bottom: 1px solid #f1f1f1;
    transition: 0.3s;
}

.all-loans-section .loan-table tbody tr:hover {
    background: #fffaf7;
}

.all-loans-section .loan-table tbody td {
    padding: 22px 25px;
    font-size: 15px;
    color: #444;
}

.all-loans-section .loan-info-card {
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    transition: 0.3s;
    height: 100%;
}

.all-loans-section .loan-info-card:hover {
    transform: translateY(-5px);
}

.all-loans-section .loan-info-card i {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 18px;
}

.all-loans-section .loan-info-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.all-loans-section .loan-info-card p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}



/* Core banking Service */

.core-banking-section {
    background: #fff;
}

.core-banking-section .core-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.core-banking-section .core-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.core-banking-section .core-heading p {
    max-width: 720px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.core-banking-section .core-content h3 {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.core-banking-section .core-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 30px;
}

.core-banking-section .core-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.core-banking-section .feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fffaf7;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 104, 54, 0.08);
}

.core-banking-section .feature-item i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-banking-section .feature-item span {
    font-size: 15px;
    font-weight: 500;
    color: #222;
}

.core-banking-section .core-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.core-banking-section .core-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}



/* Rtgs& neft  */

.transfer-service-section {
    background: #fff;
}


.transfer-service-section .transfer-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.transfer-service-section .transfer-heading h2 {
    font-size: 41px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.transfer-service-section .transfer-heading p {
    max-width: 750px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}


.transfer-service-section .transfer-card {
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 22px;
    padding: 35px 30px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    transition: 0.3s;
}

.transfer-service-section .transfer-card:hover {
    transform: translateY(-6px);
}

.transfer-service-section .transfer-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.transfer-service-section .transfer-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.transfer-service-section .transfer-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.transfer-service-section .transfer-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.transfer-service-section .transfer-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 15px;
    color: #444;
}


.transfer-service-section .transfer-bottom-box {
    background: #fffaf7;
    border: 1px solid rgba(255, 104, 54, 0.08);
    border-radius: 24px;
    padding: 35px;
}

.transfer-service-section .transfer-bottom-box h3 {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.transfer-service-section .bottom-feature {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    border: 1px solid #f2f2f2;
}

.transfer-service-section .bottom-feature i {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
}

.transfer-service-section .bottom-feature span {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}



/* Locker services */

.locker-section {
    background: #fff;
}

.locker-section .locker-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.locker-section .locker-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.locker-section .locker-heading p {
    max-width: 750px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.locker-section .locker-table-wrapper {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #f2f2f2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.locker-section .locker-table {
    width: 100%;
    border-collapse: collapse;
}

.locker-section .locker-table thead {
    background: linear-gradient(
        135deg,
        rgba(255, 127, 80, 1),
        rgba(255, 104, 54, 1)
    );
}

.locker-section .locker-table thead th {
    padding: 20px 25px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.locker-section .locker-table tbody tr {
    border-bottom: 1px solid #f1f1f1;
    transition: 0.3s;
}

.locker-section .locker-table tbody tr:hover {
    background: #fffaf7;
}

.locker-section .locker-table tbody td {
    padding: 22px 25px;
    font-size: 15px;
    color: #444;
}

.locker-section .locker-card {
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    transition: 0.3s;
    height: 100%;
}

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

.locker-section .locker-card i {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 18px;
}

.locker-section .locker-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.locker-section .locker-card p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}


/* Other Service Css */

.other-services-section {
    background: #fff;
}

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

.other-services-section .other-services-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.other-services-section .other-services-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.other-services-section .other-services-heading p {
    max-width: 720px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.other-services-section .other-service-card {
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 22px;
    padding: 35px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    transition: 0.3s;
}

.other-services-section .other-service-card:hover {
    transform: translateY(-6px);
}

.other-services-section .other-service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 22px;
}

.other-services-section .other-service-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
}

.other-services-section .other-service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}


/* contact us CSS */

.contact-section {
    background: #fff;
}

.contact-section .contact-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-section .contact-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.contact-section .contact-heading p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.contact-section .contact-info-box {
    background: #fffaf7;
    border: 1px solid rgba(255, 104, 54, 0.08);
    border-radius: 24px;
    padding: 35px;
    height: 100%;
}

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

.contact-section .contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-section .contact-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 16px;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-section .contact-info-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.contact-section .contact-info-item p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.contact-section .contact-map-box {
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid #f2f2f2;
}

.contact-section .contact-map-box iframe {
    width: 100%;
    height: 100%;
    display: block;
}



/* Branches */

.branches-section {
    background: #fff;
}

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

/* Heading */

.branches-section .branches-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.branches-section .branches-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.branches-section .branches-heading p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* Card */

.branches-section .branch-card {
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    transition: 0.3s;
    height: 100%;
}

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

.branches-section .branch-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(255, 104, 54, 0.08);
    color: rgba(255, 104, 54, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.branches-section .branch-card h4 {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
}

.branches-section .branch-details p {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

.branches-section .branch-details p:last-child {
    margin-bottom: 0;
}

.branches-section .branch-details i {
    color: rgba(255, 104, 54, 1);
    font-size: 18px;
    margin-top: 4px;
    min-width: 18px;
}


/* Customer Grievance Css */

.grievance-section {
    background: #fff7f3;
    padding: 80px 0;
}

/* Heading */

.grievance-tag {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 50px;
    background: rgba(255, 104, 54, 0.10);
    color: rgba(255, 104, 54, 1);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.grievance-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
}

.grievance-heading p {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Form Box */

.grievance-form-box {
    background: #ffffff;
    border: 1px solid rgba(255, 104, 54, 0.08);
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

/* Labels */

.grievance-form-box label {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
    display: block;
}

/* Inputs */

.grievance-form-box .form-control {
    width: 100%;
    height: 54px;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 0 18px;
    font-size: 15px;
    color: #333;
    background: #fff;
    box-shadow: none;
    transition: 0.3s;
}

.grievance-form-box .form-control:focus {
    border-color: rgba(255, 104, 54, 1);
    box-shadow: 0 0 0 4px rgba(255, 104, 54, 0.06);
}

/* Select */

.grievance-form-box select.form-control {
    appearance: none;
    cursor: pointer;
}

/* Textarea */

.grievance-form-box textarea.form-control {
    height: auto;
    min-height: 150px;
    padding: 15px 18px;
    resize: none;
}

/* Radio */

.grievance-form-box input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: rgba(255, 104, 54, 1);
    margin-right: 8px;
    cursor: pointer;
}

.grievance-form-box .d-flex label {
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* Captcha */

.grievance-form-box .col-md-6.d-flex {
    gap: 20px;
}

.grievance-form-box .col-md-6.d-flex label {
    min-width: 170px;
    margin-bottom: 0;
}

/* Button */

.grievance-btn {
    border: none;
    padding: 14px 42px;
    border-radius: 50px;
    background: linear-gradient(
        135deg,
        rgba(255, 127, 80, 1),
        rgba(255, 104, 54, 1)
    );
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
    min-width: 180px;
}

.grievance-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 104, 54, 0.18);
}

.grievance-captchaa{
    /* width: 100% !important; */
    min-width: 110px !important;
}

/* Responsive */

@media (max-width: 991px) {
    .grievance-heading h2 {
        font-size: 34px;
    }

    .grievance-form-box {
        padding: 35px 28px;
    }
}

@media (max-width: 767px) {
    .grievance-form-box .col-md-6.d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }

    .grievance-form-box .col-md-6.d-flex label {
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .grievance-heading h2 {
        font-size: 28px;
    }

    .grievance-form-box {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .grievance-btn {
        width: 100%;
        min-width: auto;
    }
}



/* Mobile Adjustments */
@media (max-width: 991.98px) {
  .nav-section-wrapper,
  .top-nav-wrapper {
    clip-path: none;
    margin-left: 0;
    padding-left: 20px;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    width: 100% !important;
  }

  .top-nav-wrapper {
    margin-bottom: 10px;
  }

  .navbar-nav-custom {
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
  }

  .nav-link-custom {
    padding: 10px 0 !important;
  }

  .search-btn {
    margin-top: 10px;
    padding-left: 0;
  }

  .mega-menu-custom {
    position: static !important;
    width: 100% !important;
    transform: none !important;
    box-shadow: none;
    padding: 0;
    opacity: 1 !important;
    visibility: visible !important;
    display: none !important;
    border: none;
  }

  .nav-item-custom.dropdown.show .mega-menu-custom {
    display: block !important;
  }

  .mega-menu-container {
    flex-direction: column;
    background: transparent;
  }

  .mega-menu-image-area {
    display: none;
  }

  .mega-menu-content-area {
    margin-left: 0;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
  }

  .mega-menu-title {
    color: var(--bank-white);
    font-size: 16px;
    margin-bottom: 15px;
  }

  .mega-menu-link {
    color: var(--bank-white);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    text-decoration: none;
  }

  .mega-menu-links {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* New Mobile Navbar Styles */
  .mobile-nav-toggle-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .mobile-nav-toggle-shape {
    background: #ff7f50;
    height: 110px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
    cursor: pointer;
    padding-left: 20px;
  }

  .hamburger-icon {
    color: white;
    font-size: 2.5rem;
  }

  /* Mobile Sidebar */
  .mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1050;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
  }

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

  .sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
  }

  .sidebar-logo {
    height: 50px;
  }

  .btn-close-sidebar {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--bank-gray);
    cursor: pointer;
  }

  .sidebar-body {
    padding: 20px 0;
    overflow-y: auto;
    flex-grow: 1;
  }

  .sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .sidebar-link {
    display: block;
    padding: 12px 25px;
    color: var(--bank-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f1f1;
  }

  .sidebar-link:hover {
    background: #fff3ed;
    color: #ff7f50;
    padding-left: 30px;
  }

  .sidebar-dropdown .sidebar-submenu {
    list-style: none;
    padding-left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fafafa;
  }

  .sidebar-submenu li a {
    display: block;
    padding: 10px 40px;
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid #f9f9f9;
  }

  .dropdown-toggle-sidebar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dropdown-toggle-sidebar i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
  }

  .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
    backdrop-filter: blur(3px);
  }

  .sidebar-overlay.active {
    display: block;
  }



  /* Home Deposit Sec CSS */

   .deposit-schemes-section .section-title h2 {
        font-size: 34px;
    }

    .deposit-schemes-section .left-card {
        transform: translateX(-220px) scale(0.88);
    }

    .deposit-schemes-section .right-card {
        transform: translateX(220px) scale(0.88);
    }

    .deposit-schemes-section .deposit-card {
        width: 300px;
        height: 450px;
    }


    /* Home Services Sec */

     .services-section .services-content h2 {
        font-size: 34px;
    }


    /* Home Page Loan Sec */

      .loan-section .loan-sec-center-div-res{
    order: -1;
  }
    .loan-section .loan-heading h2 {
        font-size: 34px;
    }

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

    .loan-section .loan-content h3 {
        font-size: 30px;
    }

    .loan-section .loan-features {
        grid-template-columns: 1fr;
    }



    /* Other Pages Banner */

      .page-banner .page-banner {
        min-height: 300px;
    }

    .page-banner .banner-content h1 {
        font-size: 42px;
    }


    /* Introduction page  */

      .about-bank-section .about-bank-content h2 {
        font-size: 34px;
    }



    /* Board of director */

      .board-directors-section .section-heading h2 {
        font-size: 34px;
    }

    .board-directors-section .director-img {
        height: 240px;
    }


    /* Saving Account Css  */

     .saving-account-section .saving-heading h2 {
        font-size: 34px;
    }

    .saving-account-section .documents-box h3 {
        font-size: 26px;
    }

    /* Loan Schems page  */

     .all-loans-section .loan-page-heading h2 {
        font-size: 34px;
    }

    .all-loans-section .loan-info-card h4 {
        font-size: 20px;
    }


    /* Core Banking Service */

     .core-banking-section .core-heading h2 {
        font-size: 34px;
    }

    .core-banking-section .core-content h3 {
        font-size: 28px;
    }

    .core-banking-section .core-image img {
        min-height: 350px;
    }


    /* Rtgs-Neft Page */

     .transfer-service-section .transfer-heading h2 {
        font-size: 34px;
    }

    .transfer-service-section .transfer-bottom-box h3 {
        font-size: 26px;
    }


    /* Locker-service */

     .locker-section .locker-heading h2 {
        font-size: 34px;
    }

    .locker-section .locker-card h4 {
        font-size: 20px;
    }


    /* Other Services  */

     .other-services-section .other-services-heading h2 {
        font-size: 34px;
    }

    .other-services-section .other-service-card h4 {
        font-size: 20px;
    }


    /* Contact Us */

     .contact-section .contact-heading h2 {
        font-size: 34px;
    }

    .contact-section .contact-map-box {
        min-height: 400px;
    }


    /* Branches */

    .branches-section .branches-heading h2 {
        font-size: 34px;
    }

    .branches-section .branch-card h4 {
        font-size: 22px;
    }


}

/* Media Query 768px */

@media (max-width: 768px) {
  .hero-slider {
    padding: 8px 10px 0px 10px;
  }

  .hero-slider .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 30px;
    height: 30px;
  }

  .hero-slider .custom-indicators button.active {
    width: 20px !important;
  }

  .hero-slider .custom-indicators {
    bottom: 10px;
  }

  .hero-slider .custom-indicators button {
    width: 10px !important;
    height: 10px !important;
    margin: 0 5px !important;
  }

  .hero-slider .carousel-item.active img {
    transform: scale(1);
  }

  .hero-slider .carousel,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item {
    border-radius: 20px 20px 0px 0px;
  }

  /* Home News Section Css */

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

  .news-ticker-section {
    padding: 0px 10px;
  }

  .news-ticker-section .news-ticker-card {
    border-radius: 2px 0px 20px 20px;
  }

  .news-ticker-section .news-badge {
    font-size: 13px;
    font-weight: 600;
    padding: 17px 20px;
  }

  .news-ticker-section .news-scroll marquee {
    font-size: 14px;
  }


  /* Saving account page  */

   .saving-account-section .saving-table {
        min-width: 700px;
    }

    .saving-account-section .saving-table-wrapper {
        overflow-x: auto;
    }


    /* Loan Schemes Page */

     .all-loans-section .loan-table {
        min-width: 850px;
    }

    .all-loans-section .loan-table-wrapper {
        overflow-x: auto;
    }

    /* Locker service */

     .locker-section .locker-table {
        min-width: 800px;
    }

    .locker-section .locker-table-wrapper {
        overflow-x: auto;
    }


}


@media (max-width: 576px) {

    .navbar-custom .bank-logo{
        height: 90px;
    }

    .mobile-nav-toggle-shape{
        height: 90px;
    }

  /* Home Slider Css */

  .hero-slider .carousel-item {
    height: 190px;
    overflow: hidden;
  }

  .hero-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
  }

  .news-ticker-section{
    margin-bottom: 30px;
  }
  


  /* Home Desposit Sec */

  .deposit-schemes-section .deposit-cards-wrapper{
    min-height: 490px;
  }

    .deposit-schemes-section .section-title h2 {
        font-size: 28px;
    }

    .deposit-schemes-section .deposit-tabs ul {
        gap: 20px;
    }

    .deposit-schemes-section .deposit-tabs ul li {
        font-size: 15px;
    }

    .deposit-schemes-section .left-card,
    .right-card {
        display: none;
    }

    .deposit-schemes-section .deposit-card {
        width: 100%;
        max-width: 340px;
        height: 460px;
    }

    .deposit-schemes-section .active-card {
        transform: scale(1);
    }

    .deposit-schemes-section .card-content h3 {
        font-size: 22px;
    }
    
    .services-section .services-content{
      padding: 10px;
    }

    .services-section{
       padding: 40px 0px !important;
    }



    /* Home Page Loan Sec */

     .loan-section {
        padding: 30px 0 !important;
    }

    .loan-section .loan-heading p{
        width: 98%;
    }

    .loan-section .loan-heading h2 {
        font-size: 28px;
    }

    .loan-section .loan-tab {
        padding: 18px;
    }

    .loan-tab h4 {
        font-size: 17px;
    }

    .loan-section .loan-image {
        height: 240px;
    }

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

    .loan-section .loan-content h3 {
        font-size: 24px;
    }


    /* Emi Calculator Media576 */

     .home-emi-cal-main-div .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .home-emi-cal-main-div .emi-wrapper {
        padding: 20px 15px;
        border-radius: 18px;
    }

    .home-emi-cal-main-div .emi-title {
        margin-bottom: 25px;
    }

    .home-emi-cal-main-div .emi-title h2 {
        font-size: 28px;
    }

    .home-emi-cal-main-div .emi-circle {
        width: 190px;
        height: 190px;
    }

    .home-emi-cal-main-div .emi-circle::before {
        width: 140px;
        height: 140px;
    }

    .home-emi-cal-main-div .emi-center h3 {
        font-size: 18px;
    }

    .home-emi-cal-main-div .emi-center p {
        font-size: 12px;
    }

    .home-emi-cal-main-div .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 12px 14px;
    }

    .home-emi-cal-main-div .detail-item span,
    .home-emi-cal-main-div .detail-item strong {
        font-size: 13px;
    }



    /* Other Page Banner */

      .page-banner .page-banner {
        min-height: 240px;
    }

    .page-banner .banner-content span {
        font-size: 12px;
        padding: 7px 16px;
    }

    .page-banner .banner-content h1 {
        font-size: 30px;
    }

    /* Introduction page */

      .about-bank-section .about-bank-content h2 {
        font-size: 28px;
    }


    /* Board Of Director */

     .board-directors-section .section-heading h2 {
        font-size: 28px;
    }

    .board-directors-section .director-content h4 {
        font-size: 20px;
    }

    .board-directors-section .director-img {
        height: 220px;
    }

    /* Saving Account css */

      .saving-account-section .saving-heading h2 {
        font-size: 28px;
    }

    .saving-account-section .documents-box {
        padding: 25px;
    }

    .saving-account-section .documents-box h3 {
        font-size: 22px;
    }


    /* loan Schemes page */

     .all-loans-section .loan-page-heading h2 {
        font-size: 28px;
    }

    .all-loans-section .loan-info-card {
        padding: 24px;
    }

    .all-loans-section .loan-info-card h4 {
        font-size: 18px;
    }



    /* Core Banking Service */
    
     .core-banking-section .core-heading h2 {
        font-size: 28px;
    }

    .core-banking-section .core-content h3 {
        font-size: 24px;
    }

    .core-banking-section .feature-item {
        padding: 14px 16px;
    }

    .core-banking-section .core-image img {
        min-height: 260px;
    }


    /* rtgs-neft */

     .transfer-service-section .transfer-heading h2 {
        font-size: 28px;
    }

    .transfer-service-section .transfer-card {
        padding: 28px 22px;
    }

    .transfer-service-section .transfer-card h3 {
        font-size: 20px;
    }

    .transfer-service-section .transfer-bottom-box {
        padding: 25px;
    }

    .transfer-service-section .transfer-bottom-box h3 {
        font-size: 22px;
    }


    /* Locker service */

     .locker-section .locker-heading h2 {
        font-size: 28px;
    }

    .locker-section .locker-card {
        padding: 24px;
    }

    .locker-section .locker-card h4 {
        font-size: 18px;
    }



    /* Other Service */

      .other-services-section .other-services-heading h2 {
        font-size: 28px;
    }

    .other-services-section .other-service-card {
        padding: 28px 22px;
    }

    .other-services-section .other-service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .other-services-section .other-service-card h4 {
        font-size: 18px;
    }


    /* Contact Us */

     .contact-section .contact-heading h2 {
        font-size: 28px;
    }

    .contact-section .contact-info-box {
        padding: 25px;
    }

    .contact-section .contact-info-item h4 {
        font-size: 18px;
    }

    .contact-section .contact-map-box {
        min-height: 300px;
    }


    /* Branches */

     .branches-section .branches-heading h2 {
        font-size: 28px;
    }

    .branches-section .branch-card {
        padding: 28px 22px;
    }

    .branches-section .branch-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .branches-section .branch-card h4 {
        font-size: 20px;
    }

    .branches-section .branch-details p {
        font-size: 14px;
    }


}



@media (max-width: 400px) {
    .home-emi-cal-main-div .emi-title h2 {
        font-size: 20px;
    }

    .home-emi-cal-main-div .emi-circle {
        width: 170px;
        height: 170px;
    }

    .home-emi-cal-main-div .emi-circle::before {
        width: 125px;
        height: 125px;
    }

    .home-emi-cal-main-div .emi-center h3 {
        font-size: 16px;
    }

    .home-emi-cal-main-div .field-top input {
        font-size: 13px;
        padding: 0 10px;
    }

    .home-emi-cal-main-div .detail-item span,
    .home-emi-cal-main-div .detail-item strong {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
        .hero-slider .carousel-item{
            height: 160px;
        }
}

@media (max-width: 320px) {
    .home-emi-cal-main-div .emi-wrapper {
        padding: 16px 12px;
    }

    .home-emi-cal-main-div .emi-title h2 {
        font-size: 18px;
    }

    .home-emi-cal-main-div .emi-circle {
        width: 150px;
        height: 150px;
    }

    .home-emi-cal-main-div .emi-circle::before {
        width: 110px;
        height: 110px;
    }

    .home-emi-cal-main-div .emi-center h3 {
        font-size: 14px;
    }

    .home-emi-cal-main-div .emi-center p {
        font-size: 11px;
    }

    .home-emi-cal-main-div .detail-item {
        padding: 10px 12px;
    }
}