 /* styles.css */

 :root {
     --primary-green: #2c5e3f;
     /* A deep, professional forest green */
     --dark-green: #1a3a26;
     --light-gray: #f4f4f4;
     --text-color: #333333;
 }

 body {
     font-family: 'Poppins', sans-serif;
     color: var(--text-color);
     background-color: #f9f9f9;
 }

 #map {
     height: 500px;
     width: 100%;
     margin-top: 10px;
     display: flex;
 }

 /* Swiper specific styles to ensure it fills its container */
 .swiper {
     width: 100%;
     height: 100%;
 }

 .swiper-slide {
     position: relative;
     /* Ensure positioning context for absolute children */
     display: flex;
     /* Use flexbox to center content */
     align-items: center;
     /* Center vertically */
     justify-content: center;
     /* Center horizontally */
 }

 .swiper-slide img {
     display: block;
     width: 100%;
     height: 500px;
     object-fit: cover;
 }

 /* Styles for the text overlay */
 .image-overlay-text {
     position: absolute;
     bottom: 10%;
     /* Adjust as needed */
     left: 35%;
     transform: translateX(-50%);
     background-color: rgba(0, 0, 0, 0.6);
     /* Semi-transparent black background */
     color: white;
     padding: 1.5rem 2.5rem;
     /* More padding for a better look */
     border-radius: 0.5rem;
     /* Rounded corners */
     text-align: left;
     max-width: 70%;
     /* Limit width for readability */
     box-sizing: border-box;
     /* Include padding in width */
 }

 .image-overlay-text a {
     font-size: 1.7rem;
     /* Larger font for title */
     font-weight: 500;
     margin-bottom: 0.5rem;
     color: white;
     /* Ensure title is white */
     text-decoration: none;
 }

 .image-overlay-text a:hover {
     color: var(--primary-green);
     outline: none;
 }

 .image-overlay-text p {
     font-size: 1rem;
     /* Larger font for description */
     line-height: 1.6;
     color: white;
     /* Ensure description is white */
 }

 /* Responsive adjustments for overlay text */
 @media (max-width: 768px) {
     .image-overlay-text {
         padding: 1rem 1.5rem;
         bottom: 10%;
         max-width: 90%;
     }

     .image-overlay-text h2 {
         font-size: 1.75rem;
     }

     .image-overlay-text p {
         font-size: 1rem;
     }
 }

 /* --- Call to Action (CTA) Button --- */
 .header-actions {
     display: flex;
     align-items: center;
 }

 .buttonTitle {
     background-color: var(--primary-green);
     color: #ffffff;
     padding: 12px 28px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     margin-left: 35px;
     transition: all 0.3s ease;
     box-shadow: 0 4px 6px rgba(44, 94, 63, 0.2);
 }

 .buttonTitle:hover {
     background-color: var(--dark-green);
     transform: translateY(-2px);
     box-shadow: 0 6px 12px rgba(44, 94, 63, 0.3);
 }


 .tilteDiv {
     margin-top: 10px;
     background: #fff;
     border-radius: 8px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     justify-items: center;
     padding: 10px;
     justify-content: center;
 }

 .container {
     display: flex;
     flex-wrap: wrap;
     max-width: 100%;
     margin: auto;
     margin-top: 10px;
     background: #fff;
     padding: 10px;
     border-radius: 8px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 }

 .column {
     padding: 1%;
     flex: 1 1 45%;
     box-sizing: border-box;
 }

 .column a {
     font-size: 22px;
     text-decoration: none;
     color: #3D3D3D;
     background: none;
 }

 .column a:hover {
     color: var(--primary-green);
     outline: none;
 }

 .dataset-img {
     border-radius: 4px;
     max-width: 100%;
     width: 600px;
     height: 400px;
     object-fit: cover;
 }

 .dataset-row {
     display: flex;
     flex-direction: row;
     padding: 20px;
     box-sizing: border-box;
     border-top: 1px solid #ddd;
 }

 .dataset-row img {
     border-radius: 5px;
     max-width: 100%;
     width: 200px;
     height: 150px;
     object-fit: cover;
 }

 .dataset-row div {
     padding-left: 20px;
     display: flex;
     flex-direction: column;
 }

 .dataset-row div a {
     font-size: 20px;
     font-weight: 400;
     color: #3D3D3D;
     background: none;
     text-decoration: none;
     display: flex;
 }

 .dataset-row div a:hover {
     color: var(--primary-green);
 }


 .all-dataset-text {
     font-size: 15px;
     color: #3D3D3D;
     background: none;
     text-decoration: none;
     display: flex;
     border-top: 1px solid #ddd;
 }

 .dataset-tex-team {
     margin-top: 5px;
     margin-bottom: 5PX;
     color: #666;
     font-size: 0.8em;
     margin-bottom: 10px;
 }

 h2 {
     color: #333;
     margin-top: 20px;
 }

 p {
     color: #333;
     font-size: 16px;
     line-height: 1.6;
 }

 .news-section {
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 .news-card {
     display: flex;
     flex-direction: row;
     margin-left: 50px;
     margin-right: 50px;
     border-top: 1px solid #ddd;
     padding-top: 30px;
     padding-bottom: 30px;
 }

 .news-image {
     max-width: 150px;
     height: min-content;
     margin-right: 20px;
     object-fit: cover;
 }

 .news-content {
     flex: 1;
 }

 .news-title {
     font-size: 1.2em;
     color: #3D3D3D;
     margin-bottom: 15px;
 }

 .news-meta {
     color: #666;
     font-size: 0.8em;
     margin-bottom: 10px;
 }

 .all-news-text {
     font-size: 15px;
     color: #3D3D3D;
     background: none;
     text-decoration: none;
     display: flex;
 }

 .all-news-text:hover {
     color: var(--primary-green);
     outline: none;
 }

/* Simple syntax highlighting colors for the code block */
.code-block {
    background-color: #2d3748;
    /* slate-800 */
    color: #e2e8f0;
    /* slate-200 */
}

.code-keyword {
    color: #9ae6b4;
    /* green-300 */
}

.code-comment {
    color: #a0aec0;
    /* slate-400 */
}

.code-string {
    color: #faf089;
    /* yellow-200 */
}

.code-function {
    color: #81e6d9;
    /* teal-200 */
}

.code-variable {
    color: #f6ad55;
    /* orange-300 */
}