/* General Styles */
body {
    font-family: Verdana, sans-serif;
    text-align: center;
    background-color: rgb(34, 31, 32);
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
    touch-action: manipulation;

}

html {
    scroll-behavior: smooth;
}
.logo {
    max-width: 700px;
    width: 100%;
    margin: 20px auto;
    display: block;
    text-align: center;
}


.container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
}

select, button {
    padding: 10px;
    margin: 5px;
    font-size: 16px;
}
label, h2 {
    color: white;
}


.hamburger{
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    padding: 12px 0px;
    background-color: #88B04B;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px auto;
    display: block;
    width: 75%;
}



#menu-toggle {
    display: none;
    transition: all 0.3s ease;
}
.multi-level {
    display: none; 
    background-color: #88B04B;
    width: 75%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    height: 0;
    overflow: hidden;
}

#menu-toggle:checked ~ .multi-level {
    display: block;
    height: auto;
    padding: 0.5em 0;
}

.item ul {
    display: none;
    background-color: #7DA453;
    margin: 0.5em 0;
    box-sizing: border-box;
    max-width: 100%;
    overflow-wrap: break-word;
    overflow: hidden;
    width: 50px;
    
}

.item input:checked ~ ul {
    display: block;
}

input[type="checkbox"] {
    display: none;
}

.arrow {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    transition: transform 0.2s ease;
    padding: 10px 10px 15px 10px;
}

.item input + .arrow {
    transform: rotate(-90deg);
    
    padding-left: 14px;
}

.item input:checked + .arrow {
    transform: rotate(0deg);
    padding: 10px 10px 15px 10px;
}
.nav{
    margin: 0;
    padding: 0;
}
.nav ul,
.nav li,
label {
    margin: 0;
    padding: 10px 0;
    list-style: none;
    color: #E6FFE6;
    width: 100%;
    text-align: center;
    font-size: 20px;
}
.nav li{
    padding: 0;
}
.nav ul {
    padding: 0;
    margin: 0;
}


.nav li a, .nav ul a {
    text-decoration: none;
    color: #E6FFE6;
    display: block;
    padding: 10px 0;
}

label:hover,
.nav li a:hover {
    cursor: pointer;
    color: #ffffff;
}
.sub-item ul{
    background-color: #5C913B;
}

/* Product List */
#product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    max-width: 400px;
    overflow: hidden;
    font-size: 15px;
}

.product ul{
    padding: 0;
    margin-left: 10px;
}

.product img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    background-color: #f0f0f0;
}


.product .details {
    display: none;
    margin-top: 10px;
    text-align: left;
}

.product.expanded .details {
    display: block;
}

.product .subimages {

    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.product.expanded .subimages {
    display: flex;
}

.product .subimages img {
    width: 120px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.show-more {
    background-color: rgb(105, 145, 60);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.show-more:hover {
    background-color: rgb(62, 137, 77);
}

.product h3 {
    font-size: 20px;
    margin: 10px 0;
}
/* Category Divider */
.category-divider {
    margin: 0;
    margin-top: 1vw;
    padding: 10px 0;
    border-top: 2px solid #ddd;
    text-align: left;
    grid-column: 1 / -1;
    width: 100%;
}

.category-divider h2 {
    margin: 10px 0;
    font-size: 20px;
    color: white;
    text-align: center;
}



.image-text {
    position: relative;
    display: block;
    width: 100%;  
    height: 50vw;  
    overflow: hidden; 
    margin-top: 1em;
}
.image-text img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}


.trapezoid {
    position: absolute;
    left: 25%; 
    bottom: 0; 
    transform: translateX(-50%);
    width: 50%; 
    height: 100%;
    background: rgb(76, 70, 72);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%); 
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 10px; 
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: rgb(76, 70, 72) 1px solid;
}


.trapezoid .text-container {
    width: 75%; 
    height: 100%;
    max-width: 800px; 
    margin: 0 4vw;
    overflow-wrap: break-word;
    color: white; 
    box-sizing: border-box; 
}

.trapezoid .text-container h2 {
    font-size: 2.4vw; 
    margin-bottom: 3vw;
}

.trapezoid .text-container p {
    font-size: 1.4vw; 
    line-height: 1.5;
    margin: 10px 0;
    text-align: justify; 
}

.card{
    background-color: #616161;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1em;
    text-align: center;
        
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));;
    justify-content: center;
}   
.image-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 5px;
    list-style: none;
}

.image-container img {
    width: 100%;
    max-width: 120px;
    height: auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    display: block;
    background: #fff;
}


iframe {
    max-width: 100%;
    height: auto;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    margin: 6px 0;
}
.contact-row .small-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
}
.contact-row span {
    color: #fff;
    font-size: 16px;
    text-align: left;
    word-break: break-word;
}

.highlight-category {
    background-color: #88B04B;
    color: white !important;
    border-radius: 5px;
    transition: background-color 0.3s;
}

