.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

    .row > div {
        padding-left: 15px;
        padding-right: 15px;
    }

.col-md-6 {
    width: 50%;
}


.col-md-3 {
    width: 25%;
}


.container-fluid {
    width: 100%;
    margin: 0 auto;
}


.content-section {
    padding: 4rem 0rem 4rem 0;
}

.section-heading {
    font-size: 2.7rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}

.content-block ul {
    list-style: none;
    padding-left: 0;
}

    .content-block ul li {
        padding: 5px 0;
        position: relative;
        padding-left: 30px;
    }

        .content-block ul li:before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            color: var(--primary-color);
            position: absolute;
            left: 0;
        }

.transfer-section {
    padding: 4rem 0rem 4rem 0
}

.image-grid {
    position: relative;
}

.img-box {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

    .img-box.large img,
    .img-box.small img {
        width: 100%;
        height: auto;
        display: block;
    }

    .img-box.small {
        width: 48%;
        display: inline-block;
    }

.highlight-box {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #32d4e2;
    padding: 25px 35px;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

    .highlight-box h3 {
        margin: 0;
        font-size: 24px;
    }

.orange-tag {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 10px;
    font-weight: bold;
    margin-bottom: 20px;
}

.main-heading {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
}

    .service-list li {
        margin: 12px 0;
        font-size: 16px;
    }

    .service-list .dot {
        height: 10px;
        width: 10px;
        background: var(--main-color);
        display: inline-block;
        border-radius: 50%;
        margin-right: 10px;
    }

.custom-btn {
    background: #212529;
    border: none;
    padding: 14px 28px;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    margin-top: 20px;
}

.features-section {
    padding: 30px 9px;
    background: #f4f4f4;
}

.feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    ;
    height: 100%;
}

    .feature-card:hover {
        transform: scale(1.02);
    }

.feature-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-card h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .row {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .col-md-3 {
        width: 100%;
    }

    .content-section {
        padding: 3rem 0rem 4rem 0;
        text-align: justify;
        hyphens: auto;
        --webkit-hyphens: auto;
    }

    .section-heading {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .img-box.small {
        width: 48%;
    }

    .highlight-box {
        padding: 10px 20px;
    }

    .content-block ul li {
        padding: 0;
        position: relative;
        padding-left: 23px;
    }

    .features-section {
        padding: 3rem 0rem 4rem 0;
    }

    .outer-feater > * {
        padding: 0;
    }

    .orange-tag {
        display: none;
    }

    .transfer-section {
        padding: 4rem 0rem 4rem 0;
    }

    .section-heading {
        font-size: 2.7rem;
        margin-bottom: 30px;
    }

    .main-heading {
        font-size: 24px;
        margin-bottom: 0;
    }

    .image-grid {
        text-align: center;
        padding: 0;
    }

    .img-box.small {
        width: 100%;
    }

    .highlight-box {
        font-size: 10px;
        left: 0;
        bottom: 0;
        margin-left: auto;
        margin-right: auto;
    }

        .highlight-box h3 {
            font-size: 15px;
        }

    .content-area {
        padding: 0;
    }

    .service-list li {
        font-size: 15px;
        margin: 5px 0;
    }

    .custom-btn {
        border: none;
        padding: 10px 10px;
        margin-top: 20px;
        font-size: 1.5rem;
        margin: 5px auto;
    }

    .col-md-6 {
        width: 100%;
    }
}
