/* =============== RESET & BASE =============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #1a1a1a;
  background: #E2E8ED;
}

section {
  display: grid;
  position: relative;
}

/* ===== NAVBAR: Header with #00529C background ===== */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff; /* Your requested header color */
      padding: 14px 24px;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }
    
    .logo-container{
        width:50%;
    }
   
    .logo-container img {
      height: 40px;
      width: auto;
     /* filter: brightness(0) invert(1);  Makes logo white if needed */
    }
    /* ===== DESKTOP MENU (only on large tablets and up) ===== */
    .menu-wrapper {
      flex: 1;
      display: flex;
      justify-content: center;
    }
    .menu-wrapper ul {
      display: flex;
      list-style: none;
      gap: 20px;
    }
    .menu-wrapper ul li {
      position: relative;
    }
    .menu-wrapper ul li > a {
      text-decoration: none;
      color: #00529C; /* White text on blue header */
      font-weight: 600;
      font-size: 15px;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 6px;
      border-radius: 8px;
      transition: all 0.25s ease;
    }
    .menu-wrapper ul li.open > a,
    .menu-wrapper ul li > a:hover {
      background: rgba(255, 255, 255, 0.15); /* Subtle highlight */
      color: #ffffff;
	  background:#00529C;
	  padding:10px 18px;
    }
    .menu-wrapper ul li > a .angle-icon {
      transition: transform 0.3s ease;
      font-size: 14px;
    }
    .menu-wrapper ul li.open > a .angle-icon {
      transform: rotate(90deg);
    }
    /* ===== DROPDOWN MENU: Also #00529C background ===== */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      width: 580px;
      padding: 24px;
      border-radius: 12px;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
      display: none;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      z-index: 1001;
      max-width: calc(100vw - 48px);
      right: auto;
    }
    /* Align last menu dropdown to right */
    .menu-wrapper ul li:last-child .dropdown-menu {
      left: auto;
      right: 0;
    }
	.menu-wrapper ul li:nth-last-child(2) .dropdown-menu {
     left: auto;
      right: 0;
    }
	.menu-wrapper ul li:nth-last-child(3) .dropdown-menu {
      left: auto;
      right: 0;
    }
    .menu-wrapper ul li.open .dropdown-menu {
      display: grid;
    }
    .dropdown-menu a {
      text-decoration: none;
      color:#00529C; /* Light blue for readability */
      font-size: 14px;
      font-weight: 500;
      padding: 8px 6px;
      border-radius: 6px;
      transition: all 0.2s ease;
	  font-weight:bold;
    }
    .dropdown-menu a:hover {
      color:#E2E8ED;
      background: #00529C;
	  padding:10px 15px;
    }
    /* ===== NAV BUTTONS ===== */
    .nav-button {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .search_icon i {
      color: #00529C;
      font-size: 18px;
      width: 42px;
      height: 42px;
      line-height: 42px;
      text-align: center;
      border-radius: 50%;
      cursor: pointer;
      transition: background 0.3s;
    }
    .search_icon i:hover {
      background: rgba(255, 255, 255, 0.15);
    }
    .primary_btn {
      background: #FFD700; /* Gold for contrast on blue */
      color: #003366;
      padding: 10px 22px;
      border: none;
      font-size: 14px;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s;
    }
    .primary_btn:hover {
      background: #e6c200;
    }
    /* ===== HAMBURGER MENU (for screens < 992px) ===== **/
    .hamburger {
      display: none;
      font-size: 24px;
      color: #00529C;
      cursor: pointer;
    }
    /* ===== MOBILE MENU ===== */
    .mobile-menu {
      display: none;
      flex-direction: column;
      background: #ffffff;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
      border-radius: 16px;
      padding: 16px;
      position:fixed;
      top: 72px;
      right: 20px;
      z-index: 1001;
      width: 92%;
      max-width: 380px;
      border: 1px solid #e2e8f0;
	  overflow-y:auto;
	  height:100%;
    }
    .mobile-menu.active {
      display: flex;
    }
    .mobile-menu .menu-group {
      margin-bottom: 12px;
    }
    .mobile-menu .menu-group > button {
      background: none;
      border: none;
      font-weight: 600;
      font-size: 16px;
      color: #00529C;
      cursor: pointer;
      text-align: left;
      width: 100%;
      padding: 12px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .mobile-menu .submenu {
      display: none;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      padding: 12px 0 8px 16px;
    }
    .mobile-menu .menu-group.open .submenu {
      display: grid;
    }
    .mobile-menu .submenu a {
      padding: 8px 0;
      text-decoration: none;
      color: #334155;
      font-size: 14px;
      font-weight: 500;
    }
    .mobile-menu .submenu a:hover {
     background: #00529C;
	 color: #fff;
	 padding:10px 20px;
    }
    /* ===== BREAKPOINTS ===== */
    /* Show hamburger on anything smaller than large tablet (992px) */
    @media (max-width: 991px) {
      .menu-wrapper { display: none; }
      .hamburger { display: block; }
    }
    @media (max-width: 768px) {
      .dropdown-menu {
        width: 100vw;
        left: 0;
        right: auto;
        max-width: none;
        padding: 20px;
        border-radius: 0 0 12px 12px;
        grid-template-columns: repeat(2, 1fr);
      }
    }

/* =============== HERO SECTION =============== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero_page1 {
  display: grid;
  background: #00529C;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.hero_page1a {
  text-align: left;
  padding: 40px 25px;
  padding-left: 20px;
}

.hero_page1a h1 {
  font-size: 38px;
  padding-right: 80px;
  padding-left: 30px;
  color: #fff;
  font-weight: 700;
}

.hero_page1a p {
  font-size: 18px;
  padding-right: 50px;
  padding-left: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

.hero_page1a .primary_btn {
  background: red;
  padding: 10px 30px;
  margin-left: 30px;
  color: white;
  font-size: 15px;
  border: 2px solid red;
  border-radius: 8px;
  font-weight: bold;
}

.hero_page1b {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00529C 0%, #003d99 100%);
}

.hero_page1b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: inline-block;
}

.hero_page2 {
  padding: 30px 40px;
  background: #fff;
}

.track {
  display: flex;
  padding: 23px 0;
  text-decoration: none;
  color: inherit;
}

.track2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 7px 0;
}

.track_icon {
  margin-left: auto;
  font-size: 13px;
}

.svg_icon {
  padding: 0 15px;
}

.svg_text h3 {
  font-size: 26px;
  padding: 0 15px;
  color: #00529C;
  font-weight: 700;
}

.svg_text p {
  font-size: 17px;
  padding: 0 15px;
  color: #495057;
}

.line {
  height: 1px;
  background: #e0e0e0;
  margin: 0 20px;
}

/* =============== BUSINESS SECTIONS =============== */
.business {
  background: #E2E8ED;
  padding: 40px 60px;
}

.business1 {
  text-align: center;
  color: #0a1428;
  margin-bottom: 40px;
}

.business1 h2 {
  font-size: 32px;
  margin: 20px 0;
  font-weight: 700;
}

.business1 p {
  font-size: 17px;
  max-width: 800px;
  margin: 0 auto 25px;
  color: #495057;
}

.other_business {
  background: #E2E8ED;
  padding: 40px 60px;
}

.other_business1 {
  color: #0a1428;
}

.other_business1 h2 {
  font-size: 32px;
  margin: 20px 0;
  text-align: center;
  font-weight: 700;
}

.other_business1 p {
  font-size: 17px;
  max-width: 1000px;
  margin: 0 auto 16px;
  color: #495057;
}

.other_businessbtn {
  text-align: center;
  padding: 25px 0;
}

.business2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.business_content {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.business_content:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.business_img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.business_content h4 {
  font-size: 22px;
  padding: 16px 20px 8px;
  color: #0a1428;
  font-weight: 700;
}

.business_content p {
  font-size: 16px;
  padding: 0 20px 12px;
  color: #495057;
}

.business_contenta {
  display: inline-flex;
  align-items: center;
  padding: 0 20px 15px;
  text-decoration: none;
  color: #00529C;
  font-weight: 600;
  transition: all 0.3s ease;
}

.business_contenta:hover {
  gap: 8px;
}

.business_contenta i {
  font-size: 10px;
  margin-left: 8px;
}

.business_sec,
.business_sector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  gap: 0;
}

.sec1,
.sector1 {
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:#00529C;
}

.sector11{
	padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:#F5DEC6;
}

.sector11 p{
	color:#8B4513;
}

.sector11 h4{
	color:#B87333;
	font-size:30px;
	padding-bottom:15px;
}
.sec11{
	color:#00529C;
	background:#B4CCE2;
	 padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}
.sec11 p{
	font-weight:bold;
}
.sec11 h4{
  font-size: 28px;
  color: #000;
  margin-bottom: 20px;
  font-weight: 700;
}

.sec11 h4{
  font-size: 28px;
  color: #000;
  margin-bottom: 20px;
  font-weight: 700;
}


.sec1 h4,
.sector1 h4 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}

.sec1 ul, .sec11 ul,
.sector1 ul {
  padding-left: 20px;
  margin: 15px 0;
}

.sec1 ul li, .sec11 ul li,
.sector1 ul li {
  font-size: 16px;
  margin-bottom: 10px;
  list-style-type: disc;
  color: #fff;
}

.sec11 ul li {
  font-size: 16px;
  margin-bottom: 10px;
  list-style-type: disc;
  color: #000;
}

.sec2 img,
.sector2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn {
  text-align: center;
  padding-bottom: 20px;
}

/* =============== FAQ SECTION =============== */
.faq-container {
  background: #E2E8ED;
  padding: 40px 60px;
}

.faq-item {
  background: #fff;
  margin-bottom: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: none;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: #0a1428;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #E2E8ED;
}

.faq-question.active {
  background: #00529C;
  color: white;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
}

.faq-answer.active {
  max-height: 500px;
  padding: 0 20px 20px 20px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: #495057;
}

/* =============== FOOTER =============== */
/* Enhanced footer with multiple sections and more quick links */
.footer {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 50px 80px;
  gap: 40px;
}

.footer1 img {
  width: 40%;
  display: block;
}

.footer2 {
  display: flex;
  flex-direction: column;
}

.footer_track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
}

