﻿
@import url('https://fonts.googleapis.com/css2?family=Cooper+Hewitt&family=Canva+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cooper+Hewitt&display=swap');




/*//// Start UP Page (HOME PAGE)*/

            .hero-banner {
                position: relative;
                background-image: url('Images/new.png');
                background-size: cover;
                background-position: center 35%; /* 👈 Moves image downward */
                background-repeat: no-repeat;
                color: #0A400C;
                /*font-family: 'Open Sans', sans-serif;*/
                width: 100%;
                height: 100vh;
                display: flex;
                align-items: center;
                margin-top: 0;
                padding-top: 0;
            }

            .hero-container {
                /*  max-width: 1140px;*/
                margin: 0 auto;
                /*padding: 0 15px;*/
                width: 100%;
            }

            .hero-content {
                z-index: 2;
                font-family: 'Cooper Hewitt', sans-serif;
                margin-top: 30%;
                margin-left: 10%;
            }

            .hero-line1,
            .hero-line2 {
                font-size: clamp(32px, 5vw, 75px);
                font-weight: 700;
                margin: 0;
                text-transform: uppercase;
            }

            /* Animation for hero lines */
            @keyframes fadeSlideIn {
                0% {
                    opacity: 0;
                    transform: translateY(50px);
                }

                100% {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .hero-line1,
            .hero-line2 {
                animation: fadeSlideIn 1s ease-out forwards;
                opacity: 0; /* Hidden until animation plays */
            }

            /* Optional styling to keep your colors */
            .hero-line1 {
                color: #005e00;
            }

            .hero-line2 {
                color: black;
                margin-top: 10px;
            }

            .hero-buttons {
                display: flex;
                justify-content: center;
                gap: 20px;
                flex-wrap: wrap;
            }

            .hero-btn-outline,
            .hero-btn-filled {
                padding: 12px 25px;
                font-size: 16px;
                font-weight: bold;
                border-radius: 5px;
                text-decoration: none;
                transition: all 0.3s ease;
                border: 2px solid #1e5128;
            }

            .hero-btn-outline {
                background: white;
                color: #1e5128;
            }

                .hero-btn-outline:hover {
                    background: #005e00;
                    color: white;
                }

            .hero-btn-filled {
                background: #1e5128;
                color: white;
            }

                .hero-btn-filled:hover {
                    background: #005e00;
                    color: white;
                }

/*//// About Us Section (ABOUT US PAGE)*/

            .about-section {
                position: relative;
                background-color: #f5f9f2;
                color: #0A400C;
                display: flex;
                align-items: center;
                padding: 40px 0;
                height: auto; /* ✅ no more fixed 100vh */
                margin-top: -10px;
            }
            .about-section::before {
                    content: "";
                    position: absolute;
                    inset: 0;
                    /*    background: url('Images/aboutpng.png') no-repeat center center;*/
                    background-size: cover;
                    opacity: 0.2; /* ✅ transparent overlay */
                    z-index: 1;
                }


            .overlay-content {
                position: relative;
                z-index: 2;
                max-width: 1140px; /* ✅ similar to Bootstrap's container width */
                margin: 0 auto;
                padding-left: 15px;
                padding-right: 15px;
                text-align: left; /* ✅ left-align content */
                overflow: visible;
            }

            .about-title {
                font-size: 4rem;
                font-family: 'Open Sans', sans-serif;
                font-weight: 700;
                margin-bottom: 40px;
                margin-top: 20px; /* ✅ Move it higher */
                color: #0A400C;
            }

            .about-description {
                font-size: 1.4rem;
                font-family: 'Open Sans', sans-serif;
                line-height: 1.5;
                text-align: justify; /* 👈 aligns left and right edges neatly */
                color: black;
                margin-bottom: 60px; /* 👈 spacing between paragraphs */
                /*  background-color: white;*/
                /* background-color: #f5f9f2;*/
                padding: 0px;
                /* border-radius: 1px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
                margin-top: 50px; /* Optional: pulls it closer to the title */
            }

            /* ✅ Half underline on "About" */
            .underline-half {
                /*border-bottom: 4px solid green;*/
                border-bottom: 5px solid #1e502d;
                padding-bottom: 5px;
            }


/*//// SLIDESHOW PICTURE (ANIMATION PICTURE PAGE)*/

            .three-image-box-section {
                background-color: #DBE4C9;
                padding: 40px 0;
                overflow: hidden;
            }

            .three-image-slider {
                position: relative;
                width: 100%;
                overflow: hidden;
            }

            .three-image-track {
                display: flex;
                gap: 30px;
                width: max-content; /* ensures it expands to fit all children */
            }

            .image-box {
                flex: 0 0 auto;
                width: 300px;
                height: 300px;
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: white;
                border: 30px solid white;
            }

           .image-box img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }


            .arrow {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                background: rgba(0,0,0,0.5);
                color: white;
                border: none;
                font-size: 2rem;
                padding: 10px;
                cursor: pointer;
                z-index: 10;
            }

                .arrow.left {
                    left: 10px;
                }

                .arrow.right {
                    right: 10px;
                }

                .arrow:hover {
                    background: rgba(0,0,0,0.8);
                }


/*>>> CORPORATE VISION <<<*/

            .vision-section {
                background-color: #ffde59;
                padding: 20px 0; /* Full-width background, no side padding here */
            }

            .vision-inner {
                display: flex;
                flex-wrap: wrap;
                max-width: 1140px;
                margin: 0 auto;
                padding: 0 0px; /* Matches About Us side padding */
                align-items: center;
                justify-content: space-between;
                gap: 30px;
            }

            .vision-left {
                flex: 1 1 40%;
                font-family: 'Cooper Hewitt', sans-serif;
                /* font-size: clamp(50px, 6vw, 90px);*/ /* ⬅️ updated for large, responsive size */
                font-size: 70px; /* ⬅️ updated for large, responsive size */
                color: white;
                text-transform: uppercase;
                text-align: center;
                font-weight: bolder;
                line-height: 1;
            }

            .vision-right {
                flex: 1 1 55%;
                font-family: 'Open Sans', sans-serif; /* Replacing Canva Sans for compatibility */
                color: black;
                font-size: 1.4rem;
                text-align: justify;
                font-style: italic;
                padding: 20px;
                /* background-color: #fff;
                        border-radius: 10px;*/
            }


/*////MEET the TEAM PAGE////*/



            .team-header {
                text-align: center;
                font-size: 50px;
                font-weight: bold;
                position: relative;
                margin-bottom: 50px;
                color:gold;
            }

                .team-header span {
                    display: block;
                    width: 80px;
                    height: 3px;
                    background: #A6B28B;
                    /*background: #A6B28B;*/
                    margin: 10px auto 0;
                    border-radius: 2px;
                }

            .team-container {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
            }

            .team-member {
                text-align: center;
                width: 180px;
            }

            /*.profile-circle {
                width: 100px;
                height: 100px;
                background-color: #f0f0f0;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 18px;
                font-weight: bold;
                color: darkolivegreen;
                margin: 0 auto 15px;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            }*/

            .team-member h3 {
                font-size: 12px;
                font-weight: bold;
                margin-bottom: 5px;
                color: gold;
                /*color: #333;*/
            }

            .team-member p {
                font-size: 10px;
                color:lightgray;
               /* color: #777;*/
            }

            /* Toggle Buttons - Visible on all devices */
            .see-more-btn, .see-less-btn {
                display: block;
                text-align: center;
                padding: 12px 24px;
                margin: 0px auto;
                background: white;
                color: #0A400C;
                border-radius: 25px;
                cursor: pointer;
                font-weight: bold;
                font-size: 14px;
                width: fit-content;
                transition: all 0.3s ease;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            }

            /* Hide members initially on all devices */
            .hidden-member {
                display: none;
            }

            .see-more-btn:hover, .see-less-btn:hover {
                background: gold;
                transform: translateY(-2px);
                box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            }
@media (min-width: 1024px) {
    .team-container {
        margin: 40px auto; /* default roomy margin */
        max-width: 1200px; /* keeps it nicely centered */
    }
}
/*\\\\ OUR PROCDUCT (product page)\\\*/

            .product-fullpage {
                min-height: 100vh; /* Full viewport height */
                background-color: #f5f9f2;
                text-align: center;
                display: flex;
                flex-direction: column;
                justify-content: center; /* Vertically center content */
                padding: 60px 20px; /* Top/bottom spacing */
            }



            .products-header {
                font-size: 4rem;
                font-family: 'Anton', sans-serif;
                font-weight: 900;
                color: #1e5128;
                margin-bottom: 10px;
                letter-spacing: 4px;

            }

            .products-subtitle {
                font-family: 'Open Sans', sans-serif;
                font-size: 1.2rem;
                color: #8AA624;
                margin-bottom: 40px;
                font-style: italic;
            }
/*\\\\ OUR PROCDUCT ( IMAGES PRODUCT )\\\*/

            .plant-gallery {
                display: flex;
                justify-content: center;
                gap: 30px;
                flex-wrap: wrap;
                padding: 20px;
            }

            .plant-card {
                background: white;
                width: 240px;
                padding: 60px 0 0 0; /* remove bottom padding */
                text-align: center;
                box-shadow: 0 6px 20px rgba(30, 81, 40, 0.1);
            /*    transition: transform 0.3s ease, box-shadow 0.3s ease;*/
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                height: auto;
            }

                .plant-card:hover {
                    transform: translateY(-8px) scale(1.03);
                    box-shadow: 0 15px 35px rgba(30, 81, 40, 0.2);
                }

                .plant-card img {
                    width: 100%;
                    height: 180px;
                    object-fit: contain;
                    /*   border-radius: 12px;*/
                    margin-bottom: 25px;
                }




            .plant-desc-box {
                display: block;
                background-color: #144123;
                /* background-color: #1e5128;*/
                color: white;
                font-weight: bold;
                padding: 8px 0;
                width: 100%;
                font-size: 25px;
                text-align: center;
                text-decoration: none;
                transition: background 0.3s ease;
                margin-top: 15px;
                margin-bottom: 0; /* <- ensure this is 0 */
            }

                .plant-desc-box:hover {
                    background-color: #1e5128;
                    /* background-color: #144123;*/
                    color: #fff;
                }

            .plant-desc i {
                margin-left: 8px;
            }

/*>>> product <<<*/
            .plantsite-section {
                background-image: url('Images/FERTI.jpg');
                background-repeat: no-repeat;
                background-size: COVER; /* Ensures the entire image fits */
                background-position: center;
                background-color: #f5f5f5; /* Fallback background color */
                position: relative;
                padding: 0px 0px;
                text-align: center;
                color: white;
                font-family: 'Open Sans', sans-serif;
                min-height: 200px; /* You can increase this if image looks squished */
              
            }

                /* Overlay for transparency */
                .plantsite-section::before {
                    content: "";
                    position: absolute;
                    inset: 0;
                    background-color: rgba(0, 0, 0, 0.4); /* semi-transparent black overlay */
                    z-index: 1;
                }

            /* Text wrapper (above overlay) */
            .plantsite-text {
                position: relative;
                z-index: 2;
                max-width: 800px;
                margin: 0 auto;
                padding: 20px;
            }
/*/////*CONTACT US*/
            .contact-header {
                text-align: center;
                font-size: 60px;
                font-weight: bold;
                margin-bottom: 40px;
                position: relative;
                display: inline-block;
                left: 50%;
                transform: translateX(-50%);
            }

                .contact-header span {
                    display: block;
                    height: 3px;
                    background-color: black;
                    width: 80px;
                    margin: 10px auto 0 auto;
                    border-radius: 2px;
                }

            #contact {
                padding: 60px 0;
                background-color: #DBE4C9;
                color: black;
                font-family: Arial, Helvetica, sans-serif;
            }


    /* Row */
                #contact .row {
                    display: flex;
                    flex-wrap: wrap;
                    margin-bottom: 50px;
                    justify-content: flex-end;
                }

            /* Contact Box */
            .contact-box {
                margin: 0;
                padding: 0 10px;
            }

            /* Title */
            .contact-title {
                color: black;
                font-weight: bold;
                letter-spacing: 1px;
                margin-bottom: 8px;
                font-size: 20px;
            }

            /* Details */
            .contact-details {
                font-size: 15px;
                line-height: 1.5;
            }

                .contact-details p {
                    margin: 8px 0;
                }

                    .contact-details p:first-child {
                        margin-top: 3px;
                    }

            /* Links */
            .map-link,
            .email-link {
                color: black;
                text-decoration: underline;
            }

            .map-link {
                font-style: italic;
            }

            /* Facebook Link */
            .facebook-link {
                margin-top: 5px;
                display: flex;
                align-items: center;
            }

                .facebook-link img {
                    width: 18px;
                    height: 18px;
                    margin-right: 6px;
                }

                .facebook-link a {
                    color: black;
                    font-size: 13px;
                    font-weight: bold;
                    text-decoration: none;
                }

            /* Footer */
            .contact-footer {
                text-align: center;
                border-top: 1px solid black;
                padding-top: 20px;
                font-size: 13px;
            }

  

