﻿
   
    .hero-section {
         position: relative;
         overflow: hidden;
    }

    .hero-section .btn {
        border-radius: 0.5rem;
    }


    html ,body{
        scroll-behavior: smooth;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        
    }

    .heroT_color {
        background-color: rgba(0, 80, 0, 0.4); 
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 15px;
        color: #ffffff; 
        display: inline-block;
    }

    .sub-heroT_color{
        color: #003300;
    }
    .small-text-color{
        color: white;
    }
    .order-text-color{
        color: #003300;
    }

    .heroBG_color {
        background-color: rgba(100, 200, 100, 1);
    }

    .hero {
        position: relative;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        background-image: url('/images/vibrant green forest display.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: calc(100vh - 56px);
        display: flex;
        align-items: center;
        justify-content: center;
         overflow: visible; 
        margin-top: 0;
        overflow: hidden;
        margin-top: 0;
        padding-left: 4rem;
        padding-right: 3rem;
        
        
    }

   


        .hero > .container {
            padding-top: 2rem;
        }
       
        .hero h1 {
            margin-top: 0;
        }

        .hero::before {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 1000px;
             background: linear-gradient( to bottom,rgba(255, 255, 255, 0) 0%, rgba(144, 238, 144, 0.85) 70%, #90ee90 100% ); 
             background: linear-gradient(to top, rgba(100, 200, 100, 1), rgba(28, 5, 34, 0) 50%); 
            background: linear-gradient( to top, rgba(183, 228, 199, 1) 0%, 
            rgba(183, 228, 199, 0.4) 50%, 
            rgba(183, 228, 199, 0) 100% 
            );
            
            pointer-events: none;
            z-index: 1;
        }
        
        

        .hero > .row {
            position: relative;
            z-index: 2;
        }

 

    .hidden-section {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .show-section {
        opacity: 1;
        transform: translateY(0);
    }

    
    .hidden-section > section {
        transition-delay: 0.2s;
    }
    

    .accordion-button:not(.collapsed) {
         background-color: #90ee90;
         color: #000;
    }
    .accordion-button:not(.collapsed)::after {
        filter: invert(48%) sepia(85%) saturate(480%) hue-rotate(90deg) brightness(90%);
    }
    
    .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem rgba(144, 238, 144, 0.5); 
        border-color: #90ee90;
        outline: none; 
    }
       
    .accordion-button {
        transition: background-color 0.3s ease;
    }


    .fade-bg-lightgreen {
        background: linear-gradient( to bottom, rgba(183, 228, 199, 0.45) 10%, 
        rgba(183, 228, 199, 0.45) 70%, rgba(255, 255, 255, 1) 100% );
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        position: relative;
        z-index: 1;
    }


    .bg-lightgreen {
        background-color: rgba(100, 200, 100, 1); 
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        position: relative;
        z-index: 1;
    }

.hero .btn {
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1rem;
    width: 80%;
    max-width: 280px;
    transition: all 0.3s ease;
    
}



    .hero .btn:hover {
        transform: scale(1.05);
        background: linear-gradient(90deg, #1b4332, #74c69d);
    }

 
@media (max-width: 768px) {
    .hero .col-md-6.text-center {
        position: absolute;
        top: -10px; 
        left: 50%;
        transform: translateX(-50%); 
        width: 100%;
        z-index: -1;
    }

        .hero .col-md-6.text-center img {
            width: 100%;
            height: auto;
            object-fit: contain;
            position: relative;
            top: 0; 

        }
    .hero .row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 100vh;
        margin: 0;
        padding: 0;
    }

   

}




   
   


