.jcservices-hero-wrapper {
    position: relative;
    z-index: 10;
    --primary: #A234FD;
    font-family: 'Rajdhani', sans-serif;
}

.jcservices-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.jcservices-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .jcservices-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.jcservices-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(162, 52, 253, 0.3);
    border-radius: 9999px;
    background-color: rgba(37, 17, 55, 0.5);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.jcservices-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
}

.jcservices-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 0.9;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .jcservices-hero-title {
        font-size: 4.5rem;
    }
}

.jcservices-hero-desc {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 32rem;
    border-left: 2px solid rgba(162, 52, 253, 0.3);
    padding-left: 1.5rem;
}

/* Visual Area */
.jcservices-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.jcservices-planet-glow {
    width: 250px;
    /* Increased size for background effect */
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--primary), #1a0b2e);
    box-shadow: 0 0 80px rgba(162, 52, 253, 0.4), inset -10px -10px 20px rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.8;
}

.jcservices-planet-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 350px;
    height: 100px;
    /* Elliptical ring */
    border: 2px solid rgba(162, 52, 253, 0.2);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Image */
.jcservices-hero-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
    animation: jc-hero-float 6s ease-in-out infinite;
}

@keyframes jc-hero-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Buttons */
.jcservices-hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.jc-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.jc-hero-btn-primary {
    background: var(--primary);
    color: white;
    border: 1px solid var(--primary);
    box-shadow: 0 0 15px rgba(162, 52, 253, 0.4);
}

.jc-hero-btn-primary:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: 0 0 25px rgba(162, 52, 253, 0.6);
}

.jc-hero-btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.jc-hero-btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}