.footer_track .svg_text p {
  font-size: 16px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
  color: #495057;
}

.footer_track .svg_text p:hover {
  color: #00529C;
  border-bottom: 2px solid #00529C;
}

.line1 {
  height: 1px;
  background: #e0e0e0;
  margin: 8px 0;
}

/* Enhanced footer sections with more content */
.footer-sections {
  background: #00529C;
  padding: 50px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight:bold;
}

.footer-section ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-section ul li a::before {
  content: "→";
  opacity: 0;
  transition: opacity 0.3s ease;
  align-items:center;
  font-weight:bold;
}

.footer-section ul li a:hover::before {
  opacity: 1;
}

.footsection {
  background: #fff;
  padding: 0 80px;
}

.prefoot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px 0;
  align-items: center;
}

.prefooter1 p {
  text-align: center;
  font-size: 13px;
  color: #7a7a7a;
}

.prefooter2 {
  text-align: right;
}

.prefooter2 i {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: #f0f4f8;
  color: #00529C;
  font-size: 16px;
  margin-right: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.prefooter2 i:hover {
  background: #00529C;
  color: white;
}

.lastfooter {
  display: flex;
  align-items: center;
  background: #0a1428;
  padding: 20px 80px;
  color: white;
  gap: 30px;
}

.footlogo img {
  width: 90px;
  height: auto;
}

.lastfooter p {
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

/* =============== WAVE ANIMATION =============== */
.wave {
  position: absolute;
  width: 100%;
  height: 38px;
  bottom: 0;
  left: 0;
  background: url("../images/wave.png") repeat-x;
  background-size: 1811px 38px;
  animation: erigga 10s linear infinite;
  z-index: 10;
}

.wave::before,
.wave::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 38px;
  bottom: 0;
  left: 0;
  background: url("../images/wave.png") repeat-x;
  background-size: 1811px 38px;
}

.wave::before {
  opacity: 0.7;
  animation: erigga-reverse 10s linear infinite;
}

.wave::after {
  opacity: 0.5;
  animation: erigga 20s linear infinite;
  animation-delay: -5s;
}

@keyframes erigga {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1811px 0;
  }
}

