  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;
}



<blockquote class="styled-quote">
  <p>Design is not just what it looks like and feels like. Design is how it works.</p>
  <cite>— Steve Jobs</cite>
</blockquote>


.styled-quote {
  /* Reset default margins */
  margin: 2rem auto;
  /* Add padding for spacing */
  padding: 2rem;
  /* Max width for readability */
  max-width: 800px;
  /* Font styling */
  font-family: 'Georgia', serif;
  font-size: 1.25rem; /* 20px */
  line-height: 1.6; /* Improved readability */
  color: #333; /* Dark gray text */
  /* Position relative for pseudo-element positioning */
  position: relative;
}

.styled-quote::before {
  /* Insert left double quote (Unicode: \201C) */
  content: "\201C";
  /* Positioning */
  position: relative;
  top: 2rem;
  left: 0;
  /* Styling the quote */
  font-size: 5rem; /* Large size */
  font-family: 'Times New Roman', serif; /* Distinct font */
  color: #ff6b6b; /* Soft red color */
  line-height: .5; /* Prevent vertical stretching */
  opacity: 0.7; /* Slight transparency */
}


.styled-quote::after {
  content: "\201D"; /* Right double quote (Unicode: \201D) */
  position: relative;
  bottom: -1rem; /* Adjust to avoid overlapping text */
  right: 0;
  font-size: 5rem;
  font-family: 'Times New Roman', serif;
  color: #ff6b6b;
  line-height: 1;
  opacity: 0.7;
}


.styled-quote cite {
  display: block; /* Move citation to a new line */
  margin-top: 1rem;
  font-size: 0.9rem;
  font-style: normal; /* Override default italic */
  color: #666; /* Lighter gray */
  text-align: left; /* Align to the right */
}
 
.styled-quote cite::before {
  content: "— "; /* Add an em dash before the citation */
}


.styled-quote {
  font-size: clamp(1rem, 2vw, 1.5rem); /* Scales with viewport */
  padding: 1.5rem;
  margin: 1.5rem;
}
 
.styled-quote::before,
.styled-quote::after {
  font-size: clamp(3rem, 8vw, 6rem); /* Quotes scale with screen size */
}

@media (max-width: 768px) {
  .styled-quote {
    padding: 1rem;
    margin: 1rem;
  }
 
  .styled-quote::before {
    top: -0.5rem; /* Move opening quote up on mobile */
    left: -0.5rem;
  }
 
  .styled-quote::after {
    bottom: -1.5rem; /* Adjust closing quote position */
    right: -0.5rem;
  }
}

.styled-quote {
  background: #f8f9fa; /* Light gray background */
  border-left: 4px solid #ff6b6b; /* Accent border */
  border-radius: 4px; /* Rounded corners */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Soft shadow */

.styled-quote::before {
  transform: rotate(-5deg); /* Tilt opening quote */
}
 
.styled-quote::after {
  transform: rotate(5deg); /* Tilt closing quote */
}

.styled-quote::before,
.styled-quote::after {
  font-family: 'Playfair Display', serif; /* Elegant custom font */
  font-weight: bold;
}



