.cta_section {
    margin-bottom: 0px !important;
}
.faq-heading {
    font-weight: 400;
}
.logo {
    height: 60px;
    width: auto;
}
.signals-testimonial {
    margin-bottom: 0px !important;
}
.pricing-tab-signals {
    margin-bottom: 40px;
}

/* Newsletter Modal Styles */
.newsletter-modal {
    font-family: 'Inter', sans-serif;
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.newsletter-modal-content {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalFadeIn 0.5s ease;
    overflow: hidden;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-30px);}
    to {opacity: 1; transform: translateY(0);}
}

.newsletter-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    transition: color 0.2s;
}

.newsletter-close:hover {
    color: #000;
}

.newsletter-modal-header {
    padding: 20px 25px;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    border-bottom: 1px solid #eee;
}

.newsletter-modal-header h3 {
    margin: 10px 0 0;
    color: #333;
    font-size: 24px;
}

.newsletter-logo {
    max-width: 120px;
    margin-bottom: 10px;
}

.newsletter-modal-body {
    padding: 25px;
    text-align: center;
}

.newsletter-modal-body p {
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

.newsletter-pdf-preview {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.newsletter-pdf-preview img {
    width: 48px;
    height: 48px;
}

.newsletter-pdf-preview span {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

#newsletter-name,
#newsletter-email {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
    transition: border-color 0.3s;
}

#newsletter-name:focus,
#newsletter-email:focus {
    border-color: #1c78ff;
    outline: none;
}

.newsletter-submit-btn {
    background-color: #1c78ff;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-submit-btn:hover {
    background-color: #3a7bc8;
}

.newsletter-privacy {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

.newsletter-success {
    text-align: center;
    padding: 20px 0;
}

.newsletter-success img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.newsletter-success h4 {
    color: #1c78ff;
    margin-bottom: 10px;
    font-size: 22px;
}

.newsletter-success p {
    color: #555;
    font-size: 16px;
}

@media (max-width: 600px) {
    .newsletter-modal-content {
        width: 95%;
    }
    
    .newsletter-modal-header h3 {
        font-size: 20px;
    }
    
    .newsletter-modal-body p {
        font-size: 14px;
    }
    
    .newsletter-pdf-preview span {
        font-size: 14px;
    }
}

.testimonial-screenshot {
    height: 240px; /* Fixed height for all images */
    width: 100%; /* Full width of the container */
    object-fit: cover; /* Maintains aspect ratio while filling the container */
    border-radius: 10px; /* Optional: rounded corners for the images */
}

.chat-testimonial {
    height: 400px !important; /* Fixed height for all images */
    width: 100%; /* Full width of the container */
    object-fit: contain; /* Maintains aspect ratio while filling the container */
    border-radius: 10px; /* Optional: rounded corners for the images */
}

.testimonial_card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px; /* Fixed height for cards, allowing for padding */
    overflow: hidden;
}
.chat-testimonial_card {
    height: 450px !important; /* Fixed height for cards, allowing for padding */
}
.chat-testimonial_card img {
   border-radius: 10px !important;
}


.text-gradient-color {
    background-image: linear-gradient(189deg, #017ffe 30%, #a6d1fc 88%), linear-gradient(180deg, #017ffe 16%, #a6d1fc 94%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.btn-cta {
    background-image: linear-gradient(180deg, #a6d1fc, #017ffe );
}
