/*
Theme Name: Kadence Avion Child Theme
Theme URI: https://www.kadencewp.com/kadence-theme/
Description: Custom Kadence child theme for Avion Technology.
Author: Avion Technology
Template: kadence
Version: 1.0.0
*/

/* ========================================
   GLOBAL VARIABLES
======================================== */

:root {
	--primary: #08a9c2;
	--blue: #258ff0;
	--dark: #292f36;
	--dark-blue: #315f91;
	--text: #30343b;
	--white: #fff;
	--border: #ddd;
}

html {
	overflow-x: hidden;
}

body {
	margin: 0;
	background-color: #fff;
	color: var(--text);
}

.google-sans{
    font-family : "Google Sans" !important;
}

.inter{
     font-family : "Inter" !important;
}
/* ========================================
   KADENCE PAGE HERO RESET
======================================== */

.entry-hero.page-hero-section {
	display: none !important;
}

/* ========================================
   AVION HEADER RESET
======================================== */

.avion-site-header,
.avion-site-header * {
	box-sizing: border-box;
}

.avion-site-header ul,
.avion-site-header li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.avion-site-header a {
	color: inherit;
	text-decoration: none;
}

.avion-site-header button {
	margin-top: 0;
	border-radius: 0;
}

/* ========================================
   HEADER WRAPPER
======================================== */

.avion-site-header {
	position: relative;
	z-index: 1000;

	width: 100%;
	height: 88px;
	margin: 0;
	padding: 0;

	background: #fff;
}

.avion-site-header .header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;

	width: 100%;
	max-width: 1300px;
	height: 100%;
	margin: 0 auto;
	padding: 0 24px;
}

/* ========================================
   HEADER LOGO
======================================== */

.avion-site-header .logo {
	display: flex;
	flex-direction: column;
	justify-content: center;

	min-width: 190px;
	max-width: 190px;
}

.avion-site-header .logo-mark {
	display: flex;
	align-items: center;
	gap: 3px;

	height: 40px;
}
@media (min-width:768px){
.avion-site-header button{
    margin:0px !important;
}
}
@media (max-width:991px){
    img.custom-logo {
        width: 130px !important;
    }
}

.avion-site-header .logo-mark span {
	display: block;

	width: 28px;
	height: 10px;

	border-radius: 100%;
	transform: skew(-35deg) rotate(-25deg);
	opacity: .9;
}

.avion-site-header .logo-mark span:nth-child(1) {
	background: #777;
}

.avion-site-header .logo-mark span:nth-child(2) {
	background: #149ed1;
}

.avion-site-header .logo-mark span:nth-child(3) {
	background: #20aaa9;
}

.avion-site-header .logo-text {
	color: #3194b4;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: -.3px;
	line-height: 1.2;
}

.avion-site-header .custom-logo-wrap {
	display: flex;
	align-items: center;
}

.avion-site-header .custom-logo-wrap .custom-logo {
	display: block;

	width: auto;
	max-width: 200px;
	max-height: 58px;
	height: auto;
}

/* ========================================
   HEADER NAVIGATION
======================================== */

.avion-site-header .main-nav {
	display: flex;
	align-items: center;
	gap: 20px;

	height: 100%;
}

.avion-site-header .nav-item {
	position: relative;

	display: flex;
	align-items: center;

	height: 100%;
}

.avion-site-header .nav-link,
.avion-site-header .dropdown-link {
	border: 0;
	background: transparent;

	font-family: inherit;
	text-align: left;
	cursor: pointer;
}

.avion-site-header .nav-link {
	display: flex;
	align-items: center;
	gap: 8px;

	height: 100%;

	color: #30343b;
	font-size: 15px;
	font-weight: 400;
	line-height: 1;
	white-space: nowrap;

	transition: color .2s ease;
}

.avion-site-header .nav-link:hover,
.avion-site-header .nav-link:focus-visible {
	outline: none;
	color: var(--primary);
}

