/* General Body Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
    background: url('../assets/Images/whatsapp-bg.png') no-repeat center center fixed;
    background-size: cover;
}

/* Header and Navigation */
header {
    background: linear-gradient(to right, #f0fef9 0%, #128C7E 85%);
    color: white;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.logo {
    display: flex;
    align-items: center;
    /* This pulls the logo into the padding area, making it appear on the far left */
    margin-left: -15px;
}

.logo img {
    height: 40px; /* This is overridden by the inline style in the HTML */
    /* margin-right is no longer needed as the text is gone */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #25D366; /* WhatsApp light green */
}

.auth-buttons button {
    background-color: #25D366; /* WhatsApp light green */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}

.auth-buttons button:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/Images/whatsapp-bg.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 120px 20px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-section h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-section p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-section .cta-buttons button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.hero-section .cta-buttons button:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
}

/* General Section Styling */
section {
    padding: 90px 25px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

section h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #128C7E;
}

section h3 {
    font-size: 1.6rem;
    margin-bottom: 40px;
    color: #555;
}

/* Features Section */
.features-section {
    background-color: #f8f8f8;
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
    align-items: center; /* Center the bubbles */
}

.chat-bubble-container {
    display: flex;
    width: 100%;
    max-width: 600px; /* Limit bubble width */
}

.chat-bubble-container.left {
    justify-content: flex-start;
}

.chat-bubble-container.right {
    justify-content: flex-end;
}

.chat-bubble {
    position: relative;
    background-color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    max-width: 80%; /* Max width of the bubble content */
    text-align: left;
    margin-bottom: 15px;
}

.chat-bubble-container.left .chat-bubble {
    background-color: #DCF8C6; /* Light green for outgoing */
    border-bottom-left-radius: 2px;
}

.chat-bubble-container.right .chat-bubble {
    background-color: #ffffff; /* White for incoming */
    border-bottom-right-radius: 2px;
}

.chat-bubble h4 {
    font-size: 1.3rem;
    color: #128C7E;
    margin-bottom: 5px;
}

.chat-bubble p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.chat-meta {
    display: block;
    font-size: 0.8rem;
    color: #888;
    text-align: right;
    margin-top: 5px;
}

/* Chat bubble tails */
.chat-bubble-container.left .chat-bubble::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color: #DCF8C6;
    border-left-width: 0;
    border-right-width: 10px;
}

.chat-bubble-container.right .chat-bubble::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -8px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color: #ffffff;
    border-right-width: 0;
    border-left-width: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .chat-bubble {
        max-width: 90%;
    }
}

/* About Us Section */
.about-section {
    background-color: white;
}

.about-section p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 20px auto;
}

/* Pricing Section */
.pricing-section {
    background-color: #f8f8f8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.pricing-item {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.pricing-item h4 {
    font-size: 2.2rem;
    color: #128C7E;
    margin-bottom: 15px;
}

.pricing-item .value-prop {
    font-size: 1.05rem;
    color: #777;
    margin-bottom: 20px;
    min-height: 60px; /* Ensure consistent height */
}

.pricing-item ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.pricing-item ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #444;
}

/* Testimonials Section */
.testimonials-section {
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.testimonial-item {
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: center;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-item .client-info {
    font-weight: bold;
    color: #128C7E;
}

/* Bottom CTA Section */
.cta-bottom-section {
    background-color: #128C7E;
    color: white;
    padding: 90px 25px;
}

.cta-bottom-section h2 {
    color: white;
    font-size: 3rem;
}

.cta-bottom-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-bottom-section .cta-buttons button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.cta-bottom-section .cta-buttons button:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
}

.cta-bottom-section .cta-buttons .button {
    display: inline-block; /* Treat anchor like a button */
    background-color: #25D366;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s ease;
    text-decoration: none; /* Remove underline from anchor */
}

.cta-bottom-section .cta-buttons .button:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 50px 25px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 30px auto;
    flex-wrap: wrap;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links ul li {
    margin: 0 15px 10px 15px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #25D366;
}

.social-media a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #25D366;
}

.copyright {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #aaa;
}

/* Waitlist Form Section */
.waitlist-form-section {
    background-color: #f8f8f8;
    padding: 90px 25px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-form-section h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #128C7E;
}

.waitlist-form-section p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 20px auto 40px auto;
}

.waitlist-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

.submit-waitlist-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.submit-waitlist-btn:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
}

.form-message {
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
}

.form-message.success {
    color: #25D366;
}

.form-message.error {
    color: #e74c3c;
}

/* Responsive adjustments for form */
@media (max-width: 768px) {
    .waitlist-form {
        padding: 20px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea {
        width: calc(100% - 20px); /* Adjust for padding */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav ul {
        margin-top: 15px;
        margin-bottom: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 15px;
    }

    .auth-buttons {
        margin-top: 15px;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    section {
        padding: 70px 20px; /* Adjusted for mobile */
    }

    section h2 {
        font-size: 2.2rem; /* Adjusted for mobile */
    }

    section h3 {
        font-size: 1.3rem; /* Adjusted for mobile */
    }

    .feature-grid, .pricing-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links ul {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/* Add this to your style.css */
.pricing-item.popular {
    border: 2px solid #25D366;
    position: relative;
    overflow: hidden;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: #25D366;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Add this to your style.css */
.pricing-footnote {
    font-size: 0.9rem;
    color: #888;
    margin-top: 20px;
    text-align: left;
    line-height: 1.5;
}



