.sidma-hero-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertical Center */
    /* Horizontal handled by text-align control mapping to align-items usually, 
       but for wrapper flex it acts differently. 
       Let's use padding and text-align in content.
    */
    align-items: center;
    /* Default center, overridden by selector */
    overflow: hidden;
    padding: 60px 20px;
    border-radius: 0px;
    /* Optional or control */
}

/* --- Content --- */
.sidma-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align-items set by control */
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* --- Background Image --- */
.sidma-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* bg color set by control */
}

/* --- Animated Gradient --- */
.sidma-hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: var(--c1, #0C1657);
    overflow: hidden;
}

/* Create the mesh effect using pseudo-elements */
.sidma-hero-bg-gradient::before,
.sidma-hero-bg-gradient::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    /* The mesh blur */
    opacity: 0.6;
    animation: meshFloat 10s infinite alternate ease-in-out;
}

.sidma-hero-bg-gradient::before {
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--c2) 0%, transparent 70%);
    top: -20%;
    left: -20%;
    animation-duration: 8s;
}

.sidma-hero-bg-gradient::after {
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, var(--c3) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-duration: 12s;
    animation-direction: alternate-reverse;
}

@keyframes meshFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(10%, 10%) scale(1.1);
    }

    100% {
        transform: translate(-5%, 15%) scale(0.9);
    }
}

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

    .hero-desc {
        font-size: 1rem;
    }
}