﻿.aboutus-section {
    padding: 90px 0;
}

.aboutus-title {
    font-size: 30px;
    letter-spacing: 0;
    line-height: 32px;
    padding: 0 0 11px;
    position: relative;
    color: #000;
}



.line1 {
    height: 3px;
    width: 70px;
    background-color: #fc6060;
    margin: 0 auto 30px auto;
    margin-left: 150px;
}

. {
    color: #606060;
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 20px;
    text-align: justify;
}



    .aboutus-more {
        border: 1px solid #fdb801;
        border-radius: 25px;
        color: #fdb801;
        display: inline-block;
        font-size: 14px;
        font-weight: 700;
        padding: 7px 20px;
        text-transform: uppercase;
    }

    .aboutus-banner img {
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .feature .feature-box {
        margin-bottom: 30px;
    }

        .feature .feature-box .iconset {
            background: #fff;
            float: left;
            position: relative;
            width: 18%;
        }

@media (max-width:1024px) {
    .feature .feature-box .iconset::after {
        background: #fc6060;
        content: "";
        height: 150%;
        left: 45% !important;
        position: absolute;
        top: 100%;
        width: 1px;
    }
}

.feature .feature-box .iconset::after {
    background: #fc6060;
    content: "";
    height: 150%;
    left: 35%;
    position: absolute;
    top: 100%;
    width: 1px;
}

.feature .feature-box .feature-content {
    float: left;
    padding-left: 28px;
    width: 78%;
    margin-top: 20px;
}

    .feature .feature-box .feature-content h4 {
        margin: 0 0 8px;
    }

    .feature .feature-box .feature-content p {
        color: #606060;
        font-size: 16px;
        line-height: 22px;
    }


.icon {
    border: 1px solid #fc6060;
    border-radius: 50%;
    color: #fc6060;
    font-size: 28px;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center; /* vertical center */

    text-align: center;
}




@media (max-width: 768px) {
    .aboutus-banner {
        margin-top: 30px;
    }

    .feature .feature-box .iconset,
    .feature .feature-box .feature-content {
        float: none;
        width: 100%;
        text-align: left;
        margin-top: 20px;
    }

    .feature .feature-box .feature-content {
        padding-left: 0;
    }

    .feature .feature-box .iconset::after {
        background: none !important;
        content: "";
        height: 150%;
        left: 43%;
        position: absolute;
        top: 100%;
        width: 1px;
    }
}

/* Simple Bullet List Styling — visible even inside floats */
.feature-list {
    margin: 0;
    padding-left: 15px; /* space for bullets */
    list-style-type: disc; /* classic round bullets */
    list-style-position: outside;
    display: block;
}

    .feature-list li {
        margin-bottom: 8px;
        color: #606060;
        list-style: disc !important;
    }


.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

/* Row Clearing */
.row::before,
.row::after {
    content: " ";
    display: table;
}

.row::after {
    clear: both;
}

/* Columns */
[class*="col-"] {
    float: left;
    min-height: 1px;
    padding: 0 15px;
}

/* XS (mobile) */
.col-xs-12 {
    width: 100%;
}

/* SM ≥768px */
@media (min-width: 768px) {
    .col-sm-6 {
        width: 50%;
    }

    .col-sm-12 {
        width: 100%;
    }
}

/* MD ≥992px */
@media (min-width: 992px) {
    .col-md-6 {
        width: 50%;
    }
}

/* Clearfix */
.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}


/* Load Glyphicons Font (lightweight) */
@font-face {
    font-family: "Glyphicons Halflings";
    src: url("https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/fonts/glyphicons-halflings-regular.woff2");
}

.glyphicon {
    font-family: "Glyphicons Halflings";
    font-style: normal;
    font-weight: 400;
    position: relative;
    top: 0; /* reset */
}

/* Fix vertical offset */
.icon .glyphicon:before {
    position: relative;
    top: 2px; /* <-- adjust 1px–3px as needed */
}

/* Icons Required */
.glyphicon-certificate:before {
    content: "\e132";
}

.glyphicon-star:before {
    content: "\e006";
}

.glyphicon-heart:before {
    content: "\e005";
}


@media (max-width:480px) {
    .feature .feature-box .iconset,
    .feature .feature-box .feature-content {
        float: none;
        width: 100%;
        text-align: left;
        margin-top: 20px;
    }
}

.aboutus-section {
    opacity: 0;
    transform: translateY(50px); /* start slightly below */
    transition: all 0.6s ease-out;
}

    .aboutus-section.visible {
        opacity: 1;
        transform: translateY(0);
    }