.svc-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: auto;

}

.svc-subtitle {
    color: #5be0e6;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.svc-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.4;
}

/* Cards */
.svc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.svc-card {
    background: transparent;
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    border: 1px solid transparent;
    text-align: left;
}

.svc-card h3 {
    margin-top: 15px;
    color: #ffffff;
    font-size: 1.1rem;
}

.svc-card p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Glow effect follow */
.svc-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, #5e29ff55, transparent 60%);
    transform: translate(-50%, -50%);
    left: var(--x);
    top: var(--y);
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 0;
}

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

.svc-icon img {
    height: 60px;
    width: 60px;
    object-fit: contain;
}

/* Scroll animation */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

[data-animate].active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .svc-title {
        font-size: 1.8rem;
    }

    .svc-card {
        text-align: center;
    }

    .svc-icon img {
        margin: auto;
    }
}

.service-section {
    color: #f1f1f1;
    padding: 80px 20px;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-content {
    flex: 1 1 500px;
    max-width: 600px;
}

.service-subtitle {
    text-transform: uppercase;
    color: #ff6ec4;
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
}

.service-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #62D6E5;
    text-shadow: 0 0 10px rgba(0, 255, 224, 0.2);
}

.service-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-points li {
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 1rem;
    color: #f1f1f1;
}

.service-image {
    flex: 1 1 400px;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 255, 224, 0.15);
    transition: transform 0.5s ease;
}

.service-image img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

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

/* Scroll Animation Classes */
.animate-on-scroll-left,
.animate-on-scroll-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.animate-on-scroll-left {
    transform: translateX(-60px);
}

.animate-on-scroll-right {
    transform: translateX(60px);
}

.animate-on-scroll-left.visible,
.animate-on-scroll-right.visible {
    opacity: 1;
    transform: translateX(0);
}