/*-----------------------------
 GLOBAL CSS START  
 -----------------------------*/
 .theme-bg{background: #fee9dd;}

/*-----------------------------
GLOBAL CARDS CSS
 -----------------------------*/

.features-area-cstm .feature-card {
    background: #fff;
  
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    height: 100%;
}

.features-area-cstm .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.features-area-cstm .feature-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.features-area-cstm .feature-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.features-area-cstm .feature-card:hover .feature-image img {
    transform: scale(1.08);
}

.features-area-cstm .feature-content {
    padding: 25px;
}

.features-area-cstm .feature-content h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111;
}

.features-area-cstm .feature-desc {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}
