\/* Service Section Styles */
#services-1 {
    padding: 100px 0;
    background-color: #ffffff;
    width: 100%;
}

.service-container-2 {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.service-header-3 {
    text-align: center;
    margin-bottom: 60px;
}

.service-title-4 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-subtitle-5 {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filter Buttons */
.service-filters-6 {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.service-filter-btn-7 {
    padding: 12px 28px;
    border: 2px solid rgb(29, 78, 216);
    background-color: white;
    color: rgb(29, 78, 216);
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.service-filter-btn-7:hover,
.service-filter-btn-7.active-8 {
    background-color: rgb(29, 78, 216);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

/* Service Cards Grid - 2 rows, 4 columns */
.service-cards-9 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* All cards span 1 column in the 4-column grid */
.service-card-10 {
    grid-column: span 1;
}

/* Service Card Styles */
.service-card-10 {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 500px;
    opacity: 0;
    transform: translateY(30px);
}

.service-card-10.visible-11 {
    opacity: 1;
    transform: translateY(0);
}

.service-card-inner-12 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-card-10:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.service-card-image-13 {
    height: 200px;
    overflow: hidden;
}

.service-card-image-13 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-10:hover .service-card-image-13 img {
    transform: scale(1.6);
}

/* Card Content */
.service-card-content-14 {
    padding: 25px;
    height: calc(100% - 200px);
    display: flex;
    flex-direction: column;
}

.service-card-title-15 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0256cd;
    margin-bottom: 12px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 10px;
}

.service-card-title-15::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgb(29, 78, 216);
    border-radius: 2px;
}

.service-card-desc-16 {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Card Overlay */
.service-card-overlay-17 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(29, 78, 216);
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-10:hover .service-card-overlay-17 {
    top: 0;
}

.overlay-content-18 {
    text-align: center;
    width: 100%;
}

.overlay-title-19 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

/* Service Features List */
.service-features-20 {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.service-features-20 li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
}

.service-features-20 li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.overlay-desc-21 {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

/* Learn More Button */
.service-learn-more-22 {
    padding: 12px 32px;
    background: white;
    color: rgb(29, 78, 216);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-learn-more-22::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.service-learn-more-22:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.service-learn-more-22:hover::before {
    left: 100%;
}

/* Filter Animation */
.service-card-10.hidden-23 {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
}

/* Service Hashtags Styles */
.service-hashtags-24 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.hashtag-25 {
    font-size: 0.75rem;
    color: rgb(29, 78, 216);
    background: rgba(29, 78, 216, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hashtag-25:hover {
    background: rgba(29, 78, 216, 0.2);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-cards-9 {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .service-cards-9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #services-1 {
        padding: 60px 0;
    }
    
    .service-title-4 {
        font-size: 2.2rem;
    }
    
    .service-subtitle-5 {
        font-size: 1.1rem;
    }
    
    .service-filters-6 {
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .service-filter-btn-7 {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-cards-9 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card-10 {
        height: 500px;
    }
    
    .service-card-overlay-17 {
        padding: 25px;
    }
    
    .service-hashtags-24 {
        gap: 4px;
    }
    
    .hashtag-25 {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .service-container-2 {
        padding: 0 20px;
    }
    
    .service-title-4 {
        font-size: 1.8rem;
    }
    
    .service-filters-6 {
        flex-direction: column;
        align-items: center;
    }
    
    .service-filter-btn-7 {
        width: 200px;
    }
    
    .service-card-10 {
        height: 500px;
    }
    
    .service-card-image-13 {
        height: 160px;
    }
    
    .service-card-content-14 {
        padding: 20px;
    }
    
    .service-card-overlay-17 {
        padding: 20px;
    }
    
    .service-card-title-15 {
        font-size: 1.2rem;
    }
    
    .overlay-title-19 {
        font-size: 1.3rem;
    }
    
    .service-features-20 li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
}