/* CTA Section */
.cta-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px;
}

/* Background */
.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-section-wrapper {
    position: relative;
    max-width: 1200px;
    /* Adjust this value as needed */
    width: 100%;
    min-height: 500px;
    border-radius: 24px;
    /* Optional: rounded corners */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Border styling */
    overflow: hidden;
}

/* CTA Content */
.cta-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
        /* Top and bottom padding */
}

.cta-container {
    max-width: 600px;
    text-align: center;
    padding: 0 40px;
}

/* Icon */
.cta-icon {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.cta-icon-image {
    width: 80px;
    height: 80px;
    display: block;
    transition: transform 0.3s ease;
}

.cta-icon:hover .cta-icon-image {
    transform: scale(1.05);
}

/* Main Heading */
.cta-heading {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Description */
.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin: 0 0 40px 0;
    font-weight: 400;
}

/* CTA Button */
.cta-button-wrapper {
    display: flex;
    justify-content: center;
}

.cta-download-button:hover {
    transform: translateY(-1px);
    /* box-shadow: 0 1px 1px #8FC31F; */
}

/* Download Buttons */
.cta-download-button {
    display: inline-block;
    margin: 0 10px;
    transition: all 0.3s ease;
    border-radius: 17px;
    overflow: hidden;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.download-button-image {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Responsive adjustments for download buttons */
@media (max-width: 768px) {
    .cta-download-button {
        margin: 0 8px;
    }

    .download-button-image {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .cta-button-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-download-button {
        margin: 0;
    }

    .download-button-image {
        height: 40px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cta-section {
        padding: 60px 0;
        min-height: 450px;
    }

    .cta-heading {
        font-size: 2.5rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-section-wrapper {
        max-width: 900px;
        min-height: 450px;
    }
    
    .cta-content {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 15px;
        min-height: 400px;
    }

    .cta-container {
        padding: 0 30px;
    }

    .cta-icon {
        margin-bottom: 30px;
    }

    .cta-icon-image {
        width: 70px;
        height: 70px;
    }

    .cta-heading {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .cta-section-wrapper {
        max-width: 100%;
        min-height: 400px;
        border-radius: 20px;
    }
    
    .cta-content {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 10px;
        min-height: 350px;
    }

    .cta-container {
        padding: 0 20px;
    }

    .cta-icon {
        margin-bottom: 25px;
    }

    .cta-icon-image {
        width: 60px;
        height: 60px;
    }

    .cta-heading {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .cta-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .cta-section-wrapper {
        border-radius: 16px;
    }
    
    .cta-content {
        padding: 35px 0;
    }
}