.tech-grid-listing {
	grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    display: grid;
}
.service-card {
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	border-radius: 16px;
	position: relative;
	background-color: #fff;
}
.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(43, 108, 176, 0.1) 0%, rgba(30, 64, 175, 0.2) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}
.service-card:hover {
	transform: scale(1.02);
	box-shadow: 0 20px 40px rgba(43, 108, 176, 0.15);
}
.service-card:hover::before {
	opacity: 1;
}
.service-card:hover::after {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, #2B6CB0, #1E40AF, #2B6CB0);
	border-radius: 10px;
	z-index: -1;
	animation: glow 2s linear infinite;
}
.technology-box {
	position: relative;
	height: 20rem;
}
.technology-box img {
	transition-duration: 500ms;
	transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    object-position: top;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.service-card:hover img {
	--tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-rotate: 0;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.service-overlay {
	--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
	background-image: linear-gradient(to top, var(--tw-gradient-stops));
	background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
	transition: all 0.3s ease;
	inset: 0px;
	position: absolute;
}
.service-card:hover .service-overlay {
	background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%);
}
.technology-content-box {
	padding: 1.5rem;
	z-index: 10;
	bottom: 0px;
	left: 0px;
    right: 0px;
    position: absolute;
}
.technology-content-box h3 {
	color: #fff;
	font-weight: 700;
	font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 0.5rem;
}
.technology-content-box p {
	--tw-translate-y: 1rem;
	transition-duration: 300ms;
	transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 0;
    color: #fff;
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 1rem;
}
.service-card:hover .technology-content-box p,
.service-card:hover .technology-content-box a {
	opacity: 1;
	--tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.service-card .technology-content-box a {
	position: relative;
	overflow: hidden;
	transition-duration: 300ms;
	transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    color: #124e94;
    background-color: #fff;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
}
.service-card .technology-content-box a:hover {
	color: #fff;
    background-color: #124e94;
}
.service-card .technology-content-box a::after {
	/*content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300%;
	height: 300%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%) scale(0);
	border-radius: 50%;
	opacity: 0;
	transition: transform 0.6s, opacity 0.3s;*/
}
.service-card .technology-content-box a:hover::after {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}
@keyframes glow {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}
.tech-cta-box {
	color: #fff;
	padding: 3rem;
	background-image: linear-gradient(to right, #2B6CB0, #1E40AF);
	border-radius: 20px;
}
.tech-cta-box h2 {
	font-size: 1.875rem;
    line-height: 2.25rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1rem;
}
.tech-cta-box p {
	opacity: 0.9;
	font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 2rem;
}
.tech-cta-box a {
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    white-space: nowrap;
}
.tech-cta-box a:first-child {
	background-color: #fff;
	color: #124e94;
}
.tech-cta-box a:last-child {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
}
.tech-cta-box a:first-child:hover {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
}
.tech-cta-box a:last-child:hover {
	background-color: #fff;
	color: #124e94;
	border: none;
}
@media (max-width: 767px) {
    .tech-grid-listing {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
	.technology-content-box h3,
	.tech-cta-box h2 {
		font-size: 1.3rem;
	}
	.tech-cta-box p {
		font-size: 16px;
	}
	.technology-content-box p,
	.technology-content-box a {
		opacity: 1 !important;
	}
	.cta-buttons {
		display: inline-grid;
		gap: 1.5rem;
	}
}
@media (min-width: 768px) {
	.cta-buttons {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 1.5rem;
	}
}