@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-primary: #017950;
    --color-secondary: #b42a29;
    --color-primary-lite: #b42a29;
    --font-heading: "Prompt", sans-serif;
   /* --font-body: "Noto Sans", sans-serif;*/
    --font-body: "Poppins", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
}

html {
    overflow-x: hidden;
}


.swiper-container {
    overflow: hidden;
}

.swiper img {
    width: 100%;
}


a {
    color: #000;
    text-decoration: none;
    display: inline-block;
}

img {
    max-width: 100%;
}

ul {
    padding: 0px;
    margin: 0px;
}

li {
    list-style: none;
}

button {
    border: none;
}

.icon-text {
    display: flex;
    gap: 3px;
}

.icon-text svg {
    width: 18px;
    height: 32px;
    fill: var(--color-secondary);
}

.btn-s1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  padding: 4px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* icon */
.btn-s1 svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  transition: transform 0.3s ease;
}

/* hover effect */
.btn-s1:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

/* subtle icon movement */
.btn-s1:hover svg {
  transform: scale(1.1);
}

/* active (click feedback) */
.btn-s1:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


.logo-main img {
    width: 410px;
}

.hz-container-fluid
{
            max-width: 1526.4px;
}

.gradient-bottom-gray
{
    background: linear-gradient(180deg, rgb(255 255 255) 60%, #e4e4e4 110%);
}

h1{
        font-size: 40px;
    font-family: var(--font-heading);
}
h2 {
    font-size: 36px;
    font-family: var(--font-heading);
}
header {
    width: 100%;
}
/*Sticky Header*/
header {
    transition: .3s;
}

header.sticky {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

header.sticky.sticky-active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: #FFF;
    box-shadow: 0px 0px 6px 1px rgb(0 0 0 / 9%);
    position: fixed;
    z-index: 9;
}
header.sticky.sticky-active .header-top-row
{
    height: 0;
    overflow: hidden;
    transition: 0.3s;
}
/*Sticky Header*/

/*Menu Starts*/
.hz69-menu-v2-container {
    background: var(--color-primary-lite);
}

.hz69-menu-v2 {
    display: flex;
    justify-content: space-evenly;
}

.has-dropdown {
    position: unset;
}

.hz69-menu-v2>li>a {
    color: #FFF;
    display: flex;
    gap: 5px;
    padding: 10px 7px;
    align-content: center;
}
.hz69-menu-v2>li>a:hover{
    background: #972322;
}

.hz69-menu-v2>li>a>svg {
    width: 20px;
    height: 30px;
    fill: #FFF;
}

.menu-toggle {
    background-color: transparent;
    cursor: pointer;
    display: inline-block;
}

.menu-toggle svg {
    width: 30px;
    height: 30px;
}

.close-btn {
    background: transparent;
    cursor: pointer;
}

.close-btn svg {
    width: 30px;
    height: 30px;
    fill: #FFF;
    position: absolute;
    right: 10px;
    top: 10px;
}

.drop-down-list {
    display: none;
    position: absolute;
    background-color: #fff;
    z-index: 9;
    transition: all 0.3s;
    box-shadow: 0 3px 4px 0px rgb(0 0 0 / 18%);
    padding-bottom: 10px;
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}



@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3%, 0);
        transform: translate3d(0, -3%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3%, 0);
        transform: translate3d(0, -3%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}



.hz69-menu-v2>li:hover>.drop-down-list {
    display: block;
    transition: all 0.3s;
    animation-name: fadeInDown;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
}

.hz69-menu-v2>li>.drop-down-list>li>a {
    display: block;
    padding: 6px 27px;
    border-bottom: 1px dashed #f2f2f2;
    font-size: 15px;
}

.hz69-menu-v2>li>.drop-down-list>li:last-child>a {

    border-bottom: none;
}

.hz69-menu-v2>li>.drop-down-list>li>a:hover {
    background: #f3f3f3;
}



