/* General Styling */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');
body {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}
  .logo {
            text-align: center;
            margin-bottom: 20px;
        }
        .cta-button, .go-offer-button {
            background-color: green;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            display: inline-block;
            cursor: pointer;
        }
      .discount-code {
    color: #ffffff;
    font-weight: bold;
    background: #4caf50;
    padding: 20px;
}
        .go-offer-button {
            display: block;
            margin: 20px auto;
            text-align: center;
        }
.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 128, 0, 0.3);
    transition: transform 0.3s ease;
}
.container:hover {
    transform: scale(1.02);
}
h1 a {
    color: #004d00;
    text-decoration: none;
}
h1 a:hover {
    text-decoration: underline;
}
h1 {
    font-size: 30px;
    color: #004d00;
}
p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}
.highlight {
    font-weight: bold;
    font-size: 22px;
}
.ctax-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}
.cta-button:hover {
    background-color: #43a047;
}
.trust-signals {
    margin-top: 20px;
    font-size: 16px;
    color: #4CAF50;
    font-weight: bold;
}
.timer-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #004d00;
}
footer {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
}
footer a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
}
footer a:hover {
    color: #666;
}
/* Testimonials Section */
.testimonials {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    overflow: hidden;
}
.testimonial {
    text-align: center;
    width: 250px;
    margin: 0 10px;
}
.testimonial img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}
.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: #333;
}
/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.modal-buttons button {
    padding: 10px 20px;
    border: none;
    font-family: Tajawal;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.modal-buttons button:first-child {
    background-color: #28a745; /* Green for "Yes" */
    color: #fff;
}

.modal-buttons button:last-child {
    background-color: #dc3545; /* Red for "Close" */
    color: #fff;
}

.modal-buttons button:hover {
    opacity: 0.9;
}

/* Ensure modal is centered */
@media (max-width: 600px) {
    .modal-content {
        width: 95%;
        padding: 15px;
    }

    .modal-content p {
        font-size: 16px;
    }

    .modal-buttons button {
        padding: 8px 15px;
        font-size: 14px;
    }
}