.creative-services-wrapper {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    padding-bottom: 15px;
}
.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    position: relative;
    z-index: 2;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-row.reverse-layout {
    flex-direction: row-reverse;
}
.service-image {
    flex: 1;
    position: relative;
    padding: 10px;
    display: flex;
    justify-content: center;
}
.service-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: block;
}
.service-image:hover img {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}
.service-content {
    flex: 1;
    padding: 10px;
}
.service-category {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a192f;
    position: relative;
    display: inline-block;
}
.service-category::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #007bff, #6610f2);
    margin-top: 8px;
    border-radius: 20px;
}
.service-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}
.service-separator {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}
.service-separator svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}
@media (min-width: 768px) {
    .service-separator svg {
        height: 80px;
    }
}
.bg-light-blue {
    background-color: #f0fbff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}
.service-separator.full-width {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
@media (max-width: 992px) {
    .service-row {
        gap: 30px;
        padding: 20px 20px;
    }
    .service-category {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .service-row,
    .service-row.reverse-layout {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }
    .service-image {
        margin-bottom: 20px;
    }
    .service-content {
        padding: 0;
    }
    .service-category::after {
        margin: 8px auto 0 auto;
    }
    .service-description {
        font-size: 1rem;
    }
}
.service-icon-wrapper {
    width: 100%;
    max-width: 350px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-icon-wrapper:hover {
    transform: translateY(-12px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}
.service-icon-blob {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.1;
    filter: blur(40px);
    z-index: 0;
    animation: blob-pulse 8s infinite alternate;
}
@keyframes blob-pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}
.service-svg-icon {
    width: 100px;
    height: 100px;
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}
.icon-software {
    color: #007bff;
}
.icon-ecommerce {
    color: #28a745;
}
.icon-design {
    color: #ffc107;
}
.icon-seo {
    color: #17a2b8;
}
.icon-social {
    color: #e83e8c;
}
.service-svg-icon path {
    fill: currentColor;
}
.gradient-icon-software {
    fill: url(#grad-software);
}
.gradient-icon-ecommerce {
    fill: url(#grad-ecommerce);
}
.gradient-icon-design {
    fill: url(#grad-design);
}
.gradient-icon-seo {
    fill: url(#grad-seo);
}
.gradient-icon-social {
    fill: url(#grad-social);
}
.service-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.service-3d-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}
.service-3d-img:hover {
    transform: translateY(-8px) scale(1.02);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
}
@media (max-width: 768px) {
    .service-3d-img {
        max-width: 100%;
        margin-bottom: 20px;
    }
}