/*------------------------------------------------------------------
    Hero Section
-------------------------------------------------------------------*/

.hero-container{
    padding-bottom:120px;
}

.hero-images{
    margin-top:-90px; /* pulls images upward */
    position:relative;
    z-index:5;
}

.hero-img{
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.hero-img img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:transform .4s ease;
}

.hero-img:hover img{
    transform:scale(1.05);
}

.text-accent {
    color:  #dd666c;
}

.feature-card.highlight {
    background-color: #f9f9f9;
}

.feature-card h3 span, .feature-card h4 {
    color:  #dd666c;
    font-weight: 700;
}

/* UI Elements */
.badge-accent {
    background: rgba(221, 102, 108, 0.1);
    color:  #dd666c;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.icon-box {
    font-size: 1.5rem;
    color:  #dd666c;
    margin-bottom: 1rem;
}

.service-tags span {
    font-size: 0.85rem;
    margin-right: 10px;
    color: #888;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.timeline-list li {
    margin-bottom: 10px;
    border-left: 2px solid  #dd666c;
    padding-left: 15px;
}

/* Typography */
.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}