body, html {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(90deg, #182392, #1f2833);
    color: #c5c6c7;
    overflow-x: hidden; /* Prevent horizontal scrolling */
	width:100%;
	height:100%;
	overflow:scroll;
}
body::-webkit-scrollbar { /* WebKit */
    display:none;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #182392, #1f2833);
    padding: 1vh 2vw;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    z-index: 1000; /* High z-index to ensure it stays on top */
    border-bottom: 2px solid #2dee17;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 5vh; /* Adjust based on your logo height */
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1vw; /* Space between menu items */
    margin-left: auto; /* Pushes menu to the right */
    overflow: hidden; /* Ensures the menu doesn't overflow */
    white-space: nowrap;
}

.header-text, .dropdown .dropbtn {
    color: #66fcf1;
    font-size: 1.5vw;
    text-transform: uppercase;
    letter-spacing: 0.2vw;
    cursor: pointer;
}

.dropdown {
    position: relative;
    z-index: 1000; /* Ensure it stays below the news ticker */
}

.dropbtn {
    background: none;
    border: none;
    font-size: 3vw;
    transition: color 0.3s ease;
}

dropbtn:hover {
    color: #2dee17;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #1f2833;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
    z-index: 1000; /* Ensure it stays below the dropdown button */
    min-width: 10vw; /* Ensure minimum width to avoid overlap */
    border: 1px solid #2dee17;
    box-sizing: border-box;
}

.dropdown-content a {
    color: #c5c6c7;
    padding: 1vh 1vw;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #2dee17;
    color: #0b0c10;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.red-line {
    position: fixed;
    top: 7vh; /* Adjust based on header height */
    left: 0;
    width: 100%;
    height: 5vh; /* Adjust height as needed */
    background: #66fcf1;
    overflow: hidden; /* Prevent overflow */
    display: flex;
    align-items: center; /* Center the news ticker vertically */
    z-index: 999; /* Slightly lower z-index than header but above dropdown */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    border-bottom: 2px solid #2dee17;
}

.news-ticker {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.news-ticker p {
    white-space: nowrap;
    display: inline-block;
    animation: ticker 15s linear infinite;
    color: #0b0c10;
    font-weight: bold;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.blue-section {
    background: linear-gradient(90deg, #182392, #1f2833);
    padding: 2vh 2vw;
    display: flex;
    justify-content: auto;
    align-items: auto;
    z-index: 1;
    margin-top: 9vh; /* Adjust to push content down to account for fixed header and ticker */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    width: 100%; /* Ensure it takes full width */
    box-sizing: border-box; /* Ensure padding and borders are included in the width */
    min-height: auto; /* Ensure it doesn't have a fixed height */
}

.content-container {
    display: flex;
    width: 100 vh;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2vw;
    margin-top:5vh;
    min-height:100%;
}

.date-text-lines, .table-container, .table-container-1 {
    flex: 1;
    max-width: 50%;/* Adjust the width */
    width: 100%;
    display: flex;
    flex-direction: column; /* Ensure the content is stacked */
    justify-content: stretch; /* Ensure the content is stretched */
}

.date-text-lines {
    background-color: #1f2833;
    padding: 2vh 2vw;
    border-radius: 5px;
    color: #c5c6c7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    border: 1px solid #2dee17;
    flex-grow: 1; /* Ensure the element grows to fill available space */
}

.date-text-lines .line {
    display: flex;
    justify-content: space-between;
    padding: 1vh 0;
}

.date-text-lines .date {
    font-weight: bold;
    color: #2dee17; /* Date color */
}

.date-text-lines .text {
    color: #c5c6c7;
}

.table-container {
    background-color: #1f2833;
    padding: 2vh 2vw;
    border-radius: 5px;
    color: #c5c6c7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    border: 1px solid #2dee17;
    flex-grow: 1; /* Ensure the element grows to fill available space */
    width:100%;
}
.table-container-1 {
    background-color: #1f2833;
    padding: 2vh 2vw;
    border-radius: 5px;
    color: #c5c6c7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    border: 1px solid #2dee17;
 /* Ensure the element grows to fill available space */
    width:200vh;
    overflow:auto;
    height:100%;
    display:center;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 2vh 0;
    font-size: 5vw;
    text-align: center;
    color: #c5c6c7;
}
.table-container-1 table {
    width: 100%;
    border-collapse: collapse;
    margin: 2vh 0;
    font-size: 5vw;
    text-align: center;
    color: #c5c6c7;
}

.table-container th, .table-container td {
    padding: 1vh 1vw;
    border-bottom: 1px solid #2dee17;
}
.table-container-1 th, .table-container-1 td {
    padding: 1vh 1vw;
    border-bottom: 1px solid #2dee17;
}

.table-container th {
    background-color: #2dee17;
    color: #0b0c10;
}
.table-container-1 th {
    background-color: #2dee17;
    color: #0b0c10;
}

.video-section {
    position: relative;
    height: auto;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    border: 1px solid #2dee17;
    margin: 2vh 0; /* Add margins to ensure the border is visible and remove the black box */
    display: flex; /* Add flexbox for centering */
    justify-content: center; /* Center the video */
    align-items: center; /* Center the video */
}

.video-background {
    width: 100%; /* Ensure the video background fits within the container */
    display: flex; /* Add flexbox for centering */
    justify-content: center; /* Center the video */
    align-items: center; /* Center the video */
    position: relative; /* Position relative for overlay */
}

.video-background video {
    width: 100%;
    max-width: 100%; /* Ensure the video does not overflow the container */
    height: auto;
    background-size: cover;
    border-radius: 5px; /* Match border radius */
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #66fcf1;
    font-size: 2vw;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5vw;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1vh 1vw;
    border-radius: 5px;
}

.articles-section {
    width: 100%;
    padding: 2vh 2vw;
    box-sizing: border-box;
    margin-top: 0; /* Remove any gap */
}

.articles {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    width: 100%;
}
.articles-2 {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    width: 100%;
     background: linear-gradient(90deg, #182392, #1f2833);
}

article {
    display: flex;
    flex-direction: row; /* Align image and content side by side */
    background: #1f2833;
    border: 1px solid #2dee17;
    border-radius: 5px;
    padding: 2vh 2vw;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* Prevent overflow */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

article:hover {
    transform: translateY(-0.5vh);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}

.article-image {
    flex: 1;
    margin-right: 2vw; /* Space between image and content */
    

    position: relative;
    overflow: hidden;
}

.article-image img {

    border-radius: 5px;
    width:100%;
    height:100%;
    object-fit: cover; /* Ensure the image covers the area */
    position:relative;
    top:0;
    left:0;
    
}

.article-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    word-wrap: break-word; /* Ensure long words break within the content area */
    overflow: hidden; /* Prevent overflow */
}

.read-more {
    background-color: #66fcf1;
    color: #0b0c10;
    border: none;
    padding: 1vh 2vw;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    align-self: flex-start; /* Align button to the start */
    margin-bottom:7vh;
}

.read-more:hover {
    background-color: #2dee17;
}

.more-content {
    display: none;
}

.gallery-section {
    background: linear-gradient(90deg, #182392, #1f2833);
    padding: 2vh 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    margin-top: 9vh; /* Adjust to push content down to account for fixed header and ticker */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    width: 100%; /* Ensure it takes full width */
    box-sizing: border-box; /* Ensure padding and borders are included in the width */
    min-height: auto; /* Ensure it doesn't have a fixed height */
}

.gallery-section h2 {
    text-align: center;
    color: #66fcf1;
    font-size: 2.5vw;
    margin-bottom: 2vh;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    width: 100%;
    align-items:center;
}

.gallery-item {
    background-color: #1f2833;
    border: 1px solid #2dee17;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    max-width: 30vw;
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display:table;
}

.gallery-item img {
    width: 100%;
    height: auto;
    overflow:auto;
}

.gallery-item h3 {
    margin: 1vh 0;
    color: #66fcf1;
    font-size: 1.5vw;
}

.gallery-item p {
    color: #c5c6c7;
    padding: 0.5vh 1vw;
}

.more-content {
    display: none;
    padding: 1vh 1vw;
}

.gallery-item:hover {
    transform: translateY(-0.5vh);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}

footer {
    display: flex;
    flex-direction:row;
    justify-content: space-between;
    align-items: center;
	width:100%;
    background: #0b0c10;
    color: #c5c6c7;
    text-transform: uppercase;
    border-top: 2px solid #2dee17;
    height: auto; /* Set a constant height */
    padding: 2vh 2vw;
    text-align:center;
    box-sizing:border-box;
}

.footer-logo {
    flex: 1;
    display: flex;
    align-items: center; /* Vertically center the logo */
}

.social-media {
    display: flex;
    justify-content:center;
	margin-left:15%;
}

.social-icon {
    width: 25px;  /* Adjust size as needed */
    height: 25px; /* Adjust size as needed */
    transition: transform 0.3s ease; /* Add smooth transition for hover effect */
}

.social-icon:hover {
    transform: scale(1.2); /* Slightly enlarge icon on hover */
}

.footer-links {
    flex: 1;
    text-align: right;
    display: flex;
    align-items: center; /* Vertically center the footer links */
    justify-content: center; /* Align the links to the right */
    width:100%;
}

footer a {
    color: #66fcf1;
    text-decoration: none;
    margin: 0 1vw;
    font-size: 1.2vw;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #2dee17;
    text-decoration: underline;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 1200px) {

    .nav-menu {
        gap: 1.5vw;
        max-height:5vh;
        width:auto;
        margin-left:auto;
    }
    .dropbtn{
        margin-left:auto;
    }

    .header-text, .dropdown .dropbtn {
        font-size: 3vw;
    }

    .red-line {
        top: 6.5vh;
        height: 4vh;
    }

    .blue-section {
        margin-top: 13vh;
    }

}

@media (max-width: 992px) {

    .nav-menu {
        gap: 1vw;
        max-height:4vh;
        width:auto;
        margin-left:auto;
    }
    .dropbtn{
        margin-left:auto;
    }
    .header-text, .dropdown .dropbtn {
        font-size: 2.5vw;
    }

    .red-line {
        top: 6vh;
        height: 5vh;
    }

    .blue-section {
        margin-top: 12vh;
    }

    .date-text-lines, .table-container {
        max-width: 100%;
        margin-bottom: 2vh;
    }

    .video-section {
        margin: 2vh 0;
        width: 100%;
    }

    .article-image {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 2vh;
    }

    .article-content {
        width: 100%;
    }

}

@media (max-width: 768px) {

    header {
        flex-direction: row;
        align-items: center;
        padding: 1vh 2vw;
    }
    footer {
        flex-direction: column;
        align-items: center;
        padding: 2vh 2vw;
        text-align: center;
    }

    .footer-links {
        width: 100%;
        justify-content: center;
        margin-top: 1vh;
        gap: 2vw;
    }

    .social-media {
        justify-content: center;
        margin-top: 1vh;
    }

    .social-icon {
        width: 25px;
        height: 25px;
    }

    footer a {
        font-size: 4vw;
    }
    

    .logo {
        margin-bottom: 1vh;
    }

    .logo-img {
        max-height: 4vh; /* Adjust based on your logo height */
        width: auto;
    }


    .dropdown-content {
        width: 100%;
        height:auto;
        justify-content: flex-end;
        margin-left: auto;
        flex-direction: row;
        gap: 1vh;
    }

    .header-text, .dropbtn {
        font-size: 4vw;
    }

    .red-line {
        top: 7vh; /* Adjust to fit below the header */
        height: 5vh;
    }

    .blue-section {
        flex-direction: column;
        padding: 1vh 2vw;
        margin-top: 9vh; /* Adjust to fit below the header and news line */
        width: 100%; /* Ensure it takes full width */
        box-sizing: border-box; /* Ensure padding and borders are included in the width */
    }

     .content-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 2vw;
        box-sizing: border-box;
        display:flex;
    }

    .date-text-lines, .table-container {
        max-width: 100%;
        width: 100%;
        margin-bottom: 2vh;
        padding: 1vh;
        box-sizing: border-box;
    }

    .video-section {
        width: 100%;
        padding: 0;

    }

    .video-background video {
        width: 100%;
        height: auto;
    }
    

    .video-background video {
        width: 100%;
        max-width: 100%; /* Ensure the video does not overflow the container */
        height: auto;
        background-size: cover; /* Ensure the video fits within the container */
        border-radius: 5px; /* Match border radius */
    }

    .video-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #66fcf1;
        font-size: 1.5vw;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.3vw;
        background-color: rgba(0, 0, 0, 0.7);
        padding: 1vh 1vw;
        border-radius: 5px;
    }

    .gallery-container {
        flex-direction: column;
        align-items: center;
    }

    .gallery-item {
        max-width: 100%;
    }

    article {
        flex-direction: column;
    }

    .article-image {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 2vh;
    }

    .article-content {
        width: 100%;
    }
}

@media (max-width: 576px) {
    header {
        padding: 1vh 2vw;
    }

    .dropbtn{
        margin-left:auto;
        width:6vh;
        height:5vh;
    }
    .logo {
        font-size: 1em;
    }

    .logo-img {
        max-height: 3vh; /* Adjust based on your logo height */
        width: auto;
    }

    .nav-menu {
        gap: 0.5vw;
        margin-left:auto;
    }
    .dropdown{
        min-width:60%;
        float:right;
    }
    .header-text, .dropbtn {
        font-size: 4vw;
    }

    .red-line {
        top: 6.5vh; /* Adjust to fit below the header */
        height: 4vh;
    }

    .blue-section {
        padding: 0.5vh 1vw;
        margin-top: 8.5vh; /* Adjust to fit below the header and news line */
    }

    .video-section {
        margin: 1.5vh 0;
    }

    .video-overlay {
        font-size: 1.2vw;
    }
    footer {
        padding: 2vh 2vw;
    }

    .social-icon {
        width: 25px;
        height: 25px;
    }
    .table{
        font-size:6vw;
        
    
    }

    footer a {
        font-size: 4vw;
    }
}

/* Existing styles */

.contact-form-container {
	margin:auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 77vh; /* Ensure it takes full height for centering */
}

.contact-form {
    background-color: #1f2833;
    padding: 2vh 4vw;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    border: 1px solid #2dee17;
    width: 50%; /* Adjust width as needed */
    box-sizing: border-box;
}

.contact-form h2 {
    text-align: center;
    color: #66fcf1;
    font-size: 2.5vw;
    margin-bottom: 2vh;
}

.form-group {
    margin-bottom: 2vh;
}

.form-group label {
    display: block;
    color: #c5c6c7;
    margin-bottom: 1vh;
    font-size: 1.5vw;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1vh;
    border: 1px solid #2dee17;
    border-radius: 5px;
    background-color: #0b0c10;
    color: #c5c6c7;
    font-size: 1.2vw;
    box-sizing: border-box;
}

.form-group textarea {
    resize: none;
}

.submit-button {
    background-color: #66fcf1;
    color: #0b0c10;
    border: none;
    padding: 1vh 2vw;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.5vw;
    transition: background-color 0.3s ease;
    display: block;
    margin: 0 auto; /* Center the button */
}

.submit-button:hover {
    background-color: #2dee17;
}

/* Styles for expanded gallery items */
.more-content {
    display: none;
    padding: 1vh 1vw;
}

.expand-button {
    background-color: #66fcf1;
    color: #0b0c10;
    border: none;
    padding: 1vh 2vw;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    align-self: flex-start; /* Align button to the start */
}

.expand-button:hover {
    background-color: #2dee17;
}

.more-content img {
    width: 100%;
    margin-top: 1vh;
    border-radius: 5px;
}
.documents-list {
    background-color: #1f2833;
    padding: 2vh 4vw;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    border: 1px solid #2dee17;
    width: 100%; /* Adjust width as needed */
    box-sizing: border-box;
	overflow:hidden;
	padding-bottom:2vh;
	height:100%;
	margin:auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.documents-list h2 {
    text-align: center;
    color: #66fcf1;
    font-size: 2.5vw;
    margin-bottom: 2vh;
}

.documents-list ul {
    list-style-type: none;
    padding: 0;
}

.documents-list li {
    margin-bottom: 1.5vh;
}

.documents-list a {
    color: #66fcf1;
    text-decoration: none;
    font-size: 1.5vw;
    transition: color 0.3s ease;
}

.documents-list a:hover {
    color: #2dee17;
    text-decoration: underline;
}
/* Existing styles */

/* Gallery Styles */
.gallery-section {
    padding: 2vh 2vw;
    background: linear-gradient(90deg, #182392, #1f2833);
    margin-top: 5vh; /* Adjust based on your layout */
    overflow:auto;
    display:flex;
}

.gallery-section h2 {
    text-align: center;
    color: #66fcf1;
    font-size: 2.5vw;
    margin-bottom: 2vh;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
    justify-content: center;
}

.gallery-item {
    background-color: #1f2833;
    border: 1px solid #2dee17;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    max-width: 45%; /* Ensure two items per row with some gap */
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.gallery-item h3 {
    margin: 1vh 0;
    color: #66fcf1;
    font-size: 1.5vw;
}

.gallery-item p {
    color: #c5c6c7;
    padding: 0.5vh 1vw;
}

.more-content {
    display: none;
    padding: 1vh 1vw;
}

.gallery-item:hover {
    transform: translateY(-0.5vh);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}

/* Media Queries */
@media (max-width: 768px) {
    .gallery-item {
        max-width: 100%; /* Single column on smaller screens */
    }
}


