body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Cj-Text';
  src: url('/fonts/CJ_ONLYONE_Bold.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans";
  src: url('/fonts/NotoSans-SemiBold.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cj-Text", sans-serif;
}

p,
li,
a,
span,
.branch-buttons {
  font-family: "Noto Sans", sans-serif;
}


/* /////////////////////////////Header Start ////////////////////////// */
.top-bar {
  background-color: #0071ba;
  color: white;
  font-size: 13px;
  padding: 8px 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.top-bar a {
  color: white;
  text-decoration: none;
}

.top-bar .inner-top-bar {
  display: flex;
  justify-content: space-between;
}

.top-bar .inner-top-bar a {
  padding: 0 10px;
}

.top-bar .inner-top-bar .inner-middle-top-bar {
  border-left: 1px solid white;
  border-right: 1px solid white;

}

.top-bar div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.top-bar .separator {
  margin: 0 10px;
  user-select: none;
}

/* Logo & Helpline Bar */


.header-bar {
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Container */
.header-bar .container {
  /* max-width: 1140px; */
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo */
.logo img {
  height: 50px;
  max-width: 100%;
}

/* Helpline */
.helpline {
  background-color: #f7931e;
  color: white;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.helpline:hover {
  background-color: #e67e00;
}

.helpline i {
  margin-right: 8px;
}

.main-nav {
  padding-top: 15px;
}

.main-nav .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.main-nav .nav-links li a {
  text-decoration: none;
  font-weight: 600;
  color: #000000;
  transition: color 0.3s;
}

.main-nav .nav-links li a:hover {
  color: #004f88;
}

/* Responsive */
@media (max-width: 768px) {
  .header-bar .container {
    align-items: flex-start;
  }

  .helpline {
    margin-top: 10px;
  }
}

/* Hamburger Icon */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #0071ba;
}

/* Header Right (Nav + Helpline) */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header-right {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background: #fff;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
  }

  .header-right.open {
    display: flex;
  }

  .main-nav .nav-links {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .main-nav .nav-links li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
  }

  .helpline {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }
}



/* ////////////////////////Header End /////////////////////////// */



/* /////////////////////////Footer Start ///////////////////////// */


.load-more-wrapper {
  text-align: center;
  padding: 30px 0 10px;
  /* background: #f3f3f3; */
}

.load-more-btn {
  background-color: #ffa500;
  color: white;
  border: none;
  padding: 10px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.load-more-btn i {
  margin-right: 8px;
}

.load-more-btn:hover {
  background-color: #e69500;
}

.states-bar {
  background-color: #007bc7;
  color: white;
  padding: 20px;
  position: relative;
  border-radius: 10px 10px 0 0;
  margin-top: 20px;
  text-align: center;
}

.states-title {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

.states-list a {
  color: white;
  margin: 0 5px;
  text-decoration: none;
}

.states-list a:hover {
  text-decoration: underline;
}

.scroll-top-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  background: white;
  color: #007bc7;
  border: 2px solid #007bc7;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.scroll-top-btn:hover {
  background: #007bc7;
  color: white;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  color: #000;
  padding: 15px 20px;
  font-size: 14px;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
}

.footer-right a {
  margin-left: 10px;
  color: #000;
  text-decoration: none;
  font-size: 18px;
}

.footer-right a:hover {
  color: #007bc7;
}

.states-list a {
  display: inline-block;
  margin: 5px 10px;
}

.view-more {
  display: inline-block;
  margin-top: 10px;
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
}


/* /////////////////////////Footer End ///////////////////////// */