@media (max-width:768px) {
    .hz69-menu-v2-container {
        opacity: 0;
        visibility: hidden;
        position: fixed;
        z-index: 9;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .hz69-menu-v2 {
        display: flex;
        padding: 30px 0px;
        flex-direction: column;
        gap: 18px;
        position: absolute;
        height: 100vh;
        overflow-y: scroll;
        width: 100%;
        justify-content: flex-start;
        margin-top: 20px;
    }

    .hz69-menu-v2>li>a {
        color: #FFF;
        display: flex;
        gap: 5px;
        padding: 11px 10px;
        background: #aa1917;
    }

    .has-dropdown {
        background: #aa1917;
        box-shadow: none;
    }

    .hz69-menu-v2>li>.drop-down-list>li>a {
        color: #FFF;
        border: none;

    }

    .hz69-menu-v2>li:hover>.drop-down-list {
        display: none;
        animation: none;
    }

    .drop-down-list {
        position: inherit;
        background-color: transparent;
        box-shadow: none;
    }

    .hz69-menu-v2>li>.drop-down-list>li>a:hover {
        background: transparent;
    }
}



/*Menu Ends*/


/*Main slider*/
/* move dots to right bottom */
.main-slider .swiper-pagination {
  text-align: right;
  right: 20px;
  left: auto;
  bottom: 20px;
}

/* default dot */
.main-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 0.6;
  border-radius: 50%;
  margin: 0 4px !important;
  transition: all 0.3s ease;
}

/* active dot – rectangle / pill */
.main-slider .swiper-pagination-bullet-active {
  width: 22px;
  height: 8px;
  border-radius: 20px;
  opacity: 1;
}

/*Main slider*/


/*Solutions Swiper*/
/* wrapper to keep buttons outside slides */
.solutions-swiper-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* swiper */
.solutions-swiper {
  width: 100%;
}

/* slide item */
.solutions-swiper .swiper-slide a {
  display: block;
  text-align: center;
  text-decoration: none;
}

.solutions-swiper img {
  width: 100%;
  border-radius: 140px;
  display: block;
}

.solutions-swiper h3 {
  margin-top: 12px;
  font-size: 16px;
  color: #000;
}

/* navigation buttons */
.solutions-nav {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.solutions-prev {
  left: -60px;
}

.solutions-next {
  right: -60px;
}

.solutions-nav svg {
  width: 18px;
  height: 18px;
  fill: #7f7f7f;
}

/* mobile spacing fix */
@media (max-width:768px) {
  .solutions-prev {
    left: 0;
  }
  .solutions-next {
    right: 0;
  }
}

/*Solutions Swiper*/

/*Collapse Div*/
.hz-collapse {
  width: 100%;
}

.hz-collapse-item {
  border-bottom: 1px solid #e7e7e7;
}

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

.hz-collapse-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
}

.hz-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* left icon box */
.hz-icon-box {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hz-icon-box svg {
  width: 18px;
  height: 18px;
  fill: #a3a3a3;
}

/* title */
.hz-collapse-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-heading);
}

/* plus / minus button */
.hz-toggle-btn {
  width: 32px;
  height: 32px;
  background: #adadad;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  flex-shrink: 0;
}

/* content */
.hz-collapse-content {
  overflow: hidden;
  padding-right: 40px;
}

.hz-collapse-content p {
  margin: 0 0 16px 50px;
}

/* active state */
.hz-collapse-item.active .hz-icon-box,
.hz-collapse-item.active .hz-toggle-btn {
  background: var(--color-primary-lite);
}

.hz-collapse-item.active .hz-icon-box svg {
  fill: #fff;
}

/*Collapse Div*/


/*Category Box*/
.banking-category-box {
  background: #eef5f1;
  border-radius: 16px;
  padding: 22px;
  display: block;
}

.banking-icon {
  width: 52px;
  height: 52px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.banking-icon svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

.banking-category-box h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  font-family: var(--font-heading);
}

.banking-category-box p {
  margin: 0;
  line-height: 1.5;
}
.banking-category-box {
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

/* hover state */
.banking-category-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  background: #e6f1ec;
}

