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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #FFFFFF;
}

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

/* Header */
header {
    background: #FFFFFF;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
}

.desktop-tablet-only {
    display: inline-block;
}

@media (max-width: 767px) {

    /* Mobile breakpoint */
    .desktop-tablet-only {
        display: none;
    }
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    .mobile-cta {
        margin-top: 1rem;
        text-align: center;
        display: block;
        width: 100%;
        color: white !important;
    }
}

.logo .green {
    color: #2F6932;
}

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

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2F6932;
}

.cta-btn {
    background: #2F6932;
    color: #FFFFFF;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    cursor: pointer;
}

.cta-btn:hover {
    background: #1e4421;
}

/* Main Content */
main {
    margin-top: 80px;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F4F4F4 0%, #FFFFFF 100%);
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.hero .highlight {
    color: #2F6932;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    background: #ffffff;
    ;
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F6932;
    font-size: 1.2rem;
    border: 2px dashed #2F6932;
    text-align: center;
    padding: 1rem;
}

.hero-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .hero-image {
        height: auto;
        /* Allow image to define height */
        padding: 0.5rem;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* .hero-image {
            background: #F4F4F4;
            border-radius: 15px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2F6932;
            font-size: 1.2rem;
            border: 2px dashed #2F6932;
            text-align: center;
            padding: 2rem;
        } */

.btn-secondary {
    background: transparent;
    color: #2F6932;
    border: 2px solid #2F6932;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2F6932;
    color: #FFFFFF;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #FFFFFF;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #000000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: #F4F4F4;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-image {
    width: 100%;
    height: 150px;
    background: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #2F6932;
    color: #2F6932;
    font-size: 0.9rem;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #2F6932;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #000000;
}

/* Additional Features Section */
.more-features {
    padding: 4rem 0;
    background: #F4F4F4;
}

.more-features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #000000;
}

.more-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.more-feature-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.more-feature-card:hover {
    transform: translateY(-5px);
}

.more-feature-icon {
    width: 80px;
    height: 80px;
    background: #2F6932;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 2rem;
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background: #FFFFFF;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #000000;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.benefits-list li::before {
    content: "✓";
    background: #2F6932;
    color: #FFFFFF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
}

.benefits-image {
    background: #ffffff;
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F6932;
    font-size: 1.1rem;
    border: 2px dashed #2F6932;
    text-align: center;
    padding: 2rem;
}

/* .benefits-image img {
            max-width: 100%;
            max-height: auto;
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 10px;

        } */

.benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    display: block;
}


@media (max-width: 768px) {
    .benefits-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefits-list {
        padding: 0;
        text-align: left;
        margin: 0 auto;
        max-width: 90%;
    }

    .benefits-list li {
        justify-content: flex-start;
    }

    .benefits-image {
        margin-top: 2rem;
        height: auto;
    }


}


/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background: #F4F4F4;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #000000;
}

.pricing-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
}

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

.pricing-card.featured {
    border: 3px solid #2F6932;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2F6932;
    color: #FFFFFF;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #000000;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2F6932;
    margin-bottom: 1rem;
}

.pricing-description {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* FAQs Section*/
.faq-section {
    max-width: 800px;
    margin: auto;
    padding: 2rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #000000;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    background: #f4f4f4;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #e4e4e4;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1rem;
}

.accordion-body p {
    margin: 1rem 0;
}

/* Show active body */
.accordion-item.active .accordion-body {
    max-height: 500px;
    /* adjust based on content */
    padding-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: #f4f4f4;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #000000;
}

.testimonial-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 2rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px dashed #2F6932;
    overflow: hidden;
    /* ensures image stays inside circle */
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* keeps aspect ratio */
    border-radius: 50%;
    /* ensures round image */
}


.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: #2F6932;
    margin-bottom: 0.5rem;
}

.testimonial-details {
    color: #666;
    font-size: 0.9rem;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    background: #2F6932;
    color: #FFFFFF;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: #1e4421;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot.active {
    background: #2F6932;
}

/* Security Section */
.security {
    padding: 4rem 0;
    background: #F4F4F4;
}

.security h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #000000;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.security-features {
    list-style: none;
}

.security-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.security-features li::before {
    content: "🔒";
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.security-image {
    background: #FFFFFF;
    border-radius: 15px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F6932;
    font-size: 1.1rem;
    border: 2px dashed #2F6932;
    text-align: center;
    padding: 2rem;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: #2F6932;
    color: #FFFFFF;
}

.stat-card {
    transition: all 0.6s ease-out;
    opacity: 0;
    transform: translateY(20px);
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Initial hidden state */
.stat-card.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

/* Visible state triggered by IntersectionObserver */
.stat-card.animate.visible {
    opacity: 1;
    transform: translateY(0);
}


/* How it Works Section */
.how-it-works {
    padding: 4rem 0;
    background: #FFFFFF;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #000000;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2F6932;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-image {
    width: 100%;
    height: 200px;
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #2F6932;
    color: #2F6932;
    font-size: 0.9rem;
    text-align: center;
    overflow: hidden;
}

.step-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    /* optional: match or soften */
}


/* Values Section */
.values {
    padding: 4rem 0;
    background: #ffffff;
}

.values h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #000000;
}

.values-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
    color: #2F6932;
    margin-bottom: 0.5rem;
}

/* About Page */
.about-hero {
    background: #F4F4F4;
    padding: 4rem 0;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-hero-text {
    text-align: left;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero-image {
    background: #FFFFFF;
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #2F6932;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    padding: 4rem 0;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section-with-image {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.about-section-image {
    background: #F4F4F4;
    border-radius: 10px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #2F6932;
    overflow: hidden;
}

.about-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


.about-section h2 {
    color: #2F6932;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.about-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-page {
    background: #fff;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.policy-page h5 {
    color: #2F6932;
    font-weight: bold;
}

.policy-page ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}


/* Contact Page */
.contact-hero {
    background: #F4F4F4;
    padding: 4rem 0;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-hero-text {
    text-align: left;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero-image {
    background: #FFFFFF;
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #2F6932;
    overflow: hidden;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .contact-hero-image {
        height: 250px;
    }

    .about-hero-image {
        height: 250px;
    }
}


.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-form {
    background: #F4F4F4;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #000000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.contact-info h3 {
    color: #2F6932;
    margin-bottom: 1rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #F4F4F4;
    border-radius: 5px;
}

.contact-item strong {
    color: #2F6932;
}

/* Footer */
footer {
    background: #000000;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #2F6932;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #FFFFFF;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #2F6932;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }

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

    .mobile-menu-btn {
        display: block;
    }

    /* Mobile responsive updates */
    .hero-content,
    .about-hero-content,
    .contact-hero-content,
    .benefits-content,
    .security-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text,
    .about-hero-text,
    .contact-hero-text {
        text-align: center;
    }

    .about-section-with-image {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .values-list {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card.featured {
        transform: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}
