.page-title,
.ct-advanced-heading {
	position: relative;
}

.ct-advanced-heading:after,
.blog .page-title:after,
.page .page-title:after {
	content: attr(title) !important;
	position: absolute;
	z-index: -1;
	top: -7%;
	bottom: 0;
	width: 100%;
	height: 100%;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(50px, 15vw, 200px);
	font-weight: 800;
	line-height: 1;
	color: var(--theme-palette-color-7);
/* 	text-shadow: 0 0 2px rgba(255, 255, 255, 0.4); */
	text-shadow: -1px 0 rgba(255, 255, 255, 0.1), 0 1px rgba(255, 255, 255, 0.1), 1px 0 rgba(255, 255, 255, 0.1), 0 -1px rgba(255, 255, 255, 0.1);
}

.ct-advanced-heading:after {
	left: 0;
	font-size: clamp(70px, 10vw, 140px);
}

@media (min-width: 690px) {
	.ct-advanced-heading:after {
		justify-content: initial;
	}
}

.ct-special-features .stk-block-column:hover {
	transform: scale3d(1.05, 1.05, 1);
}@font-face {
  font-display: swap; /* Ensures text remains visible during font load */
}
img {
  max-width: 100%;
  height: auto;
  loading: lazy; /* Native lazy loading */
  decoding: async; /* Non-blocking image decoding */
}.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  transition: left 0.3s ease;
  z-index: 1000;
}

.mobile-menu.active {
  left: 0;
}.nav-link,
.btn,
button,
input[type="submit"] {
  min-height: 44px; /* Apple's recommended touch target size */
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
form {
  max-width: 600px;
  margin: 0 auto;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px; /* Prevents zoom on iOS */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: 0.5em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

p {
  margin-bottom: 1em;
  max-width: 65ch; /* Optimal reading width */
}
* {
  box-sizing: border-box;
}

.smooth-scroll {
  scroll-behavior: smooth;
}
.hover-lift:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 124, 186, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #005a87 0%, #004066 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 124, 186, 0.3);
}
.contact-info {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  margin: 40px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #007cba;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: white;
  font-size: 20px;
}.optimized-element {
  transform: translateZ(0); /* Create composite layer */
  will-change: transform;
}@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.6s ease-out;
}.client-logos {
  padding: 40px 0;
  background: white;
  text-align: center;
}

.client-logos h2 {
  margin-bottom: 40px;
  color: #333;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.logo-grid:hover {
  opacity: 1;
}

.client-logo {
  max-width: 120px;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%);
}@media (max-width: 768px) {
  /* Improve mobile forms */
  input[type="tel"] {
    font-size: 16px; /* Prevents zoom on iOS */
  }