/* icon interaction */
.banking-category-box:hover .banking-icon {
  transform: scale(1.08);
}

/* smooth icon scaling */
.banking-icon {
  transition: transform 0.3s ease;
}
/*Category Box*/

/*Home bank section*/
.bank-info-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.bank-info-inner {
  display: flex;
  align-items: center;
  position: relative;
}

/* LEFT CONTENT */
.bank-info-content {
  width: 55%;
  padding-right: 230px;
  z-index: 1;
}

.bank-info-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  line-height: 42px;
}

.bank-info-content p {
  /* font-size: 15px; */
  color: #555;
  margin-bottom: 19px;
}

.bank-info-content ul {
  padding-left: 0;
}

.bank-info-content li {
  margin-bottom: 10px;
  position:relative;
  padding: 0 0 0 19px;
}
.bank-info-content li::after {
  content:'';
  position: absolute;
  left: 0px;
  top: 11px;
  width: 11px;
  height: 11px;
  background: #017950;
  border-radius: 50%;
}

/* RIGHT IMAGE */
.bank-info-image {
  width: 45%;
  position: relative;
}

.bank-info-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* CENTER OVERLAPPING TABS */
.bank-info-tabs {
  position: absolute;
  right: 45%;
  transform: translateX(40%);
  width: 280px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

/* TAB BUTTONS */
.tab-btn {
  background: #fff;
  border: none;
  padding: 22px;
  text-align: center;
  cursor: pointer;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.tab-btn:first-child {
  border-radius: 14px 14px 0 0;
}

.tab-btn:last-child {
  border-radius: 0 0 14px 14px;
  border-bottom: none;
}

.tab-btn svg {
  width: 56px;
  height: 56px;
  fill: #0a7a4a;
  margin-bottom: 10px;
}

.tab-btn h4 {
  margin: 6px 0;
  font-size: 18px;
  font-family: var(--font-heading);
  font-weight: 500;
  color: #000;
}

.tab-btn p {
  font-size: 15px;
  color: #666;
}

/* ACTIVE TAB */
.tab-btn.active {
  background: var(--color-primary);
  color: #fff;
}

.tab-btn.active h4{
  color: #fff;
}
.tab-btn.active p {
  color: #f1f1f1;
}

.tab-btn.active svg {
  fill: #fff;
}

/* MOBILE RESET */
@media (max-width: 992px) {
  .bank-info-inner {
    flex-direction: column;
  }

  .bank-info-content,
  .bank-info-image {
    width: 100%;
    padding-right: 0;
  }

  .bank-info-tabs {
    position: static;
    transform: none;
    width: 100%;
    flex-direction: row;
    margin-bottom: 25px;
    margin-top: 30px;
  }

  .tab-btn {
    flex: 1;
    border-radius: 12px;
    border-bottom: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }
}

/*Home bank section*/

/*Button Styles*/
.btn-s2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 999px;
  transition: 
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-s2.white {
  background: #fff;
  color: var(--color-primary);
}

/* icon */
.btn-s2 .icon {
  width: 18px;
  height: 18px;
  fill: #fff;
  transition: transform 0.3s ease;
}

.btn-s2.white  .icon {
  fill: var(--color-primary);
}
/* hover animation */
.btn-s2:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

/* arrow slide */
.btn-s2:hover .icon {
  transform: translateX(6px);
}
.btn-s2:hover {
  box-shadow:
    0 10px 22px rgba(0,0,0,0.18),
    0 0 0 6px rgba(255,255,255,0.12);
}

/*Button Styles*/

/*Service Section*/
.green-bg
{
background: var(--color-primary);
}
/*Service Section*/


/*Other Service home swiper*/
/* swiper sizing */
.continuous-swiper {
  padding: 30px 0;
}

/* slide width controls visible area */
.continuous-swiper .swiper-slide {
  width: 320px; /* controls how many fit on screen */
}

/* card */
.slide-box {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

/* image */
.slide-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* gradient overlay */
.slide-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0)
  );
  z-index: 1;
}