.avion-site-header button.nav-link.nav-toggle:hover,
.avion-site-header button.nav-link.nav-toggle:active {
	outline: none;
	background: transparent !important;
	box-shadow: none !important;
}

.avion-site-header button.dropdown-link.submenu-toggle:hover {
	border-radius: 0;
	box-shadow: none;
}

.avion-site-header .arrow {
	width: 7px;
	height: 7px;
	margin-top: -4px;

	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;

	transform: rotate(45deg);
}

/* ========================================
   DROPDOWN MENU
======================================== */

.avion-site-header .dropdown {
	position: absolute;
	z-index: 1300;

	min-width: 235px;
	margin: 0;
	padding: 10px 0;

	background: #fff;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .12);

	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	transition:
		opacity .2s ease,
		transform .2s ease,
		visibility .2s ease;
}

.avion-site-header .dropdown li {
	position: relative;
}

/* Level 2 */

.avion-site-header .level-2 {
	top: 100%;
	left: -18px;

	border-radius: 0 0 8px 8px;
	transform: translateY(10px);
}

/* Level 3 */

.avion-site-header .level-3 {
	top: -10px;
	left: calc(100% - 3px);

	border-radius: 8px;
	transform: translateX(12px);
}

/* Level 4 */

.avion-site-header .level-4 {
	top: -10px;
	right: calc(100% - 3px);
	left: auto;

	border-radius: 8px;
	transform: translateX(-12px);
}

@media (min-width: 851px) {
	.avion-site-header .nav-item:hover > .level-2,
	.avion-site-header .nav-item:focus-within > .level-2 {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}
}

.avion-site-header .has-submenu.is-open > .level-3,
.avion-site-header .has-submenu.is-open > .level-4 {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(0);
}

.avion-site-header .dropdown a,
.avion-site-header .dropdown-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;

	width: 100%;
	min-height: 44px;
	padding: 11px 20px;

	color: #333;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	white-space: nowrap;

	transition:
		background .2s ease,
		color .2s ease;
}

.avion-site-header .dropdown a:hover,
.avion-site-header .dropdown a:focus-visible,
.avion-site-header .dropdown-link:hover,
.avion-site-header .dropdown-link:focus-visible {
	outline: none;
	color: var(--primary);
	background: #f1fafc;
}

.avion-site-header .submenu-arrow {
	flex: 0 0 auto;

	width: 8px;
	height: 8px;

	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;

	transform: rotate(45deg);
	transition: transform .2s ease;
}

.avion-site-header .parent-arrow {
	flex: 0 0 auto;

	width: 8px;
	height: 8px;
	margin-top: -4px;

	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;

	transform: rotate(135deg);
	transition: transform .2s ease;
}

.avion-site-header .has-submenu.is-open > .submenu-toggle .submenu-arrow {
	transform: rotate(135deg);
}

/* ========================================
   HEADER RIGHT SIDE
======================================== */

.avion-site-header .header-right {
	display: flex;
	align-items: center;
	gap: 24px;

	margin-left: 30px;
}

.avion-site-header .search {
	display: flex;
	align-items: center;
	gap: 9px;

	color: #30343b;
	font-size: 15px;
	cursor: pointer;
}

.avion-site-header .search-icon {
	position: relative;

	width: 22px;
	height: 22px;

	border: 1.7px solid #202832;
	border-radius: 50%;
}

.avion-site-header .search-icon::after {
	position: absolute;
	right: -6px;
	bottom: 0;

	width: 8px;
	height: 1.7px;

	background: #202832;

	content: "";
	transform: rotate(48deg);
}

.avion-site-header .call-btn {
	display: flex;
	align-items: center;
	gap: 15px;

	padding: 13px 20px 13px 24px;

	color: #fff;
	border-radius: 30px;

	font-size: 15px;
	font-weight: 500;
	line-height: 1;

	background: linear-gradient(
		100deg,
		#20a7aa 0%,
		#258ff0 100%
	);

	transition:
		transform .2s ease,
		box-shadow .2s ease;
}

