/* for cursor */
.custom-cursor {
    position: fixed;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: #2aa22e;
    box-shadow: 0px 0px 20px rgb(0, 255, 0);
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
}

@media (max-width: 2500px) {

    html,
    body {
        overflow-x: hidden;
    }
}

/* loading animation */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* navbar */
/* .fb {
    fill: white
}

.fb:hover {
    color: royalblue;
}

.socialInfo {
    color: hsl(0, 0%, 80%);
    transition: filter .5s ease;
}

.socialInfo:hover {
    color: white;
    filter: drop-shadow(0px 0px 1px white);
} */

/* .navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 0 rgba(78, 78, 78, 0);
    color: white;
} */

:root {
    --primary-green: #16a34a;
    --light-green: #dcfce7;
    --dark-green: #15803d;
    --amber: #f59e0b;
    --light-amber: #fef3c7;
    --brown: #92400e;
    --beige: #f5f5dc;
    --off-white: #fafafa;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    cursor: none;
}

html,
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    /* background: linear-gradient(180deg, var(--light-green) 0%, var(--light-amber) 100%); */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.navbar-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.hero {
    min-height: 100dvh;
    background: linear-gradient(rgba(20, 83, 45, 0.6), rgba(20, 83, 45, 0.4)),
        url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: black;
    position: relative;
    margin-top: 0;
    top: 0;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .highlight {
    color: #86efac;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d1fae5;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-green);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--gray-800);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

.card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.card p {
    text-align: center;
    color: var(--gray-600);
}

.intro-section {
    background: linear-gradient(180deg, var(--light-green) 0%, white 100%);
}

.intro-values {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.intro-values span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.practices-section {
    background: white;
}

.practice-card {
    display: flex;
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.practice-card:hover {
    box-shadow: var(--shadow-xl);
}

.practice-image {
    width: 33.333%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.practice-content {
    flex: 1;
    padding: 2rem;
}

.practice-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.practice-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.products-section {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-amber) 100%);
}

.product-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-green);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-content {
    padding: 1.5rem;
}

.comparison-section {
    background: white;
}

.comparison-table {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.comparison-header {
    background: linear-gradient(90deg, var(--primary-green) 0%, #059669 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table th {
    background: var(--gray-50);
    font-weight: 600;
}

.paper-col {
    background: var(--light-green);
}

.plastic-col {
    background: #fef2f2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--light-green) 0%, #dcfce7 100%);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.testimonials-section {
    background: linear-gradient(135deg, var(--gray-100) 0%, #ecfdf5 100%);
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin-right: 1rem;
    background-size: cover;
    background-position: center;
}

.community-section {
    background: white;
}

.community-card {
    background: #86efac;
    color: black;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.community-card:hover {
    box-shadow: var(--shadow-xl);
}

.community-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.community-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
}

.community-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    backdrop-filter: blur(10px);
}

.timeline-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gray-300);
    transition: var(--transition);
}

.timeline-item.completed {
    border-left-color: var(--primary-green);
}

.timeline-item.in-progress {
    border-left-color: #273E47;
}

.timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.timeline-year {
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.progress-bar {
    background: var(--gray-200);
    border-radius: 9999px;
    height: 8px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-fill {
    background: var(--primary-green);
    height: 100%;
    border-radius: 9999px;
    transition: width 0.5s ease;
}

.faq-section {
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: #059669;
}

.faq-question {
    background: white;
    border: none;
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: between;
    transition: var(--transition);
}

.faq-question:hover {
    background: #86efac;
}

.faq-icon {
    margin-right: 1rem;
    font-size: 1.25rem;
}

.faq-toggle {
    margin-left: auto;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-toggle.open {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #059669 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #d1fae5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.newsletter-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    margin-bottom: 3rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.stats-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .practice-card {
        flex-direction: column;
    }

    .practice-image {
        width: 100%;
        height: 150px;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.nav-link ::after {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #2c3e50;
    transition: width .3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

#svg {
    color: #92e394;
    height: 3rem;
    padding-right: 10px;
}

/* paper bag animation  */
#paper-bag {
    animation: movement 5s infinite ease-in-out;
    filter: drop-shadow(0 0 5px #2aa22e);
}

@keyframes movement {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.fullscreen-section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* sticky button  */
.go-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: #2aa22e;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    /* Hidden by default */
    transition: opacity 0.3s ease;
}

.go-top-btn:hover {
    background-color: #1e7c21;
}

footer {
    position: relative;
    background-image: url(../images/leafy-bg2.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin: 20px;
}


.faq-item fade-in {
    background-color: #059669;
}

/* for product */
/* button */
/* button */
.product-btn {
    /* border: 1px solid black; */
    color: white !important;
    font-size: 1.2rem !important;
    padding: 5px 15px;
    border-radius: .7rem;
    background-image: linear-gradient(to bottom right, #25D267, #15957C) !important;
    box-shadow: 0px 0px 5px hsl(0, 0%, 20%);
    transition: all 0.5s ease;
}

.product-btn:hover {
    background-image: linear-gradient(to bottom right, #15957C, #25D267) !important;
}

/* product 2 */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    margin-right: 14px;
}

/* product 2 */
.product-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
    box-shadow: 1px 1px 5px hsla(0, 0%, 38%, 0.557);
    border-radius: 3px;
    background-color: #ffffff;
    transition: all .5s ease;
    z-index: 5;
}

/* product 2 */
.product-card:hover {
    box-shadow: 0px 0px 20px hsla(0, 0%, 38%, 0.87);
    transform: translateY(-10px) scale(1.02);
}

.product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
    /* width: 100%; */
    /* background-color: #e2e2e2; */
    /* border-radius: 3px 3px 0px 0px; */
    /* padding: 16px; */
    /* min-height: 200px; */
}

.product-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1rem 1rem 0 0;
    transition: all .8s ease;
}

.product-card:hover .product-image {
    transform: scale(1.15);
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0 20px 26px 20px;
}

.product-title {
    font-size: 18px;
    font-family: Inter;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    color: #192E21;
    width: 100%;
    margin-bottom: 8px;
}

.product-description {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    color: #637381;
    width: 100%;
    margin-bottom: 24px;
}

.product-divider {
    width: 30px;
    height: 2px;
    margin-bottom: 12px;
}

.product-price {
    font-size: 18px;
    font-family: Inter;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    color: #131313;
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-top: 32px;
}

.pagination-arrow {
    width: 16px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}


/* Responsive media queries */
@media (min-width: 640px) {
    .content-wrapper {
        padding-top: 64px;
    }

    .products-label {
        font-size: 12px;
        line-height: 14px;
        letter-spacing: 5px;
        margin-bottom: 18px;
    }

    .main-heading {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 18px;
    }

    .subtitle {
        font-size: 16px;
        line-height: 20px;
    }

    .category-nav {
        gap: 32px;
        margin-bottom: 40px;
    }

    .category-item {
        font-size: 16px;
        line-height: 20px;
        padding: 10px 16px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .product-title {
        font-size: 20px;
        line-height: 28px;
    }

    .product-description {
        font-size: 15px;
        line-height: 22px;
    }

    .product-price {
        font-size: 20px;
        line-height: 26px;
    }
}

@media (min-width: 768px) {
    .content-wrapper {
        padding-top: 72px;
    }

    .products-label {
        font-size: 13px;
        line-height: 16px;
        letter-spacing: 6px;
        margin-bottom: 20px;
    }

    .main-heading {
        font-size: 42px;
        line-height: 52px;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 17px;
        line-height: 22px;
    }

    .category-nav {
        gap: 40px;
        margin-bottom: 48px;
    }

    .category-item {
        font-size: 17px;
        line-height: 21px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .product-title {
        font-size: 22px;
        line-height: 30px;
    }

    .product-description {
        font-size: 15px;
        line-height: 23px;
    }

    .product-price {
        font-size: 22px;
        line-height: 28px;
    }
}

@media (min-width: 1024px) {
    .content-wrapper {
        padding-top: 96px;
    }

    .products-label {
        font-size: 14px;
        line-height: 17px;
        letter-spacing: 7px;
        margin-bottom: 22px;
    }

    .main-heading {
        font-size: 48px;
        line-height: 59px;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 19px;
        line-height: 23px;
    }

    .category-nav {
        gap: 48px;
        margin-bottom: 56px;
    }

    .category-item {
        font-size: 18px;
        line-height: 22px;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 26px;
    }

    .product-card {
        gap: 15px;
        border-radius: 1rem;
    }

    .product-image-container {
        min-height: 256px;
    }

    .product-title {
        font-size: 24px;
        line-height: 36px;
    }

    .product-description {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 36px;
    }

    .product-price {
        font-size: 24px;
        line-height: 30px;
    }
}