.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Ensures the video is behind all other content */
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit:cover; 
    transform: translate(-50%, -50%);
}

/* quick links */
.quick-links{
    position: absolute;
    bottom: 28px;
    right: 70px;
    text-align: right;
    width:200px;
}

.quick-links h2{
    background-color: #1a3321;
    font-size: 16px;
    margin: 5px; 
    text-transform: capitalize;
    padding: 5px 20px;
    border-radius: 20px;
    color: rgb(255, 255, 255);

    text-align: center;
    text-decoration: none;
}

.quick-links h2:hover{
    color:#ffffff;
    background-color: #1a3321;
    box-shadow: 0 0 20px rgb(255, 255, 255);
    transition: 0.5s;
}

.heading-home{
    position: absolute;
    left: 30px;
    top: 230px;
}

.heading-home .heading-title{
    font-size: 60px;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 2px 0.5px rgb(3, 115, 79);
    margin-bottom: 30px;
}   

.explore-button {
    color: black;
    font-weight: 700;
    background-color: rgb(255, 255, 255);
    padding: 8px 25px;
    align-items: center;
    border-radius: 20px;
    font-size: 18px;
    margin-bottom: 15px;
    text-decoration: none;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.explore-button:hover {
    background-color: #71ea0e;
    box-shadow: 0 0 20px rgb(119, 255, 0);
    color: #001307;
    transform: scale(1.1);
}

/*-----------------------------------------------------------------------------------*/

.overview-container {
    position: relative;
    margin-top: 100vh; 
    padding: 20px;
}

.overview-data {
    background-color: #214812; /* Keeps the background color */
    padding: 25px;
    width:1300px;
    border: 1px solid #000000; 
    border-radius: 15px;
    box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.8);
    margin-bottom: 90px; /* Optional: space below the box */
    margin-top: 50px;
    margin-left: 70px;
}

.overview-img-box{
    position: absolute;
    top: 50px;
    z-index: 4;
    width: 480px;
    height: 280px;
    right: 100px;
    border: 1px solid #000000; 
    box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    margin-top: 80px;
    margin-right: 20px;
}

.overview-data:hover{
    box-shadow: 0 0 20px rgb(8, 230, 26);
    transition: 0.5s;
    transform: scale(1.02); 
}

.overview-img-box:hover{
    box-shadow: 0 0 20px rgb(8, 230, 26);
    transition: 0.5s;
    transform: scale(1.02);
}

.overview-img{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.8);
}

.overview-main-title {
    position: relative; 
    top: -20px; 
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    text-align: center;
    font-weight: bolder;
    text-transform: uppercase;
    color: var(--heading-color);
    background-color: rgba(0,19,7,255); 
    padding: 10px 20px; 
    width: 1800px;
    box-shadow: 0 0 10px rgb(111, 112, 110);
    z-index: 10; 
}


/*-----------------------------------------------------------------------------------*/

body {
    font-family: Arial, sans-serif;
    background-color: #0d1b0f;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.forest-section {
    text-align: center;
    padding: 50px 20px;
    background-image: url("images/345.jpg");
    background-size: cover;
}

.points{
    text-align: left;
    font-size: 13px;
    padding-bottom: 20px;
    padding-right: 10px;
}

.forest-title {
    font-size: 2em;
    color: #00ff88;
    margin-bottom: 20px;
}

.forest-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.forest-card {
    background-color: #1a3321;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.forest-card:hover {
    transform: scale(1.05);
}

.forest-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.forest-card h3 {
    font-size: 1.2em;
    margin: 15px;
    color: #00ff88;
}

.forest-card p {
    font-size: 0.9em;
    margin: 0 15px 15px;
    color: #d4d4d4;
}

.forest-card a {
    display: block;
    text-decoration: none;
    color: #00ff88;
    font-weight: bold;
    margin-bottom: 15px;
}

.forest-card a:hover {
    text-decoration: underline;
}

#goTopBtn {
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    z-index: 1000;
}
#goTopBtn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#goTopBtn:hover {
    transform: scale(1.1);
}