/* Hover effect on features ictons */
.feature-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 174, 239, 0.05); /* light blue tint */
  border-radius: 10px;
}

.feature-icon {
  transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
  transform: scale(1.1);
}

/* Canadian Header */
#canadian-header {
	color: white;
	text-align: center;
	padding: 5px 0;
	font-weight: bold;
	font-size: 16px;
	position: relative;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}

#canadian-header span {
	margin: 0 8px;
	font-size: 18px;
}

/* Tablet (Kadence default: max-width 1024px) */
@media (max-width: 1024px) {
	#canadian-header {
		font-size: 14px;
	}
	#canadian-header span {
		font-size: 16px;
	}
}

/* Mobile (Kadence default: max-width 767px) */
@media (max-width: 767px) {
	#canadian-header {
		font-size: 12px;
	}
	#canadian-header span {
		font-size: 14px;
	}
}

	
/* Footer Links */
.footer-links {
  text-align: center;
  font-size: 12px;
  padding: 10px;
  line-height: 1.5;
  word-break: break-word;
}
.footer-links a {
  color: #ffffff;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* Footer Call Us Section */
.call_us_footer {
font-size:14px; 
text-align: center;
color:white;
}