.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%);
}

.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);
}

.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;
}

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

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

.overview-data {
    background-color: #56c02b; /* Keeps the background color */
    padding: 25px;
    width:600px;
    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;
    font-family: "Exo 2";
}

.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);
}

.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;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.goal {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease-in-out, box-shadow 0.5s ease-in-out;
}

.goal img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    display: block;
}

.goal-content {
    padding: 15px;
}

.goal span {
    display: block;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px;
}

.goal p {
    font-size: 0.9em;
    margin: 5px 0 0;
    color: #333;
}

.goal:hover{
    transform: scale(1.05); 
}

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

.content{
    margin-top: 30px;
}

.content-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    text-decoration: none;
}

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

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

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

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

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


.publications {
    text-align: center;
    padding: 40px 20px;
    background-color: #0d1b0f;
    transition: transform 0.3s ease-in-out, box-shadow 0.5s ease-in-out;
}

.publications-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.publication {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    transition: transform 0.3s;
}

.publication img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.publication-content {
    padding: 15px;
}

.publication h3 {
    font-size: 1.2em;
    color: #111;
    margin-bottom: 10px;
}

.publication p {
    font-size: 0.9em;
    color: #444;
}

.publication:hover{
    transform: scale(1.05); 
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #0f0;
    color: #111;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

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

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

.news-section {
    text-align: center;
    padding: 50px 20px;
}

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

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

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

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

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

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

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

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

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

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