﻿
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #f9f9f9;
    color: #333;
    direction: ltr;
    text-align: left;
    margin: 0;
    padding: 0;
}

.menubar {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #1e325f, #00894d);
    padding: 2rem 1rem;
    color: white;
    width: 100%;
    z-index: 1;
    overflow: visible !important;
    display: block !important;
    visibility: visible !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.menucard {
    max-width: 400px;
    margin: auto;
    background: rgba(0,0,0,0.5);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

    .menucard .card-header h1 {
        font-weight: 900;
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #00d475;
    }

    .menucard img.barcode {
        max-width: 100%;
        margin-bottom: 1rem;
        border-radius: 8px;
    }

.input-group {
    display: flex;
    gap: 0.5rem;
}

    .input-group input[type="search"] {
        border-radius: 50px;
        padding: 0.75rem 1.25rem;
        border: none;
        flex-grow: 1;
        font-size: 1rem;
        outline-offset: 2px;
    }

    .input-group button {
        border-radius: 50px;
        padding: 0.75rem 1.5rem;
        background-color: #00d475;
        border: none;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0,0,0,0.15);
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
        user-select: none;
        color: white;
    }

        .input-group button:hover,
        .input-group button:focus {
            background-color: #007a3d;
            outline: none;
            box-shadow: 0 0 8px #00d475;
        }

/* About Section */
#about {
    background: linear-gradient(135deg, #f0f4f8, #e0f7f1);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 1000px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.about-content {
    flex: 1;
}

    .about-content h2 {
        font-size: 2rem;
        color: #00894d;
        margin-bottom: 1rem;
        font-weight: 900;
    }

    .about-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #333;
        margin-bottom: 1rem;
    }

.cl {
    color: black;
}

/* Cards section */
.card {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    }

    .card img.icimg {
        width: 100%;
        height: auto;
        border-bottom: 1px solid #ddd;
        border-radius: 12px 12px 0 0;
        transition: transform 0.3s ease;
        object-fit: cover;
    }

    .card:hover img.icimg {
        transform: scale(1.05);
    }

    .card .card-body {
        padding: 1rem 1.25rem;
        background: #fff;
        text-align: center;
    }

        .card .card-body h5.cardtitle {
            font-weight: 700;
            color: #00894d;
            margin: 0;
        }

.cards-container {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 1100px;
    margin: 0 auto 3rem auto;
    padding: 0 1rem;
}

/* Client Section */
#client {
    background: #00894d;
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    border-radius: 15px;
    margin: 3rem 0;
}

    #client h1 {
        font-weight: 900;
        margin-bottom: 1rem;
        font-size: 2.5rem;
    }

    #client p {
        font-size: 1.2rem;
        max-width: 600px;
        margin: auto;
        margin-bottom: 2rem;
    }

    #client button.btn-primary {
        background-color: #ffc107;
        border: none;
        padding: 0.75rem 2rem;
        font-size: 1.2rem;
        font-weight: 700;
        border-radius: 50px;
        color: #333;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.15);
        user-select: none;
    }

        #client button.btn-primary:hover,
        #client button.btn-primary:focus {
            background-color: #e0a800;
            color: #000;
            outline: none;
            box-shadow: 0 0 8px #ffc107;
        }

/* FAQ Section */
#faq {
    background: #f8f9fa;
    padding: 3rem 1rem;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    border-radius: 15px;
}

    #faq h2 {
        font-weight: 900;
        margin-bottom: 2rem;
    }

#contact {
    background: #f5f5f5;
    background-image: url('images/pathback.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.55);
    padding: 3rem 1rem;
    border-radius: 20px;
    max-width: 900px;
    margin: 3rem auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#lastsec {
    background: #f5f5f5;
    background-image: url('images/pathlastback.jfif');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    max-width: 100%;
    height: 300px;
    margin-bottom: 50px;
    background-color: rgba(0, 0, 0, 0.55);
}

#contact .form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 600px;
    margin: auto;
    padding: 2rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}

#contact .title {
    font-size: 2rem;
    font-weight: bold;
    color: #00894d;
    text-align: center;
    margin-bottom: 1rem;
}

#contact input.input,
#contact textarea {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

    #contact input.input:focus,
    #contact textarea:focus {
        border-color: #00894d;
        box-shadow: 0 0 5px rgba(0, 137, 77, 0.3);
    }

#contact button {
    background-color: #00894d;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    align-self: center;
}

    #contact button:hover {
        background-color: #006f3a;
        box-shadow: 0 4px 10px rgba(0, 137, 77, 0.3);
    }

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 5%;
    right: auto;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px 30px;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1100;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

    .whatsapp-btn:hover,
    .whatsapp-btn:focus {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7);
        transform: scale(1.1);
        outline: none;
    }

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    transition: transform 0.3s ease;
}

.accordion-button.collapsed .arrow {
    transform: rotate(0deg);
}

.accordion-button:not(.collapsed) .arrow {
    transform: rotate(90deg);
}

button.btn.btn-primary {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 0;
}