@keyframes erigga-reverse {
  0% {
    background-position: 1811px 0;
  }
  100% {
    background-position: 0 0;
  }
}

.mobile-only-tagline {
  display: none;
  font-size: 18px;
  margin-top: 10px;
  font-weight: 600;
}

.mobile-only-h1 {
  display: none;
  font-size: 28px;
  margin-top: 10px;
  font-weight: 600;
}

/* =============== MOBILE RESPONSIVE =============== */
@media (max-width: 768px) {
  .menu-wrapper {
    display: none !important;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu.active {
    display: flex !important;
  }

  .hero,
  .hero_page1,
  .business_sec,
  .business_sector,
  .footer,
  .footer-sections {
    grid-template-columns: 1fr;
  }

  .sec1,
  .sector1 {
    padding: 40px 20px;
  }
  
  .sec11 {
    padding: 40px 20px;
  }

  .business {
    padding: 20px;
  }

  .footer {
    padding: 30px 20px;
  }

  .footer-sections {
    padding: 30px 20px;
    grid-template-columns: 1fr 1fr;
  }

  .footer1 {
    text-align: center;
  }

  .footer1 img {
    margin: 0 auto;
  }

  .prefoot {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .prefooter2 {
    margin-top: 15px;
    text-align: center;
  }

  .prefooter2 i {
    float: none;
    margin: 0 auto;
  }

  .lastfooter {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px;
  }

  .track {
    padding: 18px 0;
  }

  .svg_text h3 {
    font-size: 22px;
  }

  .svg_text p {
    font-size: 14px;
  }

  .hero_page2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .svg_icon {
    padding: 0 -5px;
  }

  .faq-container {
    padding: 20px;
  }

  .faq-question {
    font-size: 16px;
    padding: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .mobile-only-tagline {
    display: block;
    padding-bottom: 20px;
  }

  .mobile-only-h1 {
    display: block;
  }

  .hero_page1a h1 {
    display: none;
  }

  .hero_page1a p {
    display: none;
  }

  .hero_page1b img {
    display: none;
  }

  .hero_page1a {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 40px 20px;
  }

  .hero_page1a h1,
  .hero_page1a p {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  }

  .hero_page1a h1 {
    font-size: 28px;
    padding: 0;
    margin-bottom: 15px;
  }

  .hero_page1a p {
    font-size: 15px;
    margin: 10px 0 20px;
  }
}


@media (max-width: 768px) {
  .mobile-only-tagline {
    display: block;
    padding-bottom: 20px;
  }

  .mobile-only-h1 {
    display: block;
  }

  .hero_page1a h1 {
    display: none;
  }

  .hero_page1a p {
    display: none;
  }

 

  /* Hide the image element on mobile for all pages */
  .hero_page1b img {
    display: none;
  }

  /* Add overlay for better text contrast on mobile */
  .hero_page1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
  }

\
  /* FAQ responsive */
  .faq-container {
    padding: 20px;
  }

  .faq-question {
    font-size: 16px;
    padding: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }
  
    .hero_page1[data-page="home"] {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../hero/hero-index.jpg") center / cover
      no-repeat;
    position: relative;
    height: 100%;
  }

/* ABOUT PAGE - Different mobile background */
.hero_page1[data-page="about"] {
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("../hero/hero-about.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* SERVICES PAGE - Unique mobile background */
.hero_page1[data-page="services"] {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("../hero/hero-services.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* FREIGHT PAGE - Unique mobile background */
.hero_page1[data-page="freight"] {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../hero/hero-freight.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* PACKAGING PAGE - Unique mobile background */
.hero_page1[data-page="packaging"] {
  background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)), url("../hero/hero-packaging.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* SUPPORT PAGE - Unique mobile background */
.hero_page1[data-page="support"] {
  background: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)), url("../hero/hero-support.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* FAQ PAGE - Unique mobile background */
.hero_page1[data-page="faq"] {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../hero/hero-faq.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* SAVINGS ACCOUNTS */
.hero_page1[data-page="savings"] {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../hero/hero-savings.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* CURRENT ACCOUNTS */
.hero_page1[data-page="current"] {
  background: linear-gradient(rgba(0, 0, 0, 0.39), rgba(0, 0, 0, 0.39)), url("../hero/hero-current.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* FIXED DEPOSITS */
.hero_page1[data-page="fixed"] {
  background: linear-gradient(rgba(0, 0, 0, 0.41), rgba(0, 0, 0, 0.41)), url("../hero/hero-fixed.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* SALARY ACCOUNTS */
.hero_page1[data-page="salary"] {
  background: linear-gradient(rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.37)), url("../hero/hero-salary.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* STUDENT ACCOUNTS */
.hero_page1[data-page="student"] {
  background: linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36)), url("../hero/hero-student.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* YOUTH ACCOUNTS */
.hero_page1[data-page="youth"] {
  background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)), url("../hero/hero-youth.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* SENIOR CITIZEN ACCOUNTS */
.hero_page1[data-page="senior"] {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../hero/hero-senior.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* DIGITAL BANKING */
.hero_page1[data-page="digital"] {
  background: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)), url("../hero/hero-digital.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* MOBILE & INTERNET BANKING */
.hero_page1[data-page="mobile"] {
  background: linear-gradient(rgba(0, 0, 0, 0.43), rgba(0, 0, 0, 0.43)), url("../hero/hero-mobile.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* DEBIT CARDS */
.hero_page1[data-page="debit"] {
  background: linear-gradient(rgba(0, 0, 0, 0.39), rgba(0, 0, 0, 0.39)), url("../hero/hero-debit.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* PREPAID CARDS */
.hero_page1[data-page="prepaid"] {
  background: linear-gradient(rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.37)), url("../hero/hero-prepaid.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* ACCOUNT OPENING */
.hero_page1[data-page="open"] {
  background: linear-gradient(rgba(0, 0, 0, 0.41), rgba(0, 0, 0, 0.41)), url("../hero/hero-open.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* BUSINESS CURRENT ACCOUNTS */
.hero_page1[data-page="biz-current"] {
  background: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), url("../hero/hero-biz-current.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* SME BANKING */
.hero_page1[data-page="sme"] {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../hero/hero-sme.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* CORPORATE BANKING */
.hero_page1[data-page="corporate"] {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("../hero/hero-corporate.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* TRADE FINANCE */
.hero_page1[data-page="trade"] {
  background: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)), url("../hero/hero-trade.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* CASH MANAGEMENT */
.hero_page1[data-page="cash"] {
  background: linear-gradient(rgba(0, 0, 0, 0.41), rgba(0, 0, 0, 0.41)), url("../hero/hero-cash.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* MERCHANT SERVICES */
.hero_page1[data-page="merchant"] {
  background: linear-gradient(rgba(0, 0, 0, 0.39), rgba(0, 0, 0, 0.39)), url("../hero/hero-merchant.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* PAYROLL SERVICES */
.hero_page1[data-page="payroll"] {
  background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)), url("../hero/hero-payroll.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* BUSINESS LOANS */
.hero_page1[data-page="biz-loans"] {
  background: linear-gradient(rgba(0, 0, 0, 0.43), rgba(0, 0, 0, 0.43)), url("../hero/hero-biz-loans.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* WORKING CAPITAL */
.hero_page1[data-page="working-capital"] {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../hero/hero-working-capital.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* TREASURY SERVICES */
.hero_page1[data-page="treasury"] {
  background: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), url("../hero/hero-treasury.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* INTERNATIONAL BANKING */
.hero_page1[data-page="intl-banking"] {
  background: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)), url("../hero/hero-intl-banking.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* BUSINESS ONLINE BANKING */
.hero_page1[data-page="biz-online"] {
  background: linear-gradient(rgba(0, 0, 0, 0.41), rgba(0, 0, 0, 0.41)), url("../hero/hero-biz-online.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* PERSONAL LOANS */
.hero_page1[data-page="personal"] {
  background: linear-gradient(rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.37)), url("../hero/hero-personal.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* HOME LOANS */
.hero_page1[data-page="home-loan"] {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../hero/hero-home-loan.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* AUTO LOANS */
.hero_page1[data-page="auto"] {
  background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)), url("../hero/hero-auto.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* EDUCATIONAL LOANS */
.hero_page1[data-page="education"] {
  background: linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36)), url("../hero/hero-education.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* CREDIT CARDS */
.hero_page1[data-page="credit"] {
  background: linear-gradient(rgba(0, 0, 0, 0.39), rgba(0, 0, 0, 0.39)), url("../hero/hero-credit.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* OVERDRAFT */
.hero_page1[data-page="overdraft"] {
  background: linear-gradient(rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.37)), url("../hero/hero-overdraft.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* AGRICULTURAL LOANS */
.hero_page1[data-page="agri"] {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../hero/hero-agri.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* LOAN AGAINST PROPERTY */
.hero_page1[data-page="lap"] {
  background: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)), url("../hero/hero-lap.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* INSTANT LOANS */
.hero_page1[data-page="instant"] {
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("../hero/hero-instant.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* DEBT CONSOLIDATION */
.hero_page1[data-page="debt"] {
  background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)), url("../hero/hero-debt.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* LOAN CALCULATOR */
.hero_page1[data-page="calculator"] {
  background: linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36)), url("../hero/hero-calculator.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* APPLY LOAN */
.hero_page1[data-page="apply"] {
  background: linear-gradient(rgba(0, 0, 0, 0.41), rgba(0, 0, 0, 0.41)), url("../hero/hero-apply.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* MUTUAL FUNDS */
.hero_page1[data-page="mutual"] {
  background: linear-gradient(rgba(0, 0, 0, 0.43), rgba(0, 0, 0, 0.43)), url("../hero/hero-mutual.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* FIXED INCOME */
.hero_page1[data-page="fixed-income"] {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../hero/hero-fixed-income.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* GOVERNMENT BONDS */
.hero_page1[data-page="bonds"] {
  background: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)), url("../hero/hero-bonds.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* TREASURY BILLS */
.hero_page1[data-page="tbills"] {
  background: linear-gradient(rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.37)), url("../hero/hero-tbills.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* RETIREMENT PLANS */
.hero_page1[data-page="retirement"] {
  background: linear-gradient(rgba(0, 0, 0, 0.39), rgba(0, 0, 0, 0.39)), url("../hero/hero-retirement.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* CONTACT US */
.hero_page1[data-page="contact"] {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../hero/hero-contact.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* BRANCH & ATM LOCATOR */
.hero_page1[data-page="branches"] {
  background: linear-gradient(rgba(0, 0, 0, 0.41), rgba(0, 0, 0, 0.41)), url("../hero/hero-branches.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* CUSTOMER CARE */
.hero_page1[data-page="care"] {
  background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)), url("../hero/hero-care.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* FAQs */
.hero_page1[data-page="faqs"] {
  background: linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36)), url("../hero/hero-faqs.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* SERVICE REQUESTS */
.hero_page1[data-page="requests"] {
  background: linear-gradient(rgba(0, 0, 0, 0.39), rgba(0, 0, 0, 0.39)), url("../hero/hero-requests.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* REPORT FRAUD */
.hero_page1[data-page="fraud"] {
  background: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), url("../hero/hero-fraud.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* SECURITY CENTER */
.hero_page1[data-page="security"] {
  background: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)), url("../hero/hero-security.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* USER GUIDES */
.hero_page1[data-page="guides"] {
  background: linear-gradient(rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.37)), url("../hero/hero-guides.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* FORMS & DOWNLOADS */
.hero_page1[data-page="forms"] {
  background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)), url("../hero/hero-forms.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* RATES & FEES */
.hero_page1[data-page="fees"] {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../hero/hero-fees.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* FEEDBACK */
.hero_page1[data-page="feedback"] {
  background: linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36)), url("../hero/hero-feedback.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* COMPLAINTS */
.hero_page1[data-page="complaints"] {
  background: linear-gradient(rgba(0, 0, 0, 0.43), rgba(0, 0, 0, 0.43)), url("../hero/hero-complaints.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* OUR STORY */
.hero_page1[data-page="story"] {
  background: linear-gradient(rgba(0, 0, 0, 0.41), rgba(0, 0, 0, 0.41)), url("../hero/hero-story.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* LEADERSHIP */
.hero_page1[data-page="leadership"] {
  background: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)), url("../hero/hero-leadership.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* CAREERS */
.hero_page1[data-page="careers"] {
  background: linear-gradient(rgba(0, 0, 0, 0.39), rgba(0, 0, 0, 0.39)), url("../hero/hero-careers.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* CORPORATE GOVERNANCE */
.hero_page1[data-page="governance"] {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../hero/hero-governance.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* FINANCIAL REPORTS */
.hero_page1[data-page="reports"] {
  background: linear-gradient(rgba(0, 0, 0, 0.41), rgba(0, 0, 0, 0.41)), url("../hero/hero-reports.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* INVESTOR RELATIONS */
.hero_page1[data-page="investors"] {
  background: linear-gradient(rgba(0, 0, 0, 0.43), rgba(0, 0, 0, 0.43)), url("../hero/hero-investors.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* NEWSROOM */
.hero_page1[data-page="news"] {
  background: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)), url("../hero/hero-news.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* AWARDS & RECOGNITION */
.hero_page1[data-page="awards"] {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../hero/hero-awards.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* SUSTAINABILITY */
.hero_page1[data-page="sustainability"] {
  background: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), url("../hero/hero-sustainability.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* REGULATORY COMPLIANCE */
.hero_page1[data-page="compliance"] {
  background: linear-gradient(rgba(0, 0, 0, 0.41), rgba(0, 0, 0, 0.41)), url("../hero/hero-compliance.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* PARTNERSHIPS */
.hero_page1[data-page="partners"] {
  background: linear-gradient(rgba(0, 0, 0, 0.39), rgba(0, 0, 0, 0.39)), url("../hero/hero-partners.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

/* CONTACT INFORMATION */
.hero_page1[data-page="contact-info"] {
  background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)), url("../hero/hero-contact-info.jpg") center / cover no-repeat;
  position: relative;
  height: 100%;
}

}
