@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container img {
    width: 150px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.hero.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 32px;
    font-weight: 700;
}

.cta-button {
    background: #00FF66;
    color: black;
    padding: 12px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

/* Features Section */
.features {
    background: #b8ffb8;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.features-grid.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 18px;
    border-radius: 16px;
}

.feature img {
    width: 32px;
    height: 32px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 48px;
    font-size: 1.5rem;
}

.testimonials-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    min-width: 280px;
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease-out;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #b8ffb8;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 1.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-name {
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li::before {
    content: "•";
    color: #00FF66;
}

.pricing-button {
    width: 100%;
    padding: 12px;
    border: 2px solid black;
    border-radius: 24px;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
}

.pricing-button.primary {
    background: transparent;
    border-color: black;
}

.pricing-button:hover {
    background-color: #00FF66;
    transition: 0.5s ease;
}

/* Mobile Navigation */
.mobile-nav-icon {
    width: 4rem;
    height: 4rem;
    color: black;
}

.mobile-nav-icon[name="close-outline"] {
    display: none;
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

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

.profile-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    border-radius: 25px;
    background-color: #f4f4f4;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.logout-btn {
    padding: 0.3125rem 0.625rem;
    font-size: 1.25rem;
    color: #ff4500;
    border: 0.125rem solid #ff4500;
    border-radius: 0.3125rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.logout-btn:hover {
    background-color: #ff4500;
    color: white;
}

.li {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5625rem;
    font-weight: bold;
    color: #2ecc71;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #B8FFB8;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.navbar .title {
    font-size: 24px;
    font-weight: bold;
    color: #2e7d32;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 63px;
    padding: 0;
    margin: 0;
}

.navbar ul li {
    cursor: pointer;
    color: #2e7d32;
    font-weight: 600;
}

.navbar ul li:hover {
    color: #1b5e20;
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    color: #2e7d32;
    display: none;
    z-index: 10;
}

.login-btn {
    background-color: #2e7d32;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.login-btn:hover {
    background-color: #1b5e20;
}

.navbar ul a {
    text-decoration: none;
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }

    .navbar ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        background-color: #c5e1a5;
        height: 100%;
        width: 25%;
        text-align: center;
        padding-top: 60px;
        transition: right 0.3s ease-in-out;
        gap: 30px;
        z-index: 999;
    }

    .navbar ul.show {
        right: 0;
    }
}

@media (max-width: 493px) {
    .navbar ul {
        width: 55%;
    }
}

.profile-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5625rem;
    font-weight: bold;
    color: #2ecc71;
}
.mobile-nav-icon[name="close-outline"] {
    display: none;
    position: absolute;
    top: 15px;
    right: 20px;
    width: 2rem; 
    height: 2rem;
    color: black;
    cursor: pointer;
    z-index: 1001; /* Ensures it appears above the sidebar */
}
.mobile-nav-icon {
    width: 2rem;  
    height: 2rem;
    color: black;
    cursor: pointer;
}

.mobile-nav-icon[name="close-outline"] {
    display: none;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1001; /* Ensures it appears above the sidebar */
}
/* Hide mobile nav icons on larger screens */
.mobile-nav-icon {
    width: 2rem;  
    height: 2rem;
    color: black;
    cursor: pointer;
    display: none; /* Hidden by default */
}

/* Show mobile nav icons only on small screens */
@media (max-width: 1024px) {
    .mobile-nav-icon {
        display: block;
    }
}