.avion-site-header .call-btn:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(37, 143, 240, .25);
}

.avion-site-header .call-arrow {
	font-size: 22px;
	line-height: 1;
}

.avion-site-header .menu-toggle {
	display: none;

	width: 42px;
	height: 42px;
	padding: 0;

	border: 0;
	background: transparent;
	cursor: pointer;
}

.avion-site-header .menu-toggle span {
	display: block;

	width: 25px;
	height: 2px;
	margin: 5px auto;

	background: #222;
	transition: .3s ease;
}

/* ========================================
   AVION FOOTER RESET
======================================== */

.avion-site-footer,
.avion-site-footer * {
	box-sizing: border-box;
}

.avion-site-footer ul,
.avion-site-footer li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.avion-site-footer a {
	color: inherit;
	text-decoration: none;
}

/* ========================================
   AVION FOOTER
======================================== */

.avion-site-footer {
	overflow: hidden;

	width: 100%;
	margin: 40px 0 0;

	color: #fff;
	border-radius: 14px 14px 0 0;

	background:
		radial-gradient(
			circle at 87% 100%,
			rgba(37, 143, 240, .65) 0,
			rgba(37, 143, 240, .22) 22%,
			transparent 48%
		),
		linear-gradient(
			120deg,
			#292f36 0%,
			#29323b 58%,
			#2d6092 100%
		);
}

.avion-site-footer .footer-container {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 30px 34px 22px;
}

/* Footer top */



.avion-site-footer .footer-logo {
	display: flex;
	align-items: center;
	flex: 0 0 220px;
}

.avion-site-footer .footer-logo img {
	display: block;

	width: auto;
	max-width: 185px;
	height: auto;
}

.avion-site-footer .footer-heading {
	margin: 0;

	color: #fff;
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 400;
	line-height: 1.2;
}

/* Footer links */
/* ========================================
   FOOTER CONTENT ALIGNMENT
======================================== */