/* title */
.slide-box h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  font-size: 20px;
  color: #fff;
  z-index: 2;
}

/*Other Service home swiper*/


/*Footer*/
.site-footer {
  font-family: inherit;
}

.site-footer .container-fluid {
  padding-left:0;
  padding-right:0
}
/* LEFT COLUMN */
.footer-left {
  background: #303030;
  color: #fff;
  padding: 50px 40px;
}

.footer-logo {
  max-width: 240px;
  margin-bottom: 16px;
}

.bank-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.bank-reg {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 24px;
}

.footer-left h6 {
  font-weight: 500;
  margin-bottom: 7px;
  font-size: 18px;
  font-family: var(--font-heading);
}

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

.contact-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}

.contact-list a {
  color: #fff;
  text-decoration: none;
}

.contact-list svg {
  width: 20px;
  height: 29px;
  fill: #fff;
  flex-shrink: 0;
}

.footer-left hr {
  border-color: rgba(255,255,255,0.2);
  margin: 20px 0;
}

/* RIGHT COLUMN */
.footer-right {
  background: #eef5f1;
  padding: 50px 0;
}

.footer-right h6 {
  font-weight: 500;
  margin-bottom: 14px;
  font-size: 19px;
  font-family: var(--font-heading);
}

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

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

.footer-links a {
  text-decoration: none;
  color: #222;
  font-size: 15px;
  transition: all 0.3s ease;
}

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

/* SOCIAL ICONS */
.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: #000;
}

/* GOOGLE PLAY */
.play-badge {
  max-width: 140px;
  margin-top: 8px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: right;
  font-size: 13px;
  margin-top: 40px;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .footer-left,
  .footer-right {
    padding: 40px 20px;
  }

  .footer-bottom {
    text-align: center;
  }
}

/*Footer*/

.innerpage {
    padding: 50px 0;
}


/*Innerpage header*/
.innerpage-header {
  padding: 70px 0 90px;
  text-align: center;
  background-image: url(../images/header-bg2.png); /* adjust if needed */
  background-size: cover;
  background-position: center center;
  background-repeat: repeat;
}

.innerpage-header h2 {
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 700;
  margin-top: 0;
}

/* breadcrumb */
.innerpage-header .breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
}

/* breadcrumb items */
.innerpage-header .breadcrumb li {
  font-size: 14px;
  color: #000000;
  position: relative;
}

/* links */
.innerpage-header .breadcrumb a {
  text-decoration: none;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.innerpage-header .breadcrumb a:hover {
  color: #000;
}

/* triangle separator */
.innerpage-header .breadcrumb li + li::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 12px;
  border-left: 6px solid #b42a29;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/*Innerpage header*/

/* ==============================
   Leadership Section
   ============================== */


.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}

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

/* ==============================
   Leader Tile
   ============================== */

.leader-tile {
  height: 100%;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.leader-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* Image area */
.leader-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: #eef1ec;
}

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

/* Info strip */
.leader-info {
  padding: 12px 8px;
  text-align: center;
  border-top: 1px solid #eeeeee;
}

