body {
    font-family: 'ISOCT', sans-serif;
    line-height: 1.6;
    background-color: #fafafa;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'ISOCT', sans-serif;
    background-color: #fafafa;
    color: #333;
  }
  
  /* Project Detail Layout */
  .project-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    gap: 40px;
  }
  
  .project-image img {
    max-width: 500px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  h1 {
    font-size: 2.5rem;
    font-family: 'FantasqueSansBoldItalic', sans-serif;
  }
  
  .project-info h1 {
    margin-bottom: 30px;
  }
  .project-info{
    margin-bottom: 300px;

  }
  .project-info p {
    font-size: 1.2rem;
    font-family: 'PoppinsLight', sans-serif;
    font-weight: lighter;
  }
  
  /* Modal Overlay */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:white;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff; /* White background for slider */
    border-radius: 10px;
    padding: 20px;
    
  }
  .close-modal {
    position: fixed; /* Keeps it fixed relative to the viewport */
    top: 19px; /* Same as menu-close */
    right: 30px; /* Same as menu-close */
    font-size: 1rem;
    background: none; /* Transparent background */
    border: none; /* No border */
    cursor: pointer; /* Pointer cursor */
    color: #333; /* Text color to match menu-close */
    display: flex; /* Align icon and text, similar to menu-close */
    align-items: center; /* Center vertically */
    gap: 5px; /* Space between icon and text */
    z-index: 2100; /* Ensure it appears above other content */
  }

.close-modal img {
  width: 27px; /* Adjust the size of the close icon */
  height: auto; /* Maintain aspect ratio */
}

.close-modal p {
  font-size: 0.9rem; /* Adjust text size */
  font-weight: bold; /* Bold text */
  margin: 0;
}

  
  /* Slider */
  .slider-container {
    display: flex;
    align-items: center;
  }
  
  .slider-arrow {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    margin: 0 20px;
    color: #333;
  }
  
  #slider-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
  }
  a {
    text-decoration: none;
    color: #000;
  }
  
/* Right Sidebar */
.right-sidebar {
    position: fixed;
    top: 0;
    right: 20px;
    height: 100%; /* Full height of the viewport */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center items vertically */
    align-items: center; /* Center items horizontally */
    z-index: 1000;
    padding: 20px 0;
  }
  
  .logo-button {
    position: fixed; /* Fix it at a consistent location relative to the viewport */
    top: 20px; /* Distance from the top */
    left: 20px; /* Distance from the left */
    display: inline-block;
    margin: 0; /* Remove unnecessary margin */
    padding: 5px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: 1500; /* Ensure it stays above other content */
  }
  
  .logo-button img {
    width: 150px;
    height: auto;
    max-width: 100%;
    display: block;
  }
  
  
  
  /* Menu Button */
  .nav-item.menu {
    margin-bottom: auto; /* Push the menu button to the top */
  }
  
  /* Social Media Buttons */
  .social-media {
    display: flex;
    flex-direction: column; /* Stack social media buttons vertically */
    align-items: center;
    gap: 20px; /* Spacing between social media buttons */
    margin-right: 5px;
  
  }
  
  /* Individual Navigation Items */
  .nav-item {
    text-align: center;
    font-size: 1rem;
    color: #333;
  }
  
  .nav-item img {
    width: 25px;
    height: auto;
    margin-bottom: 5px;
  }
  
  .nav-item p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: bold;
  }
  
  /* Menu Overlay with Transparent Background */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    color: black;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Menu Content Styling (White Tab) */
  .menu-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    background: white;       /* Solid white background for the menu tab */
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  /* Menu Header */
  .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  #menu-close {
    font-size: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
  }
  /* Menu Sections Container */
  .menu-sections {
    display: flex;
    gap: 40px;  /* Space between main menu and submenu */
    align-items: flex-start;  /* Align items at the top */
    width: 100%;              /* Take full width of the content area */
  }
  
  /* Main Menu Styling */
  .main-menu {
    list-style: none;
    font-size: 3rem;
    cursor: pointer;
    flex: auto;                  /* Allow main menu to take up available space */
  }
  
  .main-menu li {
    margin-bottom: 30px; /* Adds spacing between menu items */
    font-weight: bolder;
  }
  .right-sidebar {
    position: fixed;
    top: 0;
    right: 0; /* Align to the right edge of the viewport */
    width: 80px; /* Set a consistent width for the sidebar */
    height: 100%; /* Full height of the viewport */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: space-between; /* Space out menu and social icons */
    align-items: center; /* Center items horizontally */
    z-index: 1000;
    padding: 20px 0; /* Add vertical padding for spacing */
  }
  /* Submenu Styling */
  .submenu {
    list-style: none;
    font-size: 1.5rem;
    color: #666;
    display: none;            /* Hidden initially */
    flex: auto;                  /* Allow submenu to take up available space */
  }
  .submenu li {
    margin-top: 30px;
      margin-bottom: 15px; /* Adjust spacing for submenu items */
    color: #666;
  }
  
  /* Remove underline and default link color */
  .submenu a {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Inherits text color from parent element */
  }
  
  /* Remove hover styling if needed */
  .submenu a:hover {
    color: inherit; /* Prevents hover color change */
    text-decoration: none; /* Ensures underline doesn't appear on hover */
  }
  
  /* Remove default visited link styles */
  .submenu a:visited {
    color: inherit; /* Ensures visited links don't appear in a different color */
    text-decoration: none;
  }
  
  
  /* Responsive Design */
  @media (max-width: 768px) {
    
  .divider {
    display: none !important;
  }

  .right-sidebar {
    padding: 10px 0;
margin-left: 30px;  }

#menu-text {
  display: none; /* Hides the menu text */
}
.menu-content {
  padding: 5px; /* Further reduce padding */
}
.main-menu li {
  font-size: 1rem; /* Keep the font size for main menu readable */
  padding: 2px 0; /* Space between menu items */
  font-weight: bolder; /* Make the main menu items more distinct */
}

