body {
font-family: "Outfit", sans-serif;
font-weight: 300;
font-style: normal;
color:#363537;
}

.site-text-red {
    color: #D44D5C;
}

.site-text-black {
	color: #363537;
}

.site-text-blue {
	color: #10567E;
}

.site-text-green {
	color: #2ecc71;
}

li .nav-link {
	color: #363537;
	border-bottom: 1px solid transparent;
}
li .nav-link:hover {
	color: #000000;
	border-bottom: 1px solid #000000;
}

.site-btn-red {
    background-color: #D44D5C;
    color: #ffffff;
    border: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.site-btn-red:hover {
    background-color: #bc4351; /* Slightly darker red */
    color: #ffffff;
    transform: translateY(-2px);
}

.bg-gradient-red-orange {
    background: linear-gradient(135deg, #D44D5C 0%, #ff8a95 100%);
}

.bg-light-red {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f6 100%); border-color: #D44D5C !important;
}

.bg-red {
    background-color:#D44D5C;
}
.bg-blue {
    background-color:#10567E;
}
.bg-black {
    background-color:#363537;
}

.border-end {
    border-right: 1px solid rgba(0,0,0,0.1) !important;
}

.feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    width: 3rem;
    font-size: 1.5rem;
}

.rounded-4 { border-radius: 1.5rem !important; }

.steps-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 800px;
    position: relative;
    padding: 0;
}

.steps-horizontal::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step-horizontal {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 20px;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}

.step-description {
    font-size: 12px;
    color: #adb5bd;
    max-width: 150px;
    margin: 0 auto;
}

.step-horizontal.active .step-icon {
    background: #10567E;
    border-color: #424E5C;
    color: white;
    box-shadow: 0 0 0 5px rgba(67, 97, 238, 0.2);
}

.step-horizontal.process .step-icon {
    background: #F8F6F0;
    border-color: #E5DEC8;
    color: #363537;
}

.step-horizontal.complete .step-icon {
    background: #2ecc71;
    border-color: #2ecc71;
    color: white;
}

.outcome-icon {
width: 20px;
height: 20px;
border-radius: 50%;
background-color: #f8f9fa;
display: flex;
align-items: center;
justify-content: center;
font-size: .65rem;
color: #10567E;
margin-bottom: 1rem;
}
.outcome-card {
    height: 100%;
    transition: all 0.3s ease;
}
.outcome-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.portfolio-card {
    max-width: 500px;
    margin: 2rem auto;
}

.shadow-inset {
    box-shadow: inset 10px 0 20px -10px rgba(0,0,0,0.5);
}

@media (max-width: 991.98px) {
    .shadow-inset {
        box-shadow: inset 0 10px 20px -10px rgba(0,0,0,0.5);
    }
}