:root {
    --hommex-color: #83C0E0;
    --hommex-dark: #091F5B;
    --hommex-soft: #E5E5E5;
	--hommex-second:#FF9900;
    --gray-soft: 3C3C3C;
}

.pulse-hommex {
    animation: pulse-blue 2s infinite;
	color: var(--hommex-second);
}
@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(74, 90, 141, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(74, 90, 141, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 90, 141, 0); }
}

.step-card {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift-hommex:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(74, 90, 141, 0.15) !important;
    border-color: var(--hommex-color) !important;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: #f3f3f3;
    z-index: 0;
    opacity: 0.5;
    line-height: 1;
}

.icon-square {
    width: 50px;
    height: 50px;
    display: flex;
	color: var(--hommex-dark);
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
	color: var(--hommex-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.btn-hommex {
    background-color: var(--hommex-color);
    color: #fff;
    border: none;
    transition: all 0.3s;
}

.btn-hommex:hover {
    background-color: var(--hommex-dark);
    color: #fff;
    transform: translateY(-3px);
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--hommex-color);
    top: -100px;
    right: -100px;
}

.lh-lg { 
	line-height: 2.2 !important; 
}

.fs-7 {
	font-size: 0.9rem; 
}

.z-1 {
	color: var(--hommex-dark);
	z-index: 1; 
}

.rounded-4 {
	border-radius: 2rem !important; 
}