/* Right align horizontal menu */
.WaGadgetMenuHorizontal .menuInner ul {
  display: flex;
  justify-content: flex-end;
}

/*Code for hover click boxes*/
.click-box {
  display: flex;                 /* enables centering */
  flex-direction: column;        /* keeps title + desc stacked */
  justify-content: center;       /* vertical centering */
  align-items: justify;           /* horizontal centering */

  height: 110px;                 /* fixed height (adjust as needed) */
  padding: 30px;
  background: #f4f4f4;
  border-radius: 15px;
  transition: 0.3s ease;

  text-decoration: none;
  color: inherit;

  font-family: Arial, sans-serif !important; /* force Arial */
  text-align: center;           /* center multi-line text */
}

.click-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  color: #0000A5;
  text-decoration: none;
}

.click-box-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.click-box-desc {
  font-size: 12px;
  line-height: 1.4;
}

/* Ensure everything inside also inherits Arial and no underline */
.click-box * {
  text-decoration: none !important;
  font-family: Arial, sans-serif !important;
}

/* Click box 2*/
.click-box2 {
  display: block;
  padding: 30px;
  background: #ffffff;
  border-radius: 15px;
  transition: 0.3s ease;
  text-align: center;           /* centers everything */
  text-decoration: none;
  color: inherit;
}

.click-box2:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  color: #0000A5;
  text-decoration: none;
}

/* Image styling */
.click-box2 img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;     /* centers image + space below */
}

/* Title styling */
.click-box2-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* Prevent underline on anything inside */
.click-box2 * {
  text-decoration: none !important;
}

.click-box2 img {
  width: 70px;      /* change this */
  height: auto;
  display: block;
  margin: 0 auto 15px auto;

  
/*Changing the global headers*/
h2 {
  font-family: 'Arial', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
}

h3 {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
}