/* Submenu Items */
.submenu {
  font-size: 0.4rem; /* Reduce font size for mobile */
  padding: 0; /* Remove padding around the submenu */
  gap: 6px; /* Add spacing between submenu items */
  margin-left: 10px; /* Indent submenu slightly */
  list-style: none; /* Remove default list styling */
  display: none; /* Initially hidden */
}

/* Submenu Items (Individual) */
.submenu li {
  padding: 5px 0; /* Space between submenu items */
  font-size: 0.8rem; /* Adjust font size for readability */
  text-align: left; /* Align submenu items to the left */
  color: #333; /* Set text color */
  font-weight: normal; /* Make submenu items less prominent than main menu */
  cursor: pointer; /* Indicate interactivity */
}

/* Submenu Links */
.submenu a {
  text-decoration: none; /* Remove underline from links */
  color: inherit; /* Inherit text color from parent */
}
.project-detail {
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  gap: 10px; /* Add spacing between stacked elements */
  align-items: center; /* Center align the content horizontally */
  padding: 10px; /* Add padding around the content */
}

.project-info {
  order: 1; /* Bring title and info above the image */
  text-align: left; /* Center-align text for better mobile readability */
  margin-bottom: 10px; /* Add spacing below the text */
  margin-top: 50px;
}

.project-image {
  order: 2; /* Position image below the title and info */
  width: 100%; /* Make the image span full width */
  text-align: center;
}

.project-image img {
  width: 100%; /* Ensure the image is responsive */
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px; /* Optional: Add rounded corners */
}

.modal-content {
  width: 100%;
  max-width: 90%; /* Limit modal width on smaller devices */
  padding: 10px;
}

.slider-container {
  gap: 10px;
}

.slider-arrow {
  padding: 5px;
  font-size: 1.2rem;
}

#slider-image {
  max-width: 70%; /* Make the image span the full width on mobile */
  justify-content: center;
}
.right-sidebar {
  width: 40px; /* Even narrower sidebar */
}

.social-media img {
  width: 18px; /* Smaller icons */
}
  }
  
    
  