
.mobile-dashboard {
  padding: 1rem;
  font-family: sans-serif;
}

.dashboard-header {
  position: sticky;
  top: 0;
  z-index: 999;
  /* Make sure it's above other content */
  background-color: #002f87;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.dashboard-logo {
  height: 40px;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 columns */
}

.icon-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #004080;
  background: #fff;
  padding: 0.5rem 0;
  /* padding top/bottom only */
}

.icon-tile img {
  width: 50px;
  height: 50px;
  border: 1px solid #004080;
  /* border only around image */
  border-radius: 10px;
  margin-bottom: 0.5rem;
  padding: 0.3rem;
  /* add a little inner spacing */
  background: white;
  /* background behind image */
}

.icon-tile span {
  display: block;
  /* no border here */
  font-weight: normal;
}

.section-title {
  font-weight: bold;
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: white;
  color: #004080;
}

.dashboard-header {
  background-color: #fff;
  color: #004080;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-button {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: blue;
  cursor: pointer;
}

.dashboard-logo {
  height: 40px;
}

/* Side Menu Styles */
.side-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 240px;
  height: 100%;
  background-color: white;
  box-shadow: 2px 0 6px rgba(0, 0, 0, 0.2);
  transition: left 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.side-menu-header {
  padding: 1rem;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

.side-logo {
  max-width: 180px;
  height: auto;
}

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

.side-menu-list li {
  border-bottom: 1px solid #e6e6e6;
}

.side-menu-list li a {
  display: flex;
  align-items: center;
  padding: 1rem;
  color: #004080;
  text-decoration: none;
  font-size: 1.1rem;
}

.side-menu-list li a .icon {
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

/* Overlay */
.overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
}

/* Active States */
.side-menu.open {
  left: 0;
}

.overlay.active {
  display: block;
}

.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 1rem 0rem 1rem;
}

.back-button {
  font-size: 1.5rem;
  text-decoration: none;
}

.header-logo {
  height: 40px;
}

.contact-intro {
  padding: 1rem;
}

.contact-card {
  background: #fff;
  margin: 1rem;
  padding: 0rem 1rem 0rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.card-text {
  flex: 1;
}

.button {
  white-space: nowrap;
  padding: 0.5rem 1rem;
  background: #002b80;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 32px;
  height: 32px;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


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

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding: 0.75rem 0;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-icon {
  width: 30px;
  height: 30px;
}

.call-button {
  background-color: #002f87;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.welcome-section {
  background-color: #0076b6;
  color: white;
  padding: 1.5rem 1rem;
}

.welcome-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  /* Makes it responsive */
}

.welcome-image-wrapper {
  flex: 0 0 120px;
}

.welcome-image {
  max-width: 100%;
  height: auto;
}

.welcome-text {
  flex: 1;
}

.welcome-text span {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.welcome-text p {
  margin: 0.25rem 0;
  font-size: 10px;
}

.left-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.back-button {
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #0076b6;
}

.back-button:hover,
.menu-button:hover {
  border-radius: 4px;
}

.back-button img {
  width: 20px;
}
