/* *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */


body {
    display: flex;
    flex-direction: column;
   /* min-height: 100vh; /* Ensure the body takes at least the full viewport height */
    margin: 0; /* Remove default margin */
    padding-top: 70px; 
  }

  /* Base styles for the header */
  header {
    background-color: #f8f9fa;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left:0; 
    width: 100%; 
    z-index: 1000; 
  }
  
  /* Container to align content centrally */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Logo styling */
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
  }
  /* Style the logo */
  .logo img {
    display: block; /* Ensure the image behaves as a block element */
    width: 100px; /* Adjust the size as needed */
    height: auto; /* Maintain aspect ratio */
    background-color: transparent; /* Ensure no background color is added */
    mix-blend-mode: multiply; /* Blend the logo with the background */
  }
  
  /* Navigation styling */
  .navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  .navigation li {
    margin-left: 20px;
  }
  
  .navigation a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 5px 10px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .navigation a:hover {
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
  }
  
  /* 🎯 Change 1: Move the nav-toggle to the right side */
  .nav-toggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: none;
    position: absolute; /* 📍Added */
    right: 20px; /* 📍Added */
    top: 15px; /* 📍Added */
  }
  
  /* 🎯 Change 2: Responsive adjustments */
  @media (max-width: 768px) {
    .nav-toggle {
      display: block;
    }
  
    /* 🎯 Change 3: Navigation menu appears from the right side */
    .navigation ul {
      /* position: absolute; */
      position: fixed;
      top: 60px; 
      right: 0; /* 📍Moves the nav bar to the right */
      width: 200px;
      background-color: rgba(248, 249, 250, 0.95); 
      /* background-color: #f8f9fa; */
      /* background-color: ; */
      flex-direction: column;
      display: none;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      z-index: 1000;
  
      /* 🎯 Added smooth slide-in animation */
      transform: translateX(100%); /* Hidden by default */
      transition: transform 0.3s ease-in-out; /* Smooth transition */
    }
  
    /* 🎯 Change 4: When active, the nav bar appears */
    .navigation ul.active {
      display: flex;
      transform: translateX(0); /* Slide in from right */
    }
  
    .navigation li {
      margin: 10px 0;
    }
  }