/* Services Section Redesign */
.new-service-area {
    padding: 80px 0;
    background-color: #f9f9ff;
    position: relative;
    z-index: 1;
}

.new-service-area .section-title-wrap {
    margin-bottom: 60px;
}

.new-service-area .section-title-wrap h5 {
    color: #fab700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.new-service-area .section-title-wrap h2 {
    color: #222;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Gradient Overlay Effect on Hover */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250, 183, 0, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 1;
}

/* Bottom Line Animation */
.service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #fab700, #ff6b6b);
    /* Brand colors gradient */
    transition: width 0.4s ease;
}

.service-card:hover::after {
    width: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 30px 50px -10px rgba(0, 0, 0, 0.15);
}

.service-card .thumb {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-card .thumb img {
    width: 100%;
    height: auto;
    transition: all 0.6s ease;
    transform: scale(1.0);
    /* Blue Filter Effect: Grayscale -> Sepia -> Blue Hue -> Saturation Boost */
    filter: grayscale(100%) sepia(100%) hue-rotate(190deg) saturate(300%);
    opacity: 0.9;
}

.service-card:hover .thumb img {
    transform: scale(1.1);
    filter: none;
    /* Restore original color */
    opacity: 1;
}

/* Title Styling */
.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #fab700;
}

.service-card p {
    margin-bottom: 25px;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* Button Styling */
.service-card .read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #f4f4f4;
    position: relative;
    overflow: hidden;
    /* Ensure overflow hidden for effects */
}

.service-card .read-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 12px;
}

/* Card Hover Effects on Button */
.service-card:hover .read-more-btn {
    background-color: #fab700;
    color: #fff;
    box-shadow: 0 5px 15px rgba(250, 183, 0, 0.4);
}

.service-card:hover .read-more-btn i {
    transform: translateX(5px);
}

/* Specific Button Hover Effect - Text Slide */
.service-card .read-more-btn:hover {
    padding-left: 25px;
    /* Visual slide effect */
    padding-right: 15px;
    /* Adjust right padding to maintain size if needed, or let it grow */
    transform: translateX(5px);
}