/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Child theme for Astra
Author: Your Name
Template: astra
Version: 1.0
*/

/* Your custom CSS starts here */
/* CTA CONTAINER */
.spwebai-cta-gradient {
    background: linear-gradient(90deg, #3b82f6, #9333ea);
    border-radius: 18px;
    margin-top: 70px;
    padding: 70px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* INNER WRAPPER */
.spwebai-cta-gradient .cta-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* HEADING */
.spwebai-cta-gradient h3 {
    font-size: 34px;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

/* PARAGRAPH */
.spwebai-cta-gradient p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 34px;
    line-height: 1.6;
}

/* BUTTON DEFAULT */
.spwebai-btn-gradient {
    display: inline-block;
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.35);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* BUTTON SHINE EFFECT */
.spwebai-btn-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s ease;
}

/* BUTTON HOVER */
.spwebai-btn-gradient:hover {
    transform: translateY(-4px) scale(1.04);
    background: linear-gradient(135deg, #4ade80, #22c55e);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5);
}

/* SHINE MOVE */
.spwebai-btn-gradient:hover::before {
    left: 130%;
}

/* BUTTON CLICK */
.spwebai-btn-gradient:active {
    transform: scale(0.96);
    box-shadow: 0 6px 15px rgba(34, 197, 94, 0.3);
}

/* SUBTLE BACKGROUND GLOW */
.spwebai-cta-gradient::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 60%);
    z-index: 1;
}
.ast-single-post .entry-content a, .ast-comment-content a:not(.ast-comment-edit-reply-wrap a) {
    text-decoration: none !important;
}
/* MOBILE */
@media (max-width: 768px) {

    .spwebai-cta-gradient {
        padding: 50px 20px;
        margin-top: 50px;
        border-radius: 14px;
    }

    .spwebai-cta-gradient h3 {
        font-size: 24px;
    }

    .spwebai-cta-gradient p {
        font-size: 15px;
        margin-bottom: 26px;
    }

    .spwebai-btn-gradient {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }
}