/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: white;
}

/* Header container */
header {
    position: relative;
    height: 100vh; /* Full viewport height */
    width: 100%;
    overflow: hidden; /* Ensure the video doesn't overflow */
	margin-bottom: 20px; /* Space below the header */
}

/* Background video styling */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the full container */
    z-index: -1; /* Put the video behind everything */
}

/* Top menu styling */
.top-menu {
    position: fixed; /* Make the menu stay at the top when scrolling */
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
	backdrop-filter: blur(6px); /* Apply a blur effect */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px; /* Add some padding */
    z-index: 2; /* Ensure it is above the video */
    box-sizing: border-box;
}

/* Logo styling */
.logo {
    height: 60px; /* Adjust logo height */
    max-height: 100%; /* Ensure it fits within the container */
}

/* Language menu styling */
.language-menu {
    display: flex;
    gap: 1px; /* Add spacing between language links */
}

.language-menu a {
    text-decoration: none; /* Remove underline */
    color: white; /* Default text color */
    font-size: 0.8rem; /* Adjust font size */
    padding: 2px 6px; /* Add padding around text */
    border-bottom: 1px solid transparent; /* Underline effect */
    transition: all 0.3s ease; /* Smooth hover effect */
}

.language-menu a.active {
    color: #1e90ff; /* Blue for the active language */
    border-bottom: 1px solid #1e90ff; /* Blue underline for active language */
}

.language-menu a:hover {
    color: #7FFFD4; /* Aquamarine text on hover */
    border-bottom: 1px solid #7FFFD4; /* Aquamarine underline on hover */
}

/* Header text styling */
.header-text {
    position: absolute;
    bottom: 20%;
    text-align: center;
    color: white;
    width: 100%;
    z-index: 1; /* Ensure it is above the video but below the top menu */
    font-size: 2.5rem; /* Adjust font size */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .top-menu {
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center align content */
    }

    .language-menu {
        margin-top: 10px; /* Add spacing */
    }

    .header-text {
        font-size: 1.5rem; /* Adjust font size for smaller screens */
    }
}

main {
    padding: 10px;
	margin-top: 100px; /* Add space below the header */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
	margin-top: 40px; /* Add space above the bottom section */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 90%;
    max-width: 1200px;
	margin: 0 auto; /* Center container */
	z-index: 1; /* Ensure it's above the video background */
}

.sub-container {
    background-color: #061b3d;
    color: #fff;
    display: flex;
	flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	overflow: hidden; /* Ensure content stays within bounds */
}

.photo-container {
    width: 100%;
    height: 150px;
    background-color: white; /* Placeholder background */
    display: flex;
	padding:10px;
    justify-content: center;
    align-items: center;
}

.photo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.text-container {
    padding: 15px;
    text-align: justify;
    font-size: 1rem;
    color: white;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: repeat(2, 1fr); /* Adjust to 2 columns */
    }

    .sub-container {
        height: auto; /* Adjust height for smaller screens */
    }
}

@media (max-width: 480px) {
    .container {
        grid-template-columns: 1fr; /* Single column layout */
    }

    .sub-container {
        height: auto; /* Adjust height for smaller screens */
    }
}

.section_bottom {
    font-size: 1rem; /* Adjust this size for the bottom section */
	margin-top: 40px; /* Add space above the bottom section */
    padding: 20px; /* Add padding */
}
.section_bottom h2 {
    font-size: 2.2rem;
	font-weight:bold;
    color: black;
	font-family: "Arial", sans-serif; /* Change font family */
    text-align: justify; /* Justify text */
}

.section_bottom p {
    font-size: 1rem;
    color: black;
	font-family: "Arial", sans-serif; /* Change font family */
    text-align: justify; /* Justify text */
}

footer {
    text-align: center;
    padding: 20px 10px;
    background: #061b3d;
    color: white;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.footer-left {
    margin-left: 20px;
}

.footer-right {
    text-align: right;
    margin-right: 20px;
}

.footer-logo {
    width: 180px;
    height: auto;
	
}

.footer-link, .email-link {
    color: #1e90ff;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.footer-link:hover, .email-link:hover{
    color: #7FFFD4;
    text-decoration: underline;
}

.footer-divider {
    border-top: 1px solid #ffffff;
    margin: 15px 20px;
}
