  body {
            margin: 0;
            Overflow-x: hidden;
            text-align: center;
            font-family: Arial, sans-serif;
        }


/* Hide the menu by default */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -250px; /* Initially off-screen */
    width: 250px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    padding: 15px;
    text-align: left;
}

.mobile-menu a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* "X" Close Button */
.close-btn {
    font-size: 24px;
    text-align: right;
    padding: 10px;
    cursor: pointer;
}

/* Show menu when activated */
.mobile-menu.show {
    right: 0; /* Slide in */
}

/* Hamburger Icon */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 15px;
    top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        display: none; /* Hide full navbar */
    }

    .menu-toggle {
        display: block; /* Show hamburger icon */
    }

    body {
        font-size: 18px; /* Increase text size for mobile */
    }

    .separator {
         Display: none; /* Hide vertical separator for phone version */
    }

    .sidebar {
        Display: none; /* Hide sidebar for phone version */
    }

}



       .header {
           width: 100%;
           display: block;
           padding: 20px;
           box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.9); /* Increase negative spread to fully      remove side shadows */
}

        .logo img {
            max-width: 150px; /* Adjust the logo size as needed */
        }
        .navbar {
            margin-top: 15px;
        }
        .navbar a {
            text-decoration: none;
            color: black;
            margin: 0 15px;
            font-weight: bold;
            transition: color 0.3s ease-in-out;
        }


        .tagline {
            margin-top: 10px;
            font-size: 12px;
            Font-style: italic;
            color: gray;
        }


        .container {
            display: flex;
            width: 95%;
            margin: 30px;
            Text-align: left;

        }
        .links {
            flex: 2;
            padding: 20px;
        }


.navbar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.navbar li {
    <!-- position: relative; --?>
    margin: 0 8px;
}

.navbar a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
    display: block;
    padding: 10px;
}

.navbar a:hover {
    color: #ffa500;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    text-align: left;
}

.dropdown-content a {
    color: black;
    padding: 10px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background: #f1f1f1;
}

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

#current-date {
    font-size: 12px; /* Adjust as needed */
    font-weight: normal; /* Make it stand out */
    color: #666; /* Change text color if desired */
    Font-style: italic;
}


.source {
    font-size: 15px; /* Adjust as needed */
    Font-style: italic;
    font-weight: normal; /* Make it stand out */
    color: #666; /* Change text color if desired */
}





/* Vertical Separator */
.separator {
    width: 2px; /* Thin vertical line */
    background-color: #ccc; /* Color of the separator */
    margin: 0 10px; /* Adds space on either side */
}

/* Fixed Sidebar */
.sidebar {
    width: 150px; /* Fixed width */
    padding: 20px;
    background: #f1f1f1;
    flex-shrink: 0; /* Prevents resizing */
}

         .footer {
        <!--    position: fixed; --!>
            bottom: 0;
            width: 100%;
            background: #ccc;
            color: white;
            text-align: center;
            padding: 20px;
          }

   a {
        color: #ffa500;
        Font-style: normal;
        Text-decoration: none;
        Font-size: 16px;
      }

a:hover {
  text-decoration: underline;
  Color: #ff8c00;


}


html {
     scroll-behavior: smooth;
}

.footerlinks {
	color: #000;
}