/* Mobile and Tablet Styles */


@media (max-width: 768px) {
    /* --- Team --- */
    .team-header {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .team-container {
        gap: 15px;
        justify-content: center;
    }
    /*
    .team-member {
        width: calc(50% - 15px);
        max-width: 140px;
        min-width: 120px;
    }

    .profile-circle {
        width: 80px;
        height: 80px;
        font-size: 16px;
    }*/

    .team-member h3 {
        font-size: 11px;
    }

    .team-member p {
        font-size: 9px;
    }

    /* --- Hero --- */
    .hero-banner {
        height: 50vh;
        background-size: cover;
    }

    .hero-line1,
    .hero-line2 {
        font-size: clamp(24px, 4vw, 50px);
        font-weight: 700;
        margin: 0;
        text-transform: uppercase;
    }

    /* --- About --- */
    .about-title {
        font-size: 3rem;
        text-align: center;
    }

    .about-description {
        font-size: 1rem;
        line-height: 1.5;
        text-align: justify;
    }

    .about-description-box {
        padding: 0 15px;
    }

    /* --- Facebook link --- */
    .facebook-link {
        margin-bottom: 40px !important;
    }

    /*>>> CORPORATE VISION <<<*/


    .vision-inner {
        gap: 10px;
    }

    .vision-left {
        font-size: 40px; /* ⬅️ updated for large, responsive size */
        color: white;
        text-align: center;
        font-weight: bolder;
        line-height: 1;
    }

    .vision-right {
        /* flex: 1 1 55%;*/

        color: black;
        font-size: 1.1rem;
        text-align: justify;
        font-style: italic;
        padding: 20px;
        /* background-color: #fff;
                        border-radius: 10px;*/
    }




    .products-header {
        font-size: 3rem;
        margin-bottom: 10px;
        letter-spacing: 2px;
    }

    .products-subtitle {
        font-size: 0.7rem;
        color: #8AA624;
        margin-bottom: 20px;
        font-style: italic;
    }

    .plant-gallery {
        gap: 25px; /* smaller gaps for tight screens */
        padding: 10px;
    }

    .plant-card {
        flex: 0 0 calc(50% - 15px); /* two cards per row */
        max-width: calc(50% - 15px);
        padding: 20px 0 0 0; /* less top padding */
        width: 100%; /* ensure full use of space */
        box-sizing: border-box;
    }

        .plant-card img {
            height: 140px; /* smaller images for mobile */
            margin-bottom: 15px;
        }

    .plant-desc-box {
        font-size: 18px; /* scale down text for small screens */
        padding: 6px 0;
    }
}

/* Very small mobile screens */
@media (max-width: 480px) {
  /*  .team-member {
        width: calc(50% - 10px);
        max-width: 120px;
        min-width: 100px;
    }*/

 /*   .profile-circle {
        width: 70px;
        height: 70px;
        font-size: 14px;
    }*/

    .team-member h3 {
        font-size: 10px;
    }

    .team-member p {
        font-size: 8px;
    }
   /* .vision-left {
        font-size: 40px;
        text-align: justify;
    }*/

 

   
}













/*ANIMATIONNNN*/

/* Initial hidden state */
.about-title,
.about-description {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Triggered animation state */
.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optional: stagger for nicer effect */
.about-description {
    transition-delay: 0.3s;
}


/* Initial hidden state for Corporate Vision */
.vision-left,
.vision-right {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Visible when animated */
.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optional stagger for smoother entry */
.vision-right {
    transition-delay: 0.3s;
}
/* Initial hidden state for product section */
.products-header,
.products-subtitle,
.plant-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* When visible */
.animate-visible {
    opacity: 1;
    transform: translateY(0);
}






/* CONTACT US header animation */
.contact-header {
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0; /* hidden before animation */
    transform: translateX(-50%) translateY(30px); /* start slightly below */
    transition: all 0.8s ease-out;
}

    .contact-header span {
        display: block;
        height: 3px;
        background-color: black;
        width: 80px;
        margin: 10px auto 0 auto;
        border-radius: 2px;
    }

    /* When visible */
    .contact-header.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

.contact-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-box {
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

    .contact-box.show {
        opacity: 1;
        transform: translateY(0);
    }

/* Initial hidden state for animations */
.team-header,
.team-member {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Animate into view */
.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for team members */
.team-member:nth-child(1).animate-visible {
    transition-delay: 0.2s;
}

.team-member:nth-child(2).animate-visible {
    transition-delay: 0.3s;
}

.team-member:nth-child(3).animate-visible {
    transition-delay: 0.4s;
}

.team-member:nth-child(4).animate-visible {
    transition-delay: 0.5s;
}

.team-member:nth-child(5).animate-visible {
    transition-delay: 0.6s;
}

.team-member:nth-child(6).animate-visible {
    transition-delay: 0.6s;
}

.team-member:nth-child(7).animate-visible {
    transition-delay: 0.8s;
}

.team-member:nth-child(8).animate-visible {
    transition-delay: 0.9s;
}

.team-member:nth-child(9).animate-visible {
    transition-delay: 1.0s;
}

.team-member:nth-child(10).animate-visible {
    transition-delay: 1.1s;
}

.team-member:nth-child(11).animate-visible {
    transition-delay: 1.2s;
}

.team-member:nth-child(12).animate-visible {
    transition-delay: 1.3s;
}

.team-member:nth-child(13).animate-visible {
    transition-delay: 1.4s;
}

.team-member:nth-child(14).animate-visible {
    transition-delay: 1.5s;
}

.team-member:nth-child(15).animate-visible {
    transition-delay: 1.6s;
}

.team-member:nth-child(16).animate-visible {
    transition-delay: 1.7s;
}

.team-member:nth-child(17).animate-visible {
    transition-delay: 1.8s;
}

.team-member:nth-child(18).animate-visible {
    transition-delay: 1.9s;


}