.fs-16 {
    font-size: 16px !important;
}

.z-10 {
    z-index: 10 !important;
}

.hero-content-inner {
    padding-top: 7rem !important;
    padding-bottom: 5rem !important;
}

/* .hero-top {
    width: 650px;
} */
.hero-logo-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
        max-width: 60px;
        max-height: 60px;
    }
}

.hero-cta {
    /* margin-right: 16.5rem; */
    transition: all 0.3s ease-in-out;
}

.hero-cta:hover {
    color: var(--color-white) !important;
    animation: textGlow 1.5s ease-in-out infinite alternate;
    transition: all 0.3s ease-in-out;
}

.hero-cta:hover a {
    color: var(--color-white) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
    animation: textGlow 1.5s ease-in-out infinite alternate;
    transition: all 0.3s ease-in-out;
}

.hero-cta:hover .cta-icon {
    color: var(--color-white) !important;
    animation: iconGlow 1.5s ease-in-out infinite alternate;
    transition: all 0.3s ease-in-out;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.1);
    }
    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

@keyframes iconGlow {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
        transform: scale(1.05);
    }
}

.overlay {
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

/* BE Elva Coming Soon Badge Styles - Positioned absolutely in bottom right */
.elva-coming-soon-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.5rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.2;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Alternative smaller badge style - Positioned absolutely in bottom right */
.elva-coming-soon-badge-small {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.5rem 0.75rem;
    padding-top: 0.65rem;
    padding-left: 1.25rem;
    border-bottom-right-radius: 0;
    border-top-left-radius: 25px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Ensure parent cards have relative positioning */
.column-list-card,
.grid-card {
    position: relative;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .hero-content-inner {
        width: fit-content !important;
        padding-top: 25rem !important;
        padding-bottom: 8rem !important;
        border-left: 1px dashed var(--color-dashed-border) !important;
        border-right: none !important;
        border-top: none !important;
        border-bottom: none !important;
        border-image: repeating-linear-gradient(to bottom, var(--color-dashed-border) 0, var(--color-dashed-border) 6px, transparent 6px, transparent 10px) 1 !important;
        border-image-slice: 1 !important;
    }

    .hero-side-content {
        gap: 1rem;
    }

    .hero-cta {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }



}

@media (min-width: 992px) {
    .hero-content-inner {
        padding-top: 10rem !important;
        padding-bottom: 6rem !important;
    }

    .elva .hero-top {
        margin-right: 12rem;
    }
}

/* ---------------- CTA SECTION Styles ---------------- */

.cta-container {
    padding-block: 12rem !important;
}

.cta-btn {
    background-color: var(--color-primary) !important;
    border-radius: 25px;
    color: var(--color-white);
    transition: all 0.3s ease-in-out;

    &:hover {
        background-color: var(--color-secondary) !important;
        color: var(--color-white) !important;
    }
}

.cta-overlay {
    background: rgba(0, 0, 0, 0.5);
    /* z-index: -1; */
}


/* ---------------- With SVG Background ---------------- */

.svg-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 400px;
    background: var(--color-bg-svg) !important;
    filter: blur(100px);
    pointer-events: none;
    opacity: 0.5;
    z-index: -1;
}

.svg-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 400px;
    background: var(--color-bg-svg) !important;
    filter: blur(100px);
    pointer-events: none;
    opacity: 0.5;
    z-index: -1;
}


/* ---------------- Six Cards Section ---------------- */

.six-cards-section .second-row {
    border-bottom: 1px dashed var(--color-dashed-border) !important;
    border-image: repeating-linear-gradient(to right, var(--color-dashed-border) 0, var(--color-dashed-border) 6px, transparent 6px, transparent 10px) 1 !important;
    border-image-slice: 1 !important;
}

.six-cards-section .third-row {
    border-top: 1px dashed var(--color-dashed-border) !important;
    border-bottom: 1px dashed var(--color-dashed-border) !important;
    border-image: repeating-linear-gradient(to right, var(--color-dashed-border) 0, var(--color-dashed-border) 6px, transparent 6px, transparent 10px) 1 !important;
    border-image-slice: 1 !important;
}

.six-cards-section .grid-card.five,
.six-cards-section .grid-card.six {
    border-bottom: none !important;
    border: none !important;
}

.six-cards-section .grid-card.five {
    border-right: 1px dashed var(--color-dashed-border) !important;
    border-image: repeating-linear-gradient(to bottom, var(--color-dashed-border) 0, var(--color-dashed-border) 6px, transparent 6px, transparent 10px) 1 !important;
    border-image-slice: 1 !important;
}

.six-cards-section .grid-card.six {
    border-left: 1px dashed var(--color-dashed-border) !important;
    border-image: repeating-linear-gradient(to bottom, var(--color-dashed-border) 0, var(--color-dashed-border) 6px, transparent 6px, transparent 10px) 1 !important;
    border-image-slice: 1 !important;
}

.grid-card {
    background-color: var(--color-black);
}