.avion-site-footer .footer-top {
	display: grid;
	grid-template-columns: minmax(175px, 220px) minmax(0, 1fr);
	align-items: center;
	column-gap: 70px;

	width: 100%;
	padding: 0 56px 32px;

	border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.avion-site-footer .footer-links {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(150px, 1fr) minmax(280px, 1.15fr);
	column-gap: 45px;
	row-gap: 35px;

	width: 100%;
	padding: 32px 56px 45px;
}

.avion-site-footer .footer-column h3 {
	margin: 0 0 17px;

	color: #12aac5;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3;
}

.avion-site-footer .footer-column ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.avion-site-footer .footer-column a,
.avion-site-footer .footer-column li {
	color: #f1f1f1;
	font-size: 15px;
	line-height: 1.45;
	transition: color .2s ease;
}

.avion-site-footer .footer-column a:hover {
	color: #19b8d2;
}

/* Services two-column layout */

.avion-site-footer .footer-services ul {
	display: grid;
	grid-template-columns: minmax(130px, 1fr) minmax(130px, 1fr);
	column-gap: 45px;
	row-gap: 15px;
}

/* Contact section */

.avion-site-footer .footer-contact ul {
	gap: 18px;
}

.avion-site-footer .contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.avion-site-footer .contact-icon {
	flex: 0 0 20px;

	width: 20px;
	height: 20px;
	margin-top: 1px;

	color: #fff;
}

.avion-site-footer .contact-icon svg {
	display: block;

	width: 20px;
	height: 20px;

	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Footer copyright */

.avion-site-footer .footer-bottom {
	padding-top: 20px;

	color: #aeb3b8;
	border-top: 1px solid rgba(255, 255, 255, .25);

	font-size: 14px;
	line-height: 1.4;
	text-align: center;
}

/* ========================================
   DESKTOP HEADER
======================================== */

@media (min-width: 768px) {
	.avion-site-header .menu-toggle {
		display: none !important;
	}
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 1100px) {
	.avion-site-header .main-nav {
		gap: 20px;
	}

	.avion-site-header .header-right {
		gap: 15px;
		margin-left: 15px;
	}

	.avion-site-header .search span {
		display: none;
	}

	.avion-site-header .call-btn {
		padding: 12px 16px;
	}

	.avion-site-footer .footer-top {
		gap: 40px;
	}

	.avion-site-footer .footer-links {
		grid-template-columns:
			minmax(0, 1.7fr)
			minmax(140px, .9fr)
			minmax(300px, 1.3fr);
		gap: 35px;

		padding-right: 25px;
		padding-left: 25px;
	}
}

/* ========================================
   MOBILE HEADER AND FOOTER
======================================== */

@media (max-width: 850px) {
	/* Header */

	.avion-site-header {
		height: 75px;
	}

	.avion-site-header .header-container {
		padding: 0 18px;
	}

	.avion-site-header .logo {
		min-width: auto;
	}

	.avion-site-header .main-nav {
		position: absolute;
		top: 75px;
		left: 0;
		z-index: 1200;

		display: block;

		width: 100%;
		height: auto;
		max-height: 0;
		overflow-y: auto;

		background: #fff;
		box-shadow: 0 12px 25px rgba(0, 0, 0, .12);

		transition: max-height .35s ease;
	}

	.avion-site-header .main-nav.active {
		max-height: calc(100vh - 75px);
	}

	.avion-site-header .nav-item {
		display: block;

		height: auto;

		border-bottom: 1px solid #eee;
	}

	.avion-site-header .nav-link {
		display: flex;
		justify-content: space-between;

		width: 100%;
		min-height: 58px;
		padding: 17px 22px;
	}

	.avion-site-header .level-2,
	.avion-site-header .level-3,
	.avion-site-header .level-4 {
		position: static;

		display: none;

		width: 100%;
		min-width: 0;
		margin: 0;
		padding: 0;

		border-radius: 0;
		box-shadow: none;

		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
	}

	.avion-site-header .has-submenu.is-open > .dropdown {
		display: block;
	}

	.avion-site-header .dropdown li {
		border-top: 1px solid rgba(0, 0, 0, .06);
	}

	.avion-site-header .dropdown a,
	.avion-site-header .dropdown-link {
		min-height: 50px;
		white-space: normal;
	}

	.avion-site-header .level-2 > li > a,
	.avion-site-header .level-2 > li > .dropdown-link {
		padding-left: 40px;
		background: #f7fafb;
	}

	.avion-site-header .level-3 > li > a,
	.avion-site-header .level-3 > li > .dropdown-link {
		padding-left: 58px;
		background: #f1f7f8;
	}

	.avion-site-header .level-4 > li > a,
	.avion-site-header .level-4 > li > .dropdown-link {
		padding-left: 76px;
		background: #eaf3f5;
	}

	.avion-site-header .header-right {
		gap: 12px;
		margin-left: auto;
	}

	.avion-site-header .search {
		display: none;
	}

	.avion-site-header .call-btn {
		padding: 10px 15px;
		font-size: 13px;
	}

	.avion-site-header .call-arrow {
		font-size: 18px;
	}

	.avion-site-header .menu-toggle {
		display: block;
	}

	/* Footer */

	.avion-site-footer {
		margin-top: 25px;
		border-radius: 12px 12px 0 0;
	}

	.avion-site-footer .footer-container {
		padding: 28px 22px 20px;
	}

	.avion-site-footer .footer-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 25px;
	}

	.avion-site-footer .footer-logo {
		flex-basis: auto;
	}

	.avion-site-footer .footer-logo img {
		max-width: 175px;
	}

	.avion-site-footer .footer-heading {
		font-size: 30px;
	}

	.avion-site-footer .footer-links {
		grid-template-columns: 1fr 1fr;
		gap: 35px 25px;

		padding: 32px 0 38px;
	}

	.avion-site-footer .footer-contact {
		grid-column: 1 / -1;
	}
}

/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 520px) {
	.avion-site-header .logo-mark {
		transform: scale(.85);
		transform-origin: left center;
	}

	.avion-site-header .logo-text {
		font-size: 10px;
	}

	.avion-site-header .call-btn {
		display: none;
	}

	.avion-site-header .dropdown a,
	.avion-site-header .dropdown-link {
		font-size: 13px;
	}

	.avion-site-footer .footer-links {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.avion-site-footer .footer-contact {
		grid-column: auto;
	}

	.avion-site-footer .footer-services ul {
		grid-template-columns: 1fr;
		gap: 11px;
	}

	.avion-site-footer .footer-column ul {
		gap: 11px;
	}

	.avion-site-footer .footer-column h3 {
		margin-bottom: 13px;
	}

	.avion-site-footer .footer-bottom {
		font-size: 12px;
	}
}

/* ========================================
   ACCESSIBILITY
======================================== */

.avion-site-footer a:focus-visible,
.avion-site-header a:focus-visible,
.avion-site-header button:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.avion-site-footer *,
	.avion-site-header * {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
	}
}



