/*
Theme Name: Blocksy Child
Theme URI: https://creativethemes.com/blocksy/
Template: blocksy
Author: CreativeThemes
Author URI: https://creativethemes.com
Description: Blocksy is a fast, modern WordPress theme with advanced WooCommerce support and full compatibility with the block editor.
Tags: accessibility-ready,blog,block-patterns,e-commerce,wide-blocks,block-styles,grid-layout,one-column,two-columns,three-columns,four-columns,right-sidebar,left-sidebar,translation-ready,custom-colors,custom-logo,custom-menu,featured-images,footer-widgets,full-width-template,theme-options,threaded-comments
Version: 2.1.23.1767603456
Updated: 2026-01-05 08:57:36

*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600&display=swap');

:root {
	--primary-green: #1a9c6d;
	--text-dark: #1f2937;
	--bg-light: #f6f8fb;
	--border-soft: #d9e9df;
	--shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.home-main {
	color: var(--text-dark);
	background: #ffffff;
}

.container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 clamp(16px, 3vw, 28px);
}

.home-main section {
	padding: clamp(48px, 6vw, 80px) 0;
}

.section-title {
    text-align: center;
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 600;
    letter-spacing: 0.04em;
    position: relative;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 2px;
    background: currentColor;
    display: block;
    margin: 16px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .6s ease;
}

.section-title.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title.is-visible::after {
    transform: scaleX(1);
}

/* Fade-up animation */
[data-animate] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	transition-delay: var(--anim-delay, 0ms);
}

[data-animate].is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Services */
.home-services {
	background: var(--bg-light);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

.service-card {
	background: #ffffff;
	border: 1px solid var(--border-soft);
	border-radius: 14px;
	padding: 20px;
	box-shadow: var(--shadow-soft);
	display: grid;
	gap: 12px;
	align-content: start;
}

.service-icon {
	width: 200px;
	height: auto;
	border-radius: 0;
	background: none;
	box-shadow: none;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
}

.service-icon img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.service-icon__fallback {
	font-size: 24px;
	color: var(--primary-green);
}

.service-title {
	font-size: 18px;
	margin: 0;
	color: var(--text-dark);
}

.service-desc {
	margin: 0;
	color: #4b5563;
	line-height: 1.6;
    text-align: justify;
    font-size: 14px;
}

.service-empty {
	color: #6b7280;
}

/* Partners */
.home-partners {
	background: #ffffff;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 16px;
}

.partner-card {
	border: 1px solid var(--border-soft);
	border-radius: 12px;
	padding: 18px;
	background: #fdfefe;
	box-shadow: var(--shadow-soft);
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.partner-logo {
	display: grid;
	place-items: center;
	transition: filter 0.25s ease;
}

.partner-logo img {
	max-width: 100%;
	max-height: 150px;
	object-fit: contain;
}

.partner-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.partner-card:hover .partner-logo {
	filter: grayscale(0);
}

/* Technology grid */
.home-tech__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}

.link-see-all {
	font-weight: 600;
	color: var(--primary-green);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.tech-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}

.tech-card {
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	box-shadow: var(--shadow-soft);
}

.tech-media {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.tech-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.tech-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(26, 156, 109, 0) 0%, rgba(26, 156, 109, 0.28) 100%);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.tech-card:hover img {
	transform: scale(1.05);
}

.tech-card:hover .tech-overlay {
	opacity: 1;
}

/* Info columns */
.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}

.info-card {
	background: #ffffff;
	border-radius: 14px;
	border: 1px solid var(--border-soft);
	padding: 20px;
	box-shadow: var(--shadow-soft);
}

.info-title {
	margin: 0 0 10px;
	font-size: 18px;
	color: var(--text-dark);
}

.info-desc {
	margin: 0;
	color: #4b5563;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.home-tech__header {
		flex-direction: column;
		align-items: flex-start;
	}
}

