.what-we-do-wrap {
    padding: 80px 0;
    background: #fff;
}

.section-info h1 {
    color: #00334e; 
    letter-spacing: -1px; 
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 25px !important;
}

.section-info h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 5px;
    background: #00563b; 
    border-radius: 10px;
}


.section-info p {
    color: #64748b;
    line-height: 1.8;
    font-weight: 400;
    max-width: 100%;
    font-size: 16px !important;
    text-align: justify;
}

@media (min-width: 992px) {
    .section-info {
        padding-right: 50px;
    }
}

@media (max-width: 768px) {
    .section-info h1 {
        font-size: 24px;
        text-align: center;
    }
    .section-info h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .section-info p {
        text-align: center;
        max-width: 100%;
        font-size: 16px;
    }
}
.service-img-card {
    position: relative;
    height: 250px;
    border-radius: 6px;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eee;
}

.service-img-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    transition: 0.3s;
}

.service-img-card:hover {
    transform: translateY(-8px);
}

.service-img-card:hover::before {
    background: linear-gradient(to bottom, rgba(0, 158, 179, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.service-img-card .content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.service-img-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.service-img-card p {
    font-size: 12px;
    opacity: 0.85;
    margin: 0;
    line-height: 1.4;
}

.featured-service-large {
    height: 270px;
}

@media (max-width: 991px) {
    .featured-service-large { height: 260px; }
}
.btn-teal-rounded {
    background-color: #00563b;
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    padding: 10px!important;
    font-size: 12px;
}

.btn-teal-rounded:hover {
    background-color: #00563b; 
    transform: translateY(-5px); 
}
.btn-teal-rounded i {
    transition: transform 0.3s ease;
}
.btn-teal-rounded:hover i {
    transform: translateX(8px); 
}
.btn-teal-rounded:active {
    transform: translateY(-2px) scale(0.98);
}