﻿.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 12px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
}

    .navbar .nav-brand {
        display: flex;
        align-items: center;
    }

        .navbar .nav-brand img {
            width: 50px;
            margin-right: 10px;
        }

        .navbar .nav-brand .brand-text {
            display: flex;
            flex-direction: column;
            font-weight: bold;
            color: #2e7d32;
            font-size: 1.2rem;
            line-height: 1.1;
        }

    .navbar nav a {
        text-decoration: none;
        margin-left: 20px;
        font-weight: 500;
        color: #333;
        transition: color 0.2s ease;
    }

        .navbar nav a:hover {
            color: #4B783F;
        }

@media (max-width: 768px) {
    .navbar nav a {
        margin-left: 12px;
        font-size: 0.9rem;
    }
}


body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #fdfdfd;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.hero {
    background: url('/Website/NewVersion/banner_1_optimized.webp') center center / cover no-repeat;
    color: darkgreen;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

/*.containerhero {
            border-radius:50px;
            background: #FAFAD2;
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 0;
        }*/

.brand {
    display: flex;
    align-items: center;
    position: absolute; /* <--- Make it float */
    top: 10px; /* Distance from top */
    left: 10px; /* Distance from left */
    background: white; /* Optional: white box for visibility */
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 10; /* Ensure it's above the background */
}


.logo {
    width: 80px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
    color: #2e7d32;
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 5px;
}

.hero .text-box {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
    padding: 40px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 20px;
}

.sub-title {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);   
    font-weight: bold;
    color: black;
}

/*.hero img.logo {
            width: 120px;
            position: absolute;
            top: 20px;
            left: 20px;
        }*/

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #4B783F;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

    .cta-button:hover {
        background-color: #8AE172;
    }

.roles, .features, .testimonials, .demo-cta {
    background-color: white;
    margin-bottom: 20px;
    padding: 40px 0;
}


h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.role-cards, .testimonial-grid, .feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.role-card, .feature-card {
    background: #FAFAD2;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 280px;
    text-align: center;
}

    .feature-card img {
        width: 100px;
        height: 100px;
        margin-bottom: 10px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-card p {
        margin: 5px 0;
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
    }

    .feature-card span {
        display: block;
        font-size: 0.9rem;
        color: #555;
        margin-top: 5px;
    }

.testimonial-grid blockquote {
    background: #FAFAD2;
    padding: 20px;
    border-left: 5px solid #2C3E50;
    border-radius: 5px;
    font-style: italic;
    width: 45%;
}

.testimonial-grid footer {
    margin-top: 10px;
    font-weight: bold;
    color: #555;
}

.demo-cta {
    background-color: #E5E8E8;
    text-align: center;
}

.site-footer {
    background: #4B783F;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.legal-section {
    background-color: #fff;
    padding: 60px 0;
    font-size: 1rem;
    line-height: 1.6;
}

    .legal-section h2 {
        font-size: 2rem;
        color: #2e7d32;
        text-align: center;
        margin-bottom: 30px;
    }

    .legal-section h3 {
        margin-top: 30px;
        font-size: 1.3rem;
        color: #333;
    }

.contact-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fdfdfd;
    color: #333;
    padding: 60px 0;
}

.contact-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

    .contact-header h1 {
        font-size: 2.5rem;
        color: #2e7d32;
    }

.contact-form {
    background: #FAFAD2;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-group {
    margin-bottom: 20px;
}

    .contact-form-group label {
        display: block;
        font-weight: bold;
        margin-bottom: 6px;
    }

    .contact-form-group input,
    .contact-form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 1rem;
    }

    .contact-form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

.contact-form-submit {
    text-align: center;
}

    .contact-form-submit button {
        background-color: #4B783F;
        color: white;
        padding: 12px 24px;
        border: none;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
    }

        .contact-form-submit button:hover {
            background-color: #8AE172;
        }

.form-success-message {
    background-color: #e6ffed;
    border: 1px solid #28a745;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}


.download-section {
    background-color: #f5f5f5;
    text-align: center;
    padding: 60px 20px;
}

    .download-section h2 {
        font-size: 2rem;
        margin-bottom: 10px;
        color: #2e7d32;
    }

    .download-section p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

.download-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

    .download-icons img {
        height: 60px;
        transition: transform 0.2s ease;
    }

        .download-icons img:hover {
            transform: scale(1.1);
        }


.app-badges img {
    height: 60px; /* Fixed height */
    object-fit: contain; /* Keeps aspect ratio inside height */
    padding: 0 10px; /* Optional spacing */
}

.store-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

    .store-badges img {
        height: 60px; /* Uniform height */
        width: auto; /* Maintain aspect ratio */
        object-fit: contain;
        transition: transform 0.2s ease;
    }

    .store-badges img:hover {
        transform: scale(1.05); /* Slight hover effect */
    }

    /* Optional tweak: slightly scale Google badge if still appears smaller */
    .store-badges img[alt="Google Play"] {
        transform: scale(1.05);
    }

        .store-badges img[alt="Google Play"]:hover {
            transform: scale(1.15);
        }

.custom-dropdown {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    width: 100%;
    max-width: 400px;
    appearance: none; /* Removes native arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg fill="%23333" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.custom-input {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    box-sizing: border-box;
}

/* === Pricing Table === */
/* === Pricing Table Section === */
.pricing-table-container {
    font-family: 'Segoe UI', sans-serif;
    background: #f9f9f9;
    padding: 40px;
}

    .pricing-table-container h1 {
        text-align: center;
        color: #4B783F;
        margin-bottom: 20px;
    }

.pricing-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-top: -10px;
    margin-bottom: 30px;
}

.pricing-table {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

    .pricing-table th,
    .pricing-table td {
        padding: 16px 20px;
        text-align: center;
        border-bottom: 1px solid #e0e0e0;
    }

    .pricing-table th {
        background-color: forestgreen;
        color: white;
    }

    .pricing-table td:nth-child(4) {
        font-weight: bold;
        color: forestgreen;
    }

    .pricing-table tr:hover {
        background-color: #f1f1f1;
    }

    .pricing-table td .note {
        font-size: 0.85em;
        color: #555;
    }

.pricing-footnote {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
    text-align: center;
}

/* Responsive Behavior */
@media (max-width: 600px) {
    .pricing-table,
    .pricing-table thead,
    .pricing-table tbody,
    .pricing-table th,
    .pricing-table td,
    .pricing-table tr {
        display: block;
    }

        .pricing-table thead {
            display: none;
        }

        .pricing-table tr {
            margin-bottom: 20px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 6px;
            padding: 12px;
        }

        .pricing-table td {
            padding: 10px 15px;
            text-align: right;
            position: relative;
        }

            .pricing-table td::before {
                content: attr(data-label);
                position: absolute;
                left: 15px;
                top: 10px;
                font-weight: bold;
                color: #333;
                text-align: left;
            }
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #2e7d32;
    margin-left: auto;
}

/* Responsive Nav Toggle */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    #main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 5%;
        background: white;
        width: 90%;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        border-radius: 8px;
        padding: 10px 0;
        z-index: 999;
    }

        #main-nav.show {
            display: flex;
        }

        #main-nav a {
            margin: 10px 20px;
            padding: 10px;
            text-align: right;
            border-bottom: 1px solid #eee;
        }

            #main-nav a:last-child {
                border-bottom: none;
            }
}


@media (max-width: 600px) {
    .contact-header h1 {
        font-size: 2rem;
    }
}


@media (max-width: 768px) {
    .testimonial-grid blockquote, .role-card, .feature-card {
        width: 100%;
    }
}