/* ========================================
   FINAL FOOTER OUTER SPACING
======================================== */

.avion-site-footer {
	width: auto;
	margin: 40px 16px 20px;
	overflow: hidden;

	border-radius: 14px;

	background:
		radial-gradient(
			circle at 90% 105%,
			rgba(37, 143, 240, .55) 0,
			rgba(37, 143, 240, .18) 23%,
			transparent 48%
		),
		linear-gradient(
			120deg,
			#292f36 0%,
			#29323b 55%,
			#2d6092 100%
		);
}

/* Keep all footer content inside the rounded box */

.avion-site-footer .footer-container {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 30px 32px 22px;
}

/* Footer top aligns with footer links */

.avion-site-footer .footer-top {
	display: grid;
	grid-template-columns: minmax(175px, 220px) minmax(0, 1fr);
	align-items: center;
	column-gap: 70px;

	width: 100%;
	padding: 0 56px 32px;

	border-bottom: 1px solid rgba(255, 255, 255, .25);
}

/* Footer links */

.avion-site-footer .footer-links {
	display: grid;
	grid-template-columns:
		minmax(0, 2fr)
		minmax(150px, 1fr)
		minmax(280px, 1.15fr);
	column-gap: 45px;
	row-gap: 35px;

	width: 100%;
	padding: 32px 56px 45px;
}

/* Footer logo */

.avion-site-footer .footer-logo {
	min-width: 0;

	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.avion-site-footer .footer-logo img {
	display: block;
	width: auto;
	max-width: 185px;
	height: auto;
}

/* Footer heading */

.avion-site-footer .footer-heading {
	min-width: 0;
	margin: 0;

	color: #fff;
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 400;
	line-height: 1.2;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 1100px) {
	.avion-site-footer {
		margin-right: 16px;
		margin-left: 16px;
	}

	.avion-site-footer .footer-top {
		grid-template-columns: minmax(160px, 190px) minmax(0, 1fr);
		column-gap: 40px;
		padding-right: 25px;
		padding-left: 25px;
	}

	.avion-site-footer .footer-links {
		grid-template-columns:
			minmax(0, 1.5fr)
			minmax(130px, .9fr)
			minmax(240px, 1.2fr);

		column-gap: 28px;
		padding-right: 25px;
		padding-left: 25px;
	}
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 850px) {
	.avion-site-footer {
		margin: 25px 10px 10px;
		border-radius: 12px;
	}

	.avion-site-footer .footer-container {
		padding: 28px 22px 20px;
	}

	.avion-site-footer .footer-top {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 25px;

		padding-right: 0;
		padding-left: 0;
	}

	.avion-site-footer .footer-links {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		column-gap: 25px;
		row-gap: 35px;

		padding-right: 0;
		padding-left: 0;
	}

	.avion-site-footer .footer-heading {
		width: 100%;
		font-size: clamp(28px, 7vw, 34px);
	}

	.avion-site-footer .footer-contact {
		grid-column: 1 / -1;
	}
}

/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 520px) {
	.avion-site-footer {
		margin: 20px 10px 10px;
		border-radius: 12px;
	}

	.avion-site-footer .footer-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.avion-site-footer .footer-links {
		grid-template-columns: 1fr;
		column-gap: 0;
		row-gap: 30px;
	}

	.avion-site-footer .footer-contact {
		grid-column: auto;
	}

	.avion-site-footer .footer-services ul {
		grid-template-columns: 1fr;
	}
}


