/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #000;
    line-height: 1.6;
  }

  p {
    text-indent: 15%;
    line-height: 32px;   /* within paragraph */
    margin-bottom: 30px; /* between paragraphs */
    }

p a {
	margin: 0;
	padding: 0;
} 
h4 a {  text-decoration: none;
      font-size: 16px;
      font-weight: bold;
      color: #000;
      text-transform: uppercase;
}

    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }
    
    nav ul li a {
      text-decoration: none;
      font-size: 16px;
      font-weight: bold;
      color: #000;
      text-transform: uppercase;
    }
  
  /* Sticky Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #000;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  /* Logo Styling */
  .logo {
    font-size: 24px;
    font-weight: bold;
  }
  .logo a{
   color:#000;
  }
  
  /* Navigation Menu */
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav ul li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #000;
  }
  
  /* Sticky Footer */
  footer {
    text-align: center;
    padding: 20px;
    background-color: #f7f7f7;
    border-top: 1px solid #000;
    position: sticky;
    bottom: 0;
    width: 100%;
  }
  
  /* Secondary Sliding Navigation (below the header) */
  .secondary-nav {
    position: sticky;
    top: -60px; /* Position it to appear just under the header */
    width: 100%;
    background-color: #f7f7f7;
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%); /* Hidden by default */
    z-index: 999;
  }
  
  .secondary-nav ul {
    display: sticky;
    justify-content: center;
    list-style: none;
    padding: 10px 0;
  }
  
  .secondary-nav ul li a {
    text-decoration: none;
    padding: 10px 20px;
    color: #000;
    font-weight: bold;
  }
  
  .secondary-nav:hover {
    transform: translateY(0); /* Slide down on hover */
  }
  
  /* Project Page Layout */
  .project-page {
    display: flex;
    height: calc(100vh - 120px); /* Full height minus sticky header/footer */
    padding-top: 0px;
  }
  
  .project-image-container, .project-details-container {
    flex: 1;
    overflow-y: scroll;
  }

  .project-video-container, .project-details-container {
    flex: 1;
    overflow-y: scroll;
  }
  
  .project-video-container {
    background-color: #f7f7f7;
    border-right: 1px solid #000;
  }
  
  .project-image-container {
    background-color: #f7f7f7;
    border-right: 1px solid #000;
  }
  
  .project-details-container {
    padding: 15px;
  }
  
  /* Scrollable Boxes */
  .scrollable-box {
    height: 100%;
    overflow-y: scroll;
    padding: 10px;
  }
  
  .project-image-container img {
    max-width: 100%;
    height: auto;
    cursor: pointer;
  }
  
  /* Secondary Header */
.secondary-header {
  display: flex;
  justify-content: right;
  background-color: #ffffff;
  padding: 10
  px;
  border-bottom: 1px solid #000;
}

.dropdown {
  position: sticky;
  display: inline-block;
}

.dropdown-btn {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 10px 10px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f7f7f7;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border: 1px solid #000;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

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

/* Show the dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropdown-btn {
  background-color: #333;
}

/* By default, the dropdown content is hidden */
.dropdown-content {
  display: none;
}

/* Show the dropdown when the 'show' class is added */
.dropdown-content.show {
  display: block;
}


  /* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Dimmed background */
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  transform: scale(0.8); /* Start small */
  transition: all 0.4s ease; /* Smooth transition */
}

.lightbox.active {
  display: flex;
  opacity: 1;
  transform: scale(1); /* Full size */
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img, .lightbox-content iframe {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(0.8); /* Start small */
  transition: all 0.4s ease;
}

.lightbox-content.active img, .lightbox-content.active iframe {
  opacity: 1;
  transform: scale(1); /* Full size */
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active .close-lightbox {
  opacity: 1;
}