/* General Styles */
.features {
    padding: 50px 0;
    background-color: #2A2A86;
}

.features .container {
    max-width: 1920px;
    margin: 1080;
}

.features-post {
    background: #2A2A86;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 15px 0;
}

.features-post:hover {
    transform: translateY(10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.features-content {
    padding: 20px;
    position: relative;
}

.features-content .content-show {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.features-content .content-show h4 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #fff;
}

.features-content .content-show i {
    margin-right: 10px;
    color: #fff;
}

.features-content .content-hide {
    font-size: 14px;
    color: #fff;
    display: none;
    margin-top: 15px;
}

.features-content:hover .content-hide {
    display: block;
}

.features-content:hover .content-show {
    display: none;
}

.scroll-to-section a {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.scroll-to-section a:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 991px) {
    .features .row {
        display: flex;
        flex-wrap: wrap;
    }

    .features-post {
        margin: 15px;
    }
}

@media (max-width: 767px) {
    .features .container {
        padding: 0 15px;
    }

    .features-post {
        margin: 10px 0;
    }
}
