@media (max-width: 768px) {
  .about-section {  max-width: 800px; /* Adjust the maximum width of the project details */
    margin: 0 auto; /* Center align */
  padding-top: 5px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 0px;}

  .video-container {
    width: 80%; /* Adjust width for mobile screens */
    padding-top: 150px;
  }
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff1e8; /* Pink background */
    color: #000000; /* Black text color */
    margin: 0;
    padding: 0;
    cursor: url('images/custom-cursor.png'), auto;
  }

  
  
  /* Navbar Styles */
  .navbar {
    list-style: none;
    background-color: rgba(158, 143, 178, 0); /* Purple color with 50% opacity */
    display: flex;
    justify-content: space-around; /* Align items horizontally */
    align-items: center; /* Align items vertically */
    padding: 10px 0; /* Padding around the list */
  }
  
  /* Style each navigation link */
  .navbar li {
    margin: 0 15px; /* Add space between each link */
  }
  
  .navbar a {
    text-decoration: none;
    color: #000000; /* White text color */
    font-family: 'Poppins', sans-serif; /* Poppins font */
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease; /* Smooth color transition on hover */
  }
  
  /* Change link color on hover */
  .navbar a:hover {
    color: #9e8fb2; /* Green color */
  }
  
  /* Styles for the video container */
  .video-container {
    position: relative; /* Change from fixed to relative */
    width: 38%; /* Adjust width as needed */
    margin: 0 auto; /* Center the video container horizontally */
  }
  
  /* Center the video within the container */
  .center-video {
    display: block;
    width: 100%;
    height: auto;
  }
  
  /* Styles for the loading throbber container */
  .loading-throbber {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff; /* Change to desired background color */
  }
  
  /* Style the throbber video */
  #throbberVideo {
    max-width: 100%;
    max-height: 100%;
  }
  


  .footer-content {
    display: flex;
    justify-content: space-between; /* Creates space between left and right content */
    align-items: center;
  }
  
  .left-content {
    display: flex;
    align-items: center;
  }
  
  .right-content {
    display: flex;
    align-items: center;
    padding-right: 30px;
  }
  
  .social-icons {
    width: 3rem;
    height: 3rem;
    margin-left: 10px; /* Add spacing between social icons if needed */
  }
  


  
   /* Style the footer */
  footer {
    background-color: #000000; /* Pink background */
    color: #fff1e8; /* Black text color */
    text-align: center; /* Center-align content */
    padding: 20px; /* Add padding for better spacing */
      /* Position the footer at the bottom */
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  }
 
  /* Style quick links */
  .footer-content a {
    text-decoration: none;
    color: #fff1e8; /* Black text color */
    margin-right: 10px; /* Add space between links */
  }


  .footer-content a:hover {
    text-decoration: none;
    color: #9e8fb2; /* Black text color */
    margin-right: 10px; /* Add space between links */
  }
 
  /* Style small square logo */
  .logo {
    width: 3rem;
    height: 3rem;
    position: fixed;
    bottom: 20px; /* Assuming you meant '5px' instead of just '5' */
    left: 50%; /* Place the logo at the center horizontally */
    transform: translateX(-50%); /* Adjust to horizontally center the logo */
    display: flex;
    justify-content: center; /* Align content to center horizontally */
    align-items: center; /* Align content to center vertically */
  }





/* Specific styles for the individual project page */
.content {
  padding: 20px; /* Adjust padding as needed */
}

.about-section {  max-width: 800px; /* Adjust the maximum width of the project details */
  margin: 0 auto; /* Center align */}

.project-details {
  max-width: 800px; /* Adjust the maximum width of the project details */
  margin: 0 auto; /* Center align */
}

.project-details h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.project-details p {
  font-size: 18px;
  margin-bottom: 10px;
}

.additional-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Adjust gap between additional images */
}

.additional-images img {
  max-width: 100%;
  height: auto;
}



/* Styles for the image carousel */
.image-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 5px;
}

.carousel-image {
  display: none;
  width: 100%;
  height: auto;
}

.carousel-image.active {
  display: block;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  color: black;
  font-size: 18px;
  cursor: pointer;
  padding: 10px;
  z-index: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}






/* Your existing CSS styles can be retained */

/* Styles for the "View Another Project" section */
.view-another-project {
  margin-top: 10px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 150px;
}

.view-another-project p {
  font-size: 18px;
  margin-bottom: 10px;
}

.project-links {
  display: flex;
  justify-content: center;
}

.project-links a {
  display: inline-block;
  margin: 0 10px;
  padding: 8px 16px;
  text-decoration: none;
  background-color: #f2f2f2;
  color: #333;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.project-links a:hover {
  background-color: #ddd;
}



/* Styles for the "View Another Project" section */
.view-another-project {
  margin-top: 50px;
  text-align: center;
}

.view-another-project p {
  font-size: 18px;
  margin-bottom: 10px;
}

.project-links {
  display: flex;
  justify-content: center;
}

.project-link {
  position: relative;
  margin: 0 10px;
  overflow: hidden;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff1e8;
  border-radius: 50%;
}

.project-image {
  width: 100%;
  height: auto;

  transition: opacity 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.project-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-link:hover .project-image {
  opacity: 0.7;
}

.project-link:hover .project-name {
  opacity: 1;
}