@media (max-width: 767px) {
    .footer-links {
        margin: 0px auto !important; 
    }
}


/* ========================================
   FOOTER SPACING FIX - 640PX
======================================== */

@media (min-width: 521px) and (max-width: 850px) {
	.avion-site-footer .footer-links {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

		column-gap: 150px;
		row-gap: 35px;

		padding-right: 10px;
		padding-left: 10px;
	}

	.avion-site-footer .footer-services,
	.avion-site-footer .footer-company {
		min-width: 0;
	}

	.avion-site-footer .footer-services ul,
	.avion-site-footer .footer-company ul {
		min-width: 0;
	}

	.avion-site-footer .footer-column a,
	.avion-site-footer .footer-column li {
		overflow-wrap: anywhere;
	}
}



/*Customize section css*/

@media screen and (max-width: 767px) {
  /* Force the container holding the 4 tabs to change from a horizontal row to a vertical column */
  div[id^="tab-"] {
    display: block !important;
  }
  
  /* Target the list container holding the titles and force stacking */
  .wp-block-columns,
  .tabs-nav,
  ul[class*="tabs"] {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  /* Force each tab link button to take up the full available width */
  .tabs-nav a,
  ul[class*="tabs"] li,
  div[id^="tab-"] ul li a {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 4px 0 !important;
    text-align: center !important;
    white-space: normal !important; /* Prevents text from being cut off */
  }
}

@media screen and (max-width: 768px) {
  /* 1. FORCE HIDE THE LEAKED RAW TEXT BLOCK COMPLETELY */
  .kb-table-container style,
  div[class*="kb-table"] style,
  .wp-block-kadence-table style {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* 2. FORCE THE GRID CONTAINER ROWS TO SWITCH INTO A VERTICAL COLUMN STACK */
  div.wp-block-kadence-table,
  div[class*="kb-table-container"],
  div[class*="kb-table-row"],
  .kb-table-container,
  [class*="kb-table"] {
    display: flex !important;
    flex-direction: column !important; /* Locks layout vertically */
    height: auto !important;
    min-height: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* 3. TARGET INDIVIDUAL CELLS AND COLLAPSE TO FULL WIDTH Layout */
  div[class*="kb-table-row"] > div,
  div[class*="kb-table-data"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
    float: none !important;
  }

  /* 4. ASSIGN THE STACK LAYOUT LOGIC ORDER (IMAGE TOP, TEXT BOTTOM) */
  div[class*="kb-table-row"] > div:first-child {
    order: 1 !important; /* Pushes image cell to absolute top layer */
    padding: 0 !important;
  }

  div[class*="kb-table-row"] > div:last-child {
    order: 2 !important; /* Drops text description panel cleanly below image */
    padding: 30px 20px !important;
    text-align: left !important;
    background-color: #1A202C !important; /* Keeps your brand gray color block consistency */
  }

  /* 5. FORCE IMAGES TO FILL UP ENTIRE HORIZONTAL MOBILE CONTAINER WIDTH */
  div[class*="kb-table-row"] img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
	border: 1px solid #000;
  border-radius: 20px;
  padding: 2px 17px 4px 17px;

}

.acumatica-service-box {
    position: relative;
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Gradient top border */
.acumatica-service-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        #6025f5 0%,
        #e40cd3 49.52%,
        #ff5555 100%
    );
    z-index: 2;
}

/* Gradient border on hover */
.acumatica-service-box::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        #6025f5 0%,
        #e40cd3 49.52%,
        #ff5555 100%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 3;
}

/* Hover */
.acumatica-service-box:hover {

    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.acumatica-service-box:hover::after {
    opacity: 1;
}

.acumatica-service-box:hover h4 {
    background: linear-gradient(
        90deg,
        #6025f5 0%,
        #e40cd3 49.52%,
        #ff5555 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.box-animate1 {
    position: relative;
    overflow: hidden;
    background: #fff;
    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

/* Glow */
.box-animate1::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(65px);
    opacity: 0;
    transition: .5s ease;
    pointer-events: none;
}

/* Shine */
.box-animate1::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -60%;
    width: 40%;
    height: 300%;
    transform: rotate(25deg);
    opacity: 0;
    background: rgba(255,255,255,.65);
    pointer-events: none;
}


/* 🟣 PURPLE */

.box-animate1:nth-child(3n+1)::before {
    background: #8c7cff;
    top: -80px;
    right: -80px;
}

.box-animate1:nth-child(3n+1):hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(140,124,255,.22);
}

.box-animate1:nth-child(3n+1):hover::before {
    opacity: .25;
}

.box-animate1:nth-child(3n+1):hover::after {
    opacity: 1;
    left: 150%;
    transition: left .8s ease;
}


/* 🔴 RED */

.box-animate1:nth-child(3n+2)::before {
    background: #ff3154;
    bottom: -80px;
    left: -80px;
}

.box-animate1:nth-child(3n+2):hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(255,49,84,.20);
}

