﻿.project-info {
    background: #f7f7f7;
    padding: 10px 15px;
    line-height: 2;
    border-left: 4px solid #5cb85c;
}

.feature-card {
    transition: all 0.3s ease;
    border: none;
    border: 1px solid #00c17b;
}

    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        border-radius: 50%;
        background-color: rgb(240 241 255);
        margin: 0 auto 15px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.2);
        background-color: rgba(62, 64, 115, 0.2);
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.15);
    }

.services__details-content > p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about__area-three p {
    line-height: 1.8;
}

.module-card {
    transition: all 0.3s ease;
    border: none;
}

    .module-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.15);
    }

    .module-card i {
        width: 40px;
        height: 40px;
        line-height: 40px;
        background-color: rgb(240 241 255);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .module-card:hover i {
        background-color: rgba(62,64,115,0.2);
        transform: scale(1.2);
    }

    .module-card h5 {
        font-size: 16px;
    }

.offerings-benefits-area .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .offerings-benefits-area .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.15);
    }

.offerings-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

    .offerings-list li i {
        font-size: 1.1rem;
        margin-top: 2px;
    }

.enquiry-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border: 2px solid #fff;
    border-radius: 25px;
    background: transparent;
    color: #fff;
    font-weight: 500;
    text-transform: math-auto;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 21px;
}

    .enquiry-btn i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .enquiry-btn:hover {
        background: #00c17b;
        color: #fff;
        border: 2px solid #00c17b;
        font-weight: 700;
    }

        .enquiry-btn:hover i {
            transform: translateX(4px);
        }
