main h1 {
    font-size: 3rem;
    color: #ffffff;
}

main p {
    font-size: 1rem;
    color: #333;
}
.footer {
    text-align: center;
    font-size: 10px;
    color: #000000;
    padding: 10px 0;
    background-color: rgb(255, 255, 255);
}


.company-description{
    background-color:rgb(255, 255, 255);
    text-align: right;

}


.company-description h2 {
    text-align: left;
 
    overflow: hidden;
    position:relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: 5%;
}
.company-description p {
    text-align: left;
    overflow: hidden;
    position:relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: 5%;
}

.company-description .description-content {
    max-width: 900px;
    font-family:sans-serif;
    color: #333;
    line-height: 1.8;
    position:relative;
}

.company-description h2, 
.company-description p, 
.company-description a {
    opacity: 0;
    position: relative;
    font-size: 1.1rem;
    color: #000000;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
.company-description p{
    margin-right: auto;
    max-width: 90%;
}

.company-description h2 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 20px;
    font-weight:lighter;
    letter-spacing: 1.5px;
    

}

.company-description a {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.7rem;
    color: #fff;
    background-color: #376945;
    border: none;
    border-radius: 25px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation-delay: 0.4s;
    margin-right: 5%;

}

.company-description a:hover {
    background-color: rgba(40, 87, 48, 0.4);
    transform: translateY(-2px);
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.left-slide {
    animation-name: slideInLeft;
    animation-delay: 0.4s;

}

.right-slide {
    animation-name: slideInRight;
    animation-delay: 0.3s;
}
.company-description-slide2 {
    background-color: rgb(207, 200, 180);
}
.company-description-slide2 h2,
.company-description-slide2 p
{
    color: #101010;
}
.company-description-slide2 a{
    background-color: #fff;
    color: rgba(40, 87, 48, 1);
}
.company-description-slide2 a:hover{
    background-color: rgba(186, 186, 186, 0.4);
    transform: translateY(-2px);
}
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding: 0 5%;
}

.grid-box {
    background-color: rgb(2, 109, 20);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    text-align: center;
    margin-bottom: 5%;
}

.grid-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.grid-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.85;
}

.grid-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .grid-box {
        height: auto;
    }
}


.company-description-slide2 {
    background-color: rgb(255, 255, 255);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.company-description-slide2.visible {
    opacity: 1;
}

.company-description-slide2 h2,
.company-description-slide2 p {
    color: #101010;
}

.company-description-slide2 a {
    background-color: #fff;
    color: rgba(40, 87, 48, 1);
}

.company-description-slide2 a:hover {
    background-color: rgba(186, 186, 186, 0.4);
    transform: translateY(-2px);
}

.stock {
    position: relative;
    height: 400px;
    color: white;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    overflow: hidden;
    z-index: 1;
}

.stock-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.stock h2 {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    z-index: 2;
}

.stock button {
    position: absolute;
    bottom: 20px;
    right: 5%;
    padding: 10px 20px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    z-index: 2;
}

.stock button:hover {
    
    color: #23ff61;
    border: 2px solid #23ff61;
}






