:root {
    --primary-color: #25D366;
    --secondary-color: #128C7E;
    --text-color: #333333;
    --bg-color: #FFFFFF;
    --light-bg: #F5F5F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
}

.logo::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: var(--primary-color);
    transition: width 0.4s ease-in-out;
    -webkit-transition: width 0.4s ease-in-out;
}

.logo:hover::after {
    width: 100%;
    left: 0;
    background: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    animation: gradientChange 10s ease infinite;
    padding: 120px 0 60px;
    text-align: center;
    color: #fff;
    position: relative;
}

.wave {
    position: absolute;
    bottom: -10;
    left: 0;
    width: 100%;
    height: 90px;
    animation: gradientChange 10s ease infinite;
    clip-path: polygon(0 100%, 25% 75%, 50% 100%, 75% 75%, 100% 100%, 100% 0, 0 0);
}

@keyframes gradientChange {
    0% {
        background: linear-gradient(135deg, #6e8efb, #a777e3);
    }
    50% {
        background: linear-gradient(80deg, #6e8efb, #a777e3);
    }
    100% {
        background: linear-gradient(45deg, #6e8efb, #a777e3);
    }
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.hero .subtitle {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #f1f1f1;
}

.hero .highlight {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffeb3b;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.hero-image {
    max-width: 100%;
    margin-top: 40px;
}

.features, .how-it-works, .demo, .pricing {
    padding: 80px 0;
}

.features h2, .how-it-works h2, .demo h2, .pricing h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    background-color: var(--bg-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(12deg);
    }
    80% {
        transform: rotate(-12deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Apply the rotating animation to the save time icon */
.save-time-icon {
    display: inline-block;
    animation: rotate 5s linear infinite; 
}

/* WhatsApp icon container */
.whatsapp-icon-container {
    position: relative;
    display: inline-block;
}

/* Notification badge */
.notification-badge {
    position: absolute;
    top: -3px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    animation: bounce 0.8s infinite;
}

/* Bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1px);
    }
}

@keyframes colorChange {
    0% {
        color: var(--primary-color);
    }
    50% {
        color: var(--secondary-color);
    }
    100% {
        color: var(--primary-color);
    }
}

/* Robot icon animation */
.robot-icon {
    display: inline-block;
    animation: colorChange 10s infinite;
}

.chat-demo {
    max-width: 500px;
    margin: 0 auto;
    background-color: #E5DDD5;
    border-radius: 10px;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}

.chat-message {
    max-width: 80%;
    margin-bottom: 20px;
    padding: 10px 15px;
    border-radius: 20px;
    line-height: 1.4;
    position: relative;
    font-size: 14px;
}

.chat-message.user {
    background-color: #DCF8C6;
    margin-left: auto;
    border-bottom-right-radius: 0;
}

.chat-message.bot {
    background-color: white;
    border-bottom-left-radius: 0;
}

.chat-message::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.chat-message.user::after {
    right: -10px;
    border-left-color: #DCF8C6;
    border-right: 0;
    border-bottom: 0;
    margin-top: -10px;
}

.chat-message.bot::after {
    left: -10px;
    border-right-color: white;
    border-left: 0;
    border-bottom: 0;
    margin-top: -10px;
}



.pricing {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.pricing h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.pricing-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Price Styles */
.price {
    font-size: 1.5em;
    color: var(--base-content);
}

/* Original Price Styles */
.original-price {
    text-decoration: line-through;
    color: var(--base-content);
    margin-right: 10px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.price span {
    font-size: 17px;
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.features-list li {
    margin-bottom: 10px;
}

.pricing-note {
    font-size: 14px;
    color: var (--text-color);
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.cta-button.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 10px;
}

.cta-button.secondary {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.cta-button[disabled] {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}
.faq {
    padding: 2em 0;
    background-color: #f9f9f9;
}

.faq h2 {
    text-align: center;
    margin-bottom: 1em;
    font-weight: 600;
}

.faq-item {
    margin-bottom: 1em;
}

.faq-question {
    width: 100%;
    padding: 1em;
    background-color: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    text-align: left;
    font-size: 1.1em;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f1f1f1;
}

.faq-answer {
    display: none;
    padding: 1em;
    border: 1px solid #ddd;
    border-top: none;
    background-color: #fff;
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 60px;
    }
    .hero h1 {
        font-size: 40px;
        margin-bottom: 10px;

    }
    
    .hero .subtitle {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .pricing-grid {
        flex-direction: column;
    }

    .pricing-card {
        margin-bottom: 20px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
