/* UTILITIES */

.text-center {
	text-align: center;
}

.mt-2 {
	margin-top: 2rem;
}

.mb-2 {
	margin-bottom: 2rem;
}

/* Top nav arrows */
.nav-links li a {
	position: relative;
	padding-right: 18px; /* space for arrow */
}

/* Arrow */
.nav-links li a::after {
	content: "›"; /* clean chevron like Infinite Campus */
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	line-height: 1;
	opacity: 0.7;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hover effect */
.nav-links li a:hover::after {
	transform: translate(4px, -50%);
	opacity: 1;
}

/* ================= SAFE FEATURE HOVER ANIMATION ================= */

.features-inner a {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Preserve existing feature styles */
.features-inner .feature {
  position: relative;
  transition:
	transform 0.35s cubic-bezier(.22,.61,.36,1),
	box-shadow 0.35s cubic-bezier(.22,.61,.36,1);
}

.services .features-inner .feature {
box-shadow: none !important;
}

/* Soft glow overlay (does NOT affect layout) */
.features-inner .feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
	circle at top left,
	rgba(0,91,187,0.25),
	transparent 70%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.services .features-inner .feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: none !important;
  opacity: 0;
box-shadow: none !important;
}




/* Title underline animation only */
.features-inner .feature h3 {
  position: relative;
}



/* HOVER */
@media (min-width: 1600px) {

.features-inner a:hover .feature {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
}

.features-inner a:hover .feature::before {
  opacity: 1;
}

.services .features-inner a {cursor: default  !important;}

.services .features-inner a:hover .feature {
  transform: none !important;
 }
}





/* Keyboard accessibility */
.features-inner a:focus-visible .feature {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

/* ================= FEATURE ARROW HOVER INDICATOR ================= */



/* Hover animation */
.features-inner a:hover .feature h3::before {
  opacity: 1;
  transform: translateY(0);
}


.customer-support .rect-btn:hover, .customer-support .rect-btn_submit:hover {background: #383838;color:#d3e1bb;}

.customer-support .rect-btn {
  position: relative;
  display: inline-flex;
  flex-direction: column;       /* stack arrow above text */
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  min-height: 60px;             /* base height */
  font-size: 1rem;
  font-weight: 500;
  background-color: #222;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition:
	transform 0.45s cubic-bezier(.23,1,.32,1),
	box-shadow 0.45s cubic-bezier(.23,1,.32,1),
	background-color 0.45s ease,
	min-height 0.45s cubic-bezier(.23,1,.32,1); /* smooth height */
}

.customer-support .rect-btn_submit {
  position: relative;
  display: inline-flex;
  flex-direction: column;       /* stack arrow above text */
  align-items: center;
  justify-content: center;
  padding-left:20px;
  padding-right: 20px;
  min-height: 44px;             /* base height */
  font-size: 1rem;
  font-weight: 500;
  background-color: #222;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition:
	transform 0.45s cubic-bezier(.23,1,.32,1),
	box-shadow 0.45s cubic-bezier(.23,1,.32,1),
	background-color 0.45s ease,
	min-height 0.45s cubic-bezier(.23,1,.32,1); /* smooth height */
}

.btn-narrow {width: fit-content;  padding-left:20px;  padding-right: 20px;margin: auto; color: #fff !important;}
	  
	  
	 .btn-narrow:hover { color: #d3e1bb !important; }
	 
	 .alleft {margin: 0px !important;margin-top:30px !important;}

/* Active click */
.customer-support .rect-btn:active, .customer-support .rect-btn_submit:active {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

/* Keyboard focus */
.customer-support .rect-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

/* Shine overlay */
.customer-support .rect-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
	120deg,
	transparent,
	rgba(255,255,255,0.15),
	transparent
  );
  transition: left 0.6s cubic-bezier(.23,1,.32,1);
  pointer-events: none;
}



.customer-support .rect-btn:hover::after {
  animation: arrowBounce 0.6s cubic-bezier(.23,1,.32,1);
}

/* ================================
   EXX MODERN DROPDOWN SELECT
   ================================ */

.exx-form-select {
	width: 100%;
	max-width: 640px;
	padding: 14px 44px 14px 16px;
	font-size: 0.95rem;
	border-radius: 5px;
	border: 1px solid #d0d0d0;
	background-color: #f9fafb;
	color: #111;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

/* Custom arrow */
.exx-form-field {
	position: relative;
}

.exx-form-select {
	background-image:
		linear-gradient(45deg, transparent 50%, #555 50%),
		linear-gradient(135deg, #555 50%, transparent 50%);
	background-position:
		calc(100% - 20px) 50%,
		calc(100% - 14px) 50%;
	background-size:
		6px 6px,
		6px 6px;
	background-repeat: no-repeat;
}

/* Focus state */
.exx-form-select:focus {
	outline: none;
	background-color: #ffffff;
	border-color: #5df63a;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

/* Disabled placeholder option */
.exx-form-select option[value=""] {
	color: #9a9a9a;
}

/* Required asterisk */
.exx-required {
	color: #e11d48;
	font-weight: 700;
	margin-left: 4px;
}

/* Mobile tap improvements */
@media (max-width: 520px) {
	.exx-form-select {
		padding-right: 40px;
	}
}
