body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}
nav ul {
    list-style: none;
    display: flex;
    background: #333;
    padding: 10px;
}
nav ul li {
    margin-right: 20px;
}
nav ul li a {
    color: white;
    text-decoration: none;
}
/*------------------------------*/
/* Default Light Theme */
:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --nav-bg: #f1f1f1;
    --nav-text: #333;
}

/* Dark Theme */
.dark-mode {
    --bg-color: #1e1e1e;
    --text-color: #ffffff;
    --nav-bg: #333;
    --nav-text: #ffffff;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: Arial, sans-serif;
    transition: 0.3s;
}

/* Navbar Styling */
nav {
    background-color: var(--nav-bg);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: var(--nav-text);
    font-weight: bold;
}

.theme-toggle {
    cursor: pointer;
    padding: 5px 10px;
    background: var(--nav-bg);
    border: none;
    color: var(--nav-text);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}
/*------------------------------*/
/* Hero Section */
.hero {
    text-align: center;
    padding: 50px;
    background: linear-gradient(to right, #667eea, #764ba2);
    color: white;
}

.hero h1 {
    font-size: 2.5em;
}

/* Gallery */
.gallery {
    text-align: center;
    padding: 30px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.gallery-container img {
    width: 100%;
    border-radius: 10px;
}

/* Documents Section */
.documents {
    text-align: center;
    padding: 30px;
}

.documents ul {
    list-style: none;
    padding: 0;
}

.documents li {
    margin: 10px 0;
}

.documents a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }
}
/*------------------------------*/
/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    width: 100%;
    max-width: 1200px; /* Set max width */
    margin: auto; /* Center the navbar */
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Navbar Right Section */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Fix Language Dropdown */
.custom-select {
    background: #444;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

/* Fix Theme Button */
.theme-btn {
    background: #666;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.theme-btn:hover {
    background: #888;
}

/* Fix Time Display */
.time-display {
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    background: #444;
    border-radius: 5px;
}

/*------footer------*/
/* assets/css/style.css */
footer {

    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    color: white;
    padding: 15px 20px;
    box-sizing: border-box;
    width: 100%; /* Full width */
    max-width: 1200px; /* Increase max-width */
    margin: 0 auto; /* Center align */
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 65px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer p {
    margin: 5px 0;
}