.box-animate1:nth-child(3n+2):hover::before {
    opacity: .23;
}

.box-animate1:nth-child(3n+2):hover::after {
    opacity: 1;
    left: 150%;
    transition: left .8s ease;
}


/* 🔵 BLUE */

.box-animate1:nth-child(3n)::before {
    background: #008cff;
    top: 50%;
    left: -90px;
}

.box-animate1:nth-child(3n):hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,140,255,.22);
}

.box-animate1:nth-child(3n):hover::before {
    opacity: .25;
}

.box-animate1:nth-child(3n):hover::after {
    opacity: 1;
    left: 150%;
    transition: left .8s ease;
}

.phase-col {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.phase-col::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #008cff;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.phase-col .wp-block-column:first-child p {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.phase-col .wp-block-column:last-child p {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.phase-col:hover::before {
  transform: scaleY(1);
}

.phase-col:hover .wp-block-column:first-child p {
  transform: translateX(15px);
}

.phase-col:hover .wp-block-column:last-child p {
  transform: translateX(8px);
}

/* =========================================
   SERVICE CARDS - SLIDE PANEL EFFECT
========================================= */

.wordpress-service-cards > .wp-block-column.has-border-color {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    background: #ffffff;
    border: 1px solid #ff3454 !important;
    border-radius: 15px !important;

    padding: 30px 22px !important;

    min-height: 190px;

    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Sliding background panel */
.wordpress-service-cards > .wp-block-column.has-border-color::before {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 0;

    background: linear-gradient(
        135deg,
        #fff1f4 0%,
        #eefaff 100%
    );

    transition: height 0.45s cubic-bezier(0.65, 0, 0.35, 1);

    z-index: -1;
}


/* Top-right decorative circle */
.wordpress-service-cards > .wp-block-column.has-border-color::after {
    content: "";

    position: absolute;

    width: 75px;
    height: 75px;

    top: -35px;
    right: -35px;

    border-radius: 50%;

    background: #ff3454;

    opacity: 0.08;

    transition:
        transform 0.5s ease,
        opacity 0.4s ease;
}


/* =========================================
   HOVER
========================================= */

.wordpress-service-cards > .wp-block-column.has-border-color:hover {
    border-color: #ff3454 !important;

    box-shadow:
        0 12px 28px rgba(255, 52, 84, 0.12);
}


/* Slide panel upward */
.wordpress-service-cards > .wp-block-column.has-border-color:hover::before {
    height: 100%;
}


/* Expand decorative circle */
.wp-block-columns > .wp-block-column.has-border-color:hover::after {
    transform: scale(3.5);
    opacity: 0.05;
}


/* =========================================
   HEADING
========================================= */

.wordpress-service-cards > .wp-block-column.has-border-color h3 {
    position: relative;
    z-index: 2;

    transition:
        transform 0.4s ease,
        color 0.4s ease;
}

.wordpress-service-cards > .wp-block-column.has-border-color:hover h3 {
    transform: translateY(-3px);

    color: #ff3454 !important;
}


/* =========================================
   DESCRIPTION
========================================= */

.wordpress-service-cards> .wp-block-column.has-border-color p {
    position: relative;
    z-index: 2;

    transition:
        transform 0.4s ease,
        color 0.4s ease;
}

.wordpress-service-cards > .wp-block-column.has-border-color:hover p {
    transform: translateY(-3px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .wordpress-service-cards > .wp-block-column.has-border-color {
        min-height: auto;
        padding: 25px 20px !important;
    }

}


/* =========================================
   CTA BUTTON - PREMIUM SHINE EFFECT
========================================= */

.inline-img .wp-block-button__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background-color 0.35s ease;
}

/* Shine animation */
.inline-img .wp-block-button__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent,
        rgba(255,255,255,0.45),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

/* Hover */
.inline-img .wp-block-button__link:hover {
    transform: translateY(-4px);
    background-color: #28A8A8 !important;
    /*box-shadow:
        0 10px 25px rgba(255, 52, 84, 0.25),
        0 5px 12px rgba(0, 0, 0, 0.08); 
*/	
box-shadow: 0 10px 25px rgba(43, 149, 255, 0.25),
            0 5px 12px rgba(0, 0, 0, 0.08);	
	
}

/* Shine sweep */
.btn-hover .wp-block-button__link:hover::before {
    left: 140%;
}

/* Arrow */
.btn-hover .wp-block-button__link img {
    position: relative;
    transition:
        transform 0.35s ease,
        margin-left 0.35s ease;
}

/* Arrow moves right */
.btn-hover .wp-block-button__link:hover img {
    transform: translateX(7px);
}
.gradient-color {
  position: relative;
  display: inline-block;

  background: linear-gradient(
    90deg,
    #28A8A8 5%,
    #2B95FF 90%
  );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;

  text-decoration: none !important;
}


/* Gradient underline */
.gradient-color::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: -1px;

  width: 100%;
  height: 1px;

  background: linear-gradient(
    90deg,
    #28A8A8 5%,
    #2B95FF 90%
  );
}

 .count_number:hover .kb-count-up-process.kb-count-up-number {
  background: linear-gradient(90deg, #28A8A8 5%, #2B95FF  90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block; /* often needed for background-clip to behave consistently */
}
.home-counter .wp-block-columns > .wp-block-column {
  border-right: 1px solid #D3D2D1 !important;
}

.home-counter .wp-block-columns > .wp-block-column:last-child {
  border-right: none !important;
}
.home-trying-to-solve .wp-block-column{
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
}
@media (min-width:800px){
  .home-trying-to-solve .col-heading{
  height:70px;
}
}


/* How We Work Columns */
.how-we-work-col {
    position: relative;
}

/* Arrow between columns */
.how-we-work-col:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    color: #2F343B;
    z-index: 2;
}

/* Tablet */
@media (max-width: 1024px) {
    .how-we-work-col:not(:last-child)::after {
        right: -18px;
        font-size: 22px;
    }
}

/* Mobile - stack columns and remove arrows */
@media (max-width: 767px) {
    .how-we-work-col:not(:last-child)::after {
        display: none;
    }

    .how-we-work-col {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .how-we-work-col:not(:last-child)::after {
        content: "↓";
        display: block;
        position: absolute;
        top: auto;
        bottom: -30px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        font-size: 18px;
        color: #2F343B;
    }

    .how-we-work-col {
        margin-bottom: 40px;
    }

    .how-we-work-col:last-child {
        margin-bottom: 0;
    }
}

.txt-decoration a{
	  text-decoration: none;
}