    .features-grid{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:30px;
    flex-wrap:wrap;
}

.feature-item{
    flex:0 0 23%;
    text-align:center;
}

.feature-icon{
    margin:0 auto 20px;
}

.feature-item h3,
.feature-item p{
    text-align:center;
}

@media(max-width:991px){
    .feature-item{
        flex:0 0 48%;
        margin-bottom:30px;
    }
}

@media(max-width:576px){
    .feature-item{
        flex:0 0 100%;
    }
}

    
.service-img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
    display:block;
}

/* Tablet */
@media (max-width:991px){
    .service-img{
        height:220px;
    }
}

/* Mobile */
@media (max-width:767px){
    .service-img{
        height:180px;
    }
}

/* Small Mobile */
@media (max-width:480px){
    .service-img{
        height:160px;
    }
}
.hero-logo-card{
    position:relative;
    width:100%;
    max-width:500px;
    margin:auto;
}

.hero-logo-img{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:12px;
    display:block;
    transition:.5s ease;
}
.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    line-height:42px;
    text-align:center;
    background:rgba(0,0,0,.5);
    color:#fff;
    font-size:22px;
    border-radius:50%;
    cursor:pointer;
    z-index:99;
    user-select:none;
}

.prev{
    left:10px;
}

.next{
    right:10px;
}

.slider-btn:hover{
    background:#2196f3;
}
.feature-icon{
    width:64px;
    height:64px;
    margin:0 auto 25px;
    border:1px solid #3a4155;
    border-radius:50%;
    background:#232a3d;
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-icon i{
    color:#3591CC;
    font-size:24px;
}
#why-us p
{
  color: #6b7280!important;
}


.nav-links li a{
    color:#333;
    text-decoration:none;
}

.nav-links li.active a,
.nav-links li a:hover{
    color:#3591cc;
    border-bottom:2px solid #3591cc;
}

   
   @media (max-width: 991px) {

    .menu-toggle {
        display: block;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 15px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,.1);
    }

    .nav-links.show {
        display: flex;
    }
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

    .service-card{
    text-align:center;
}

.service-card h3{
    text-align:center;
}

.service-card p{
    text-align:center;
}

.service-card ul{
    list-style:none;
    padding:0;
    margin-top:15px;
    text-align:left;
    display:inline-block;
}

.service-card ul li{
    margin-bottom:8px;
}

.service-card ul li::before{
    content:"✔";
    color:#69b43f;
    font-weight:bold;
    margin-right:8px;
}


.about-hero{
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
                url('images/bg3.png') center center/cover no-repeat;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.about-hero .hero-content{
    max-width: 700px;
    color: #fff;
}

.about-hero h1{
    color: #fff;
    font-size: 48px;
}

.about-hero h1 span{
    color: #69b43f;
}

.about-hero p{
    color: #f1f1f1;
}

/* Mobile Responsive */
@media (max-width:768px){

    .about-hero{
        min-height: 280px;
        background-position: center;
        padding: 50px 20px;
        text-align: center;
    }

    .about-hero .hero-content{
        max-width:100%;
    }

    .about-hero h1{
        font-size:32px;
        margin-bottom:15px;
    }

    .about-hero p{
        font-size:15px;
        line-height:1.7;
    }

}