.leader-name {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.leader-position {
  display: block;
  font-size: 12px;
  color: #777777;
  margin-top: 4px;
}




/* ==============================
   Vision & Mission Flow Section
   ============================== */

.vm-flow-section {
  padding: 70px 0;
  background-color: #ffffff;
}

/* Vision / Mission Row */
.vm-row {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

/* Number Index */
.vm-index {
  font-size: 48px;
  font-weight: 700;
  color: #e5e5e5;
  line-height: 1;
  flex-shrink: 0;
}

/* Content */

.vm-content img {
  width: 60px;
  margin-bottom: 14px;
}

.vm-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.vm-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

/* ==============================
   Statement / Notice Band
   ============================== */

.vm-statement {
  margin-top: 60px;
  padding: 35px;
  background-color: #f6f8f5;
  border-left: 6px solid #1f5a3a;
}

.vm-statement h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.vm-statement p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  color: #333;
}

/* ==============================
   Responsive
   ============================== */

@media (max-width: 768px) {
  .vm-row {
    flex-direction: column;
    gap: 15px;
  }

  .vm-index {
    font-size: 36px;
  }
}

/* ==============================
   President Message Section
   ============================== */

.president-message-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.president-wrap {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Image */
.president-photo {
  flex: 0 0 260px;
}

.president-photo img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Content */
.president-content {
  flex: 1;
}

.president-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.president-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 16px;
}

.highlight {
  color: #1f5a3a;
  font-weight: 600;
}

/* Signature */
.president-signature {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  font-size: 15px;
  line-height: 1.7;
}

/* ==============================
   Responsive
   ============================== */

@media (max-width: 768px) {
  .president-wrap {
    flex-direction: column;
    gap: 25px;
  }

  .president-photo {
    max-width: 220px;
  }
}



/* ==============================
   Branch List Section
   ============================== */

.branch-list-section {
  padding: 60px 0;
  background-color: #ffffff;
}

/* Single row */
.branch-row {
  display: flex;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
}

.branch-row:last-child {
  border-bottom: none;
}

/* Left column */
.branch-left {
  width: 260px;
  flex-shrink: 0;
}

.branch-left h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f5a3a;
  margin: 0;
}

/* Right column */
.branch-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Detail line */
.branch-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  align-items: flex-start;
}

.branch-item a {
  color: inherit;
  text-decoration: none;
}

/* Icons */
.branch-item .icon {
  width: 16px;
  height: 16px;
  fill: #1f5a3a;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ==============================
   Responsive
   ============================== */

@media (max-width: 768px) {
  .branch-row {
    flex-direction: column;
    gap: 12px;
  }

  .branch-left {
    width: auto;
  }
}

/* ==============================
   Scheme Detail Section
   ============================== */

.scheme-detail-section {
  padding: 70px 0;
  background-color: #ffffff;
}

/* Layout */
.scheme-wrap {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Image Panel */
.scheme-media {
  flex: 0 0 320px;
}

.scheme-media img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Content */
.scheme-content {
  flex: 1;
}

/* Title */
.scheme-title {
  font-size: 37px;
  font-weight: 600;
  margin-bottom: 22px;
  color: #1f5a3a;
}

/* H2 inside content */
.scheme-detail-section h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 26px 0 12px;
  color: #222;
}

/* Text */
.scheme-text {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}

/* ==============================
   Custom List Style (list-s1)
   ============================== */

.list-s1 {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.list-s1 li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

/* Bullet */
.list-s1 li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #1f5a3a;
}

/* Inner dot */
.list-s1 li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
}

/* ==============================
   CTA Box
   ============================== */

.scheme-cta {
  margin-top: 36px;
  padding: 22px 26px;
  background-color: #f6f8f5;
  border-left: 5px solid #1f5a3a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.scheme-cta span {
  font-size: 14px;
  color: #333;
}

.scheme-cta a {
  padding: 11px 20px;
  background-color: #1f5a3a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.scheme-cta a:hover {
  background-color: #17462e;
}

/* ==============================
   Responsive
   ============================== */

@media (max-width: 768px) {
  .scheme-wrap {
    flex-direction: column;
  }

  .scheme-media {
    max-width: 100%;
  }

  .scheme-title {
    font-size: 28px;
  }

  .scheme-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==============================
   GALLERY COMMON
   ============================== */

.gallery-albums,
.gallery-photos,
.gallery-videos {
  padding: 60px 0;
}

/* ==============================
   ALBUM LIST
   ============================== */

.album-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.album-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.15);
}

.album-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.album-info {
  padding: 16px;
  text-align: center;
}

.album-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.album-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #1f5a3a;
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
}

/* ==============================
   PHOTO GRID
   ============================== */

.photo-thumb {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.photo-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-thumb:hover img {
  transform: scale(1.08);
}

.album-back-btn {
  margin-bottom: 20px;
}

.album-back-btn a {
  font-size: 14px;
  color: #1f5a3a;
  text-decoration: none;
  font-weight: 500;
}

/* ==============================
   VIDEO GALLERY
   ============================== */

.video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.video-thumb {
  position: relative;
  display: block;
}

.video-thumb img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  color: #fff;
  background: rgba(0,0,0,0.35);
}

.video-title {
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  margin: 0;
}

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

@media (max-width: 768px) {
  .album-image img,
  .video-thumb img {
    height: 180px;
  }

  .photo-thumb img {
    height: 150px;
  }
}


/* ==============================
   Contact Page Styled
   ============================== */

.contact-page-styled {
  padding: 70px 0;
  background-color: #ffffff;
}

.contact-intro {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

/* Map box */
.contact-map-box {
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Info box */
.contact-info-box {
  height: 100%;
  padding: 32px;
  background-color: #f8f9f6;
  border-radius: 14px;
}

.contact-info-box h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1f5a3a;
}

/* Contact list */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}

.contact-info-list strong {
  font-size: 15px;
  display: block;
  margin-bottom: 6px;
  color: #1f5a3a;
}

.contact-info-list p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #333;
}

.contact-info-list a {
  color: inherit;
  text-decoration: none;
}

/* Icon circle */
.icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.icon-wrap .icon {
  width: 20px;
  height: 20px;
  fill: #1f5a3a;
}

/* ==============================
   Responsive
   ============================== */

@media (max-width: 768px) {
  .contact-info-box {
    padding: 24px;
  }

  .contact-info-box h3 {
    font-size: 20px;
  }
}

/* Savings Page Styling */
.savings-page {
  background: #f8fafc;
}

.savings-page .content-card {
  background: #ffffff;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.savings-page h4 {
  color: #0b4b8a;
  margin-bottom: 12px;
  font-weight: 600;
}

.savings-page p {
  margin-bottom: 10px;
  line-height: 1.7;
}

.savings-page .download-btn {
  background: #0b4b8a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

.savings-page .download-btn:hover {
  background: #083763;
  color: #fff;
}

/* ===============================
SERVICE PAGE
=============================== */

.service-section {
  padding: 80px 0;
}

/* alternating light backgrounds */

.bg-s1 {
  background-color: #efefef;
}

.bg-s2 {
  background-color: #ffffff;
}

/* image style */

.service-img {
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
  transition: transform .35s ease;
}

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

/* list style */

.service-list {
  padding-left: 18px;
  margin-top: 15px;
}

.service-list li {
  margin-bottom: 8px;
  list-style: disc;
}

/* links */

.service-section a {
  text-decoration: none;
}

/* mobile spacing */

@media (max-width: 991px) {

  .service-section {
    padding: 60px 0;
  }

}


/*Responsive*/
@media (max-width:768px)
{
h1 {
    font-size: 34px;
    margin: 0 0 0;
    line-height: 38px;
}
.banking-category-box {
  margin: 30px 0 0;
}
.bank-info-section {
    padding: 20px 0;
}
.bank-info-content h2 {
    font-size: 33px;
    line-height: 38px;
}
h2 {
    font-size: 30px;
    line-height: 30px;
}
.btn-s2 {
    padding: 16px 24px;
    font-size: 14px;
}
.footer-right h6 {
    margin-top:0px;
}

.innerpage-header {
    padding: 30px 0 30px;
}
}
/*Responsive*/


.banking-facilities{
    background:#f7f9fb;
}

.section-title{
    font-size:32px;
    font-weight:600;
    color:#017950;
}

.section-subtitle{
    max-width:700px;
    margin:auto;
    color:#666;
}

.facility-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:10px;
    transition:all .3s ease;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    height:100%;
}

.facility-card img{
    width:60px;
    margin-bottom:20px;
}

.facility-card h4{
    font-size:20px;
    font-weight:600;
    margin-bottom:10px;
}

.facility-card p{
    font-size:14px;
    color:#666;
}

.facility-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}