/***

====================================================================
	Features Section
====================================================================

 ***/

.features-section {
    padding: 150px 0;
    background: #f8f9fa;
}

.features-section .title-box {
    text-align: center;
    margin-bottom: 60px;
}

.features-section .subtitle {
    color: #B85EE6;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-section .heading_title {
    font-size: var(--h2-size);
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2d3436;
}

.features-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.features-section .features-block {
    padding: 0 20px;
    margin-bottom: 40px;
}

.features-section .features-block .inner-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.features-section .features-block .inner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.features-section .features-block .icon-box {
    width: 80px;
    height: 80px;
    background: rgba(184, 94, 230, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.features-section .features-block .inner-box:hover .icon-box {
    background: #B85EE6;
}

.features-section .features-block .icon-box i {
    font-size: 32px;
    color: #B85EE6;
    transition: all 0.3s ease;
}

.features-section .features-block .inner-box:hover .icon-box i {
    color: #ffffff !important;
}

.features-section .features-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d3436;
}

.features-section .features-block h3 a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.features-section .features-block h3 a:hover {
    color: #B85EE6;
}

.features-section .features-block .designation {
    color: #636e72;
    line-height: 1.6;
    font-size: 16px;
    flex-grow: 1;
}

.features-section .features-block .inner-box::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: #B85EE6;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.features-section .features-block .inner-box:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}