.sec-1 {
    padding: 48px;
    height: 1000px;
    width: 100%;
  height: 100vh;
  background: linear-gradient(
    to right,
    rgb(255, 255, 255) 0%,
    rgb(255, 255, 255) 45.5%,
    rgb(2, 80, 6) 45.5%,
    rgb(2, 80, 6) 100%
  );

}



button {
    width: 200px;   
    height: 50px;
    border-radius: 25px;
    font-weight: 700;
    transition-duration: 0.3s;
}


.one {
    background-color: green;
    color: white;
}

.one:hover {
    background-color: white;
    color: green;
    scale: 1.05;

}




.two {
    background-color: white;
    color: green;
}

.two:hover {
    background-color: green;
    color: white;
    scale: 1.05;
}




.project {
    color: white;
    margin-top: 30px;
    position: relative;
    display: flex;
    justify-content: center;
}



.protitle {
    color: green;
    margin-top: 190px;
    width: 40%;
}

.protitle p {
    color: rgb(0, 46, 0);
}



.proimg
{
    background-color: green;
    width: 50%;
    height: 50%;
    border: 10px solid rgb(255, 255, 255);
    border-radius: 35px;
    position: relative;
    left: 2%;
    z-index: 0;
    animation-name: opacity;
    animation-duration: 1s;

}





.proimg img {
    width: 100%;
    border-radius: 25px;
}



.provalue {
    width: 300px;
    height: 300px;
    background-color: white;
    border: 10px solid green;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: -80px;
    color: rgb(4, 100, 4);
    text-align: center;
    animation: zoom 1s;
}


.provalue h3 {
    margin-top: 100px;
    font-weight: 900;
}

.provalue p {
    font-weight: 900;
}

@keyframes zoom {
    0% {
        scale: 0;
    }


    100% {
        scale: 1;
    }
}



.proinfo {
    background-color: green;
    width: 70%;
    padding: 20px 20px 20px 40px;
    border-radius: 30px;
    position: absolute;
    bottom: -40%;
    right: -10%;
    z-index: 1;
    animation: lettoin 1s;
}



.proinfo::before {
    content: '';
    background-color: white;
    height: 23%;
    width: 100%;
    border-radius: 25px;
    position: absolute;
    top: 0;
    left: 0;

}

.proinfo h3 {
    color: rgb(0, 95, 0);
    position: relative;
    z-index: 1;
    margin-top: 4%;
}

.proinfo h4 {
    margin-top: 60px;
}

@keyframes lettoin {
    0% {
        right: -30%;
        opacity: 0;
    }

    100% {
        right: -10%;
        opacity: 1;
    }
    
}



.sec-2 {
    padding: 48px;
    width: 100%;
  background: linear-gradient(
    to right,
    rgb(2, 80, 6) 0%,
    rgb(2, 80, 6) 45.5%,
    rgb(255, 255, 255) 45.5%,
    rgb(255, 255, 255) 100%
  );

}


.sec-2 .protitle {
    margin-left: 100px;
    margin-top: 0;

}



.bruh {
    width: 40%;
    left: -100px;
    border-radius: 50px;
}


.bruh img {
    border-radius: 25px;
}

.bruh .carousel-item {
    
    border-radius: 25px;

}