/* Tablet View */
@media (max-width: 1024px) {
    #product-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #product-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
    }

    .product {
        padding: 10px;
        max-width: 250px;
    }
   .product h3{
        font-size: 14px;
   }
    .product p, .product ul {
        font-size: 12px;
    }
 .nav ul, .nav li, label {
        line-height: 30px;
        font-size: 16px;
    }
    .nav li a, .nav ul a {
        font-size: 16px;
    }
    label{
        font-size: 16px;
    }
    footer p {
        font-size: 14px;
        margin: 0;
    }
    h2 {
        font-size: 18px;
        margin-top: 0;
    }
    label, select, button {
        font-size: 16px;
    }

    .show-more {
        padding: 5px 10px;
        font-size: 12px;
    }
    .image-container {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        margin: 0;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    body {
        text-align: center;
        padding: 10px;
    }

    .container {
        width: 100%;
        padding: 10px;
        max-width: 700px;
    }

    .logo {
        max-width: 300px;
        width: 100%;
        margin: 10px auto;
    }

    h2 {
        font-size: 14px
    }

    label, select, button {
        font-size: 14px;
    }

    label, select {
        width: 80%;
        margin: 5px 0;
    }

    #product-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .product {
        padding: 10px;
        max-width: 250px;
    }

    .product p, .product ul {
        font-size: 13px;
    }

    .product h3 {
        font-size: 16px;
    }

    .show-more {
        padding: 5px 10px;
        font-size: 12px;
    }
   

    .nav ul, .nav li, label {
        line-height: 30px;
        font-size: 16px;
    }
    .hamburger{
        font-size: 15px;
        padding: 10px 0px;
        margin: 10px auto;
    }

    .image-container {
        grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
        margin: 0 auto;
    }
    .image-container img {
        width: 100%;
    }
    .trapezoid .text-container p{
        font-size: 1.35vw;
    }
    .contact-row span {
        font-size: 14px;
    }
    .contact-row .small-icon {
        width: 18px;
        height: 18px;
    }

}

@media (max-width: 565px) {
    .hamburger{
        padding: 5px 0;
    }
    .product {
        padding: 10px;
        max-width: 150px;
    }
    .product p, .product ul {
        font-size: 12px;
    }
    .product h3 {
        font-size: 14px;
    }
    .show-more {
        padding: 5px 10px;
        font-size: 12px;
    }
    #product-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
    }
    .product {
        padding: 10px;
        max-width: 200px;
    }
    .product p, .product ul {
        font-size: 12px;
    }

    .image-container img {
        width: 100%;
    }

    .image-container {
        grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
        margin: 0;
    }
    .image-container img {
        width: 100%;
    }
    .grid-container{
        grid-template-columns: repeat(auto-fit, minmax(150px, 2fr));
    }
    .card{
        font-size: 12px;
    }
    .trapezoid .text-container p{
        font-size: 1.3vw;
    }
}
/* Very Small Phones */
@media (max-width: 480px) {
    h2 {
        font-size: 14px;
        margin-top: 0;
    }

    label, select, button {
        font-size: 12px;
    }

    footer p {
        font-size: 12px;
        margin: 0;
    }

    .product {
        padding: 5px;
        max-width: 250px;
        margin-left: 0;
    }
    .container {
        width: 100%;
        padding: 10px;
        max-width: 500px;
    }
    #product-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .product ul{
        margin-left: 12px;
    }
    .product li {
        margin-left: 6px;
    }

    .nav ul, .nav li, label {
        font-size: 15px;
        padding: 0;
    }
    .hamburger{
        font-size: 15px;
        width: 100%;
        padding:0;
    }

    .container{
        padding: 0;
        margin: 0;
    }
    .image-text{
        height: 80vw;
    }
    .trapezoid .text-container h2{
        margin: 0;
    }
    .trapezoid .text-container p{
        margin: 5px 0;
        font-size: 1.76vw;
    }
    .trapezoid .text-container{
        margin-left: 10px;
    }
    .image-container {
        grid-template-columns: repeat(auto-fit, minmax(80px, 4fr));
        margin: 0;
        padding: 0px;
    }
    .image-container img {
        width: 100%;
        height: auto;
    }
    .grid-container{
        grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
    }
    .grid-container h2{
        margin-bottom: 5px;
    }
    iframe {
        max-width: 100%;
        height: auto;
    }
    .arrow {
        width: 13px;
        height: 13px;
    }
    .multi-level {
        width: 100%;
    }

}

/* Card Slider Styles */
.slider-section {
    background-color: rgb(40, 37, 38);
    padding: 40px 20px;
    margin: 40px auto;
    border-radius: 10px;
    width: 100%;
    max-width: 1200px;
}

.slider-section h2 {
    text-align: center;
    color: white;
    font-size: 28px;
    margin-bottom: 30px;
}

.slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 10px;
}

.slider-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 10px;
    will-change: transform;
}

.slide-card {
    width: 300px;
    height: 450px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.slide-card img {
    width: 100%;
    max-height: 325px;
    object-fit: cover;
    pointer-events: none;
    margin-top: 1em;
}

.card-content {
    padding: 20px;
    text-align: center;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    color: rgb(34, 31, 32);
    font-size: 20px;
    margin: 0 0 10px 0;
    margin-top: auto;
    margin-bottom: 0;
}


.card-btn {
    background-color: rgb(105, 145, 60);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    margin-top: 5px;
}

.card-btn:hover {
    background-color: rgb(62, 137, 77);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 30px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #88B04B;
}

/* Responsive design for slider */
@media (max-width: 768px) {
    .slider-section {
        padding: 20px 10px;
        margin: 20px auto;
        width: 95%;
    }
    
    .slider-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .slide-card {
        max-width: 250px;
        height: 250px;
    }
    
    .slide-card img {
        max-height: 150px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .card-content h3 {
        font-size: 18px;
    }
    
    .card-content p {
        font-size: 13px;
    }
    
    .slider-btn {
        padding: 10px 15px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .slider-section {
        width: 90%;
        
    }
    .slide-card {
        width: 180px;
        height:300px;
    }
    .slider-track{
        gap: 10px;

    }
    .slide-card img {
        max-height: 200px;
    }
    
    .card-content {
        padding: 10px;
    }
    
    .card-content h3 {
        font-size: 16px;
    }
    
    .card-content p {
        font-size: 12px;
    }
    
    .card-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .slider-btn {
        padding: 8px 12px;
        font-size: 24px;
    }
}

