body, h1, h2, h3, h4, h5, p, b {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

.navbar {
    width: 100vw;
    /* padding: 20px 40px; */
    background-color: rgba(240,245,240,0.4);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    position: fixed;
    z-index: 100;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 20px 40px;
}

.navbar b {
    font-size: 32px;
    font-weight: 700;
    color: #332C23;
}

@media screen and (max-width: 768px) {
    .navbar a {
        display: none;
    }
}

.second-screen {
    /* max-width: 1200px; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    @media screen and (max-width: 768px) {
        grid-template-columns: 1fr;
    };
    /* background-color: #332C23; */
    background-color: #f7f8fc;
}

.board-section {
    position: relative;
    height: 100vh;
    width: 100%;
}

.board-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-section {
    position: relative;
    height: 880px;
}

.screen-left {
    position: absolute;
    top: 50px;
    right: 360px;
    z-index: 80;
}

.screen-right {
    position: absolute;
    top: 180px;
    right: 100px;
    z-index: 80;
}

.bg-leaf-left {
    position: absolute;
    bottom: 150px;
    right: 450px;
    /* animation with 4s delay */
    animation: moveUpDown 5s infinite ease-in-out;
    animation-delay: 2s;
}

.bg-leaf-left img {
    width: 250px;
    height: auto;
}

.bg-leaf-right {
    position: absolute;
    top: 150px;
    left: 10px;
    animation: moveUpDown 5s infinite ease-in-out;
}

.bg-leaf-right img {
    width: 450px;
    height: auto;
}

.sec-right {
    position: relative;
    overflow-x: hidden;
}

.app-section {
    display: flex;
    padding: 0px;
    padding-left: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 880px;
    z-index: 80;
    gap: 20px;
    position: relative;
}

.app-button {
    padding: 20px 50px;
    margin-top: 20px;
    border: none;
    text-decoration: none;
    background-color: rgb(207, 210, 173);
    cursor: pointer;
    display: flex;
    border-radius: 30px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #332C23;
    transition: box-shadow 0.3s ease; 
}

.app-button:hover {
    box-shadow: 5px 5px 10px rgba(36, 36, 36, 0.5); 
}

h1 {
    font-size: 80px;
    font-weight: 700;
    color: #332C23;
    text-align: left;
}

/* span {
    color: rgb(87, 127, 8);
} */

.text-m {
    font-size: 24px;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    font-weight: 400;
    color: #332C23;
}

.text-xs {
    font-size: 16px;
    font-weight: 400;
    color: gray;
    text-align: center;
}

.footer {
    padding-bottom: 40px;
    font-size: 10px;
    background-color: #f7f8fc;
}

/* create animation to move up and down */
@keyframes moveUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

p a {
    color: #778013;
    text-decoration: none;
}

/* third screen styles */
.third-screen {
    padding: 50px 40px 120px;
    background-color: #f7f8fc;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px 40px;
}
.card {
    padding: 20px;
    text-align: center;
    transition: transform 0.2s;
}
.card:hover {
    transform: scale(1.05);
}
.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #332C23;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.card-text {
    font-size: 1rem;
    font-weight: 400;
    color: #332C23;
}
.feature-icon {
    width: 3rem;
    /* height: 3rem; */
    color: #6b8f2f;
    margin-bottom: 40px;
}