body {
    padding: 0;
    margin: 0;
}

/* Header styles */

.nav {
    width: 100%;
    background-color: rgb(80, 49, 61);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    padding: 15px;
    justify-content: space-between;
    z-index: 100;
}

.nav_list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    padding-right: 10px;
    /* Adjust alignment */
}

.nav_list li {
    margin-right: 15px;
}

.nav_list li a {
    text-decoration: none;
    color: black;
}

/* Hamburger icon styles */
.hamburger {
    display: none;
    /* Hidden by default on larger screens */
    cursor: pointer;
    margin-right: 10px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 5px 0;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999; 
    color: white;
    text-align: center;
}

.content-heading {
    font-size: 46px; /* Adjust font size as needed */
}


/*project content styles*/
.project-head{
    font-size: 26px;
    text-align: center;
    color: rgb(27, 27, 109);
}

.project-div-image1 {
    width: 100%; /* Ensure the div takes up the full width */
    height: 300px; /* Adjust height as needed */
    background-image: url("assets/collaboration.png"); /* Specify the image path */
    background-size: cover; /* Ensure the image covers the entire div */
    background-position: center; /* Center the image within the div */
    border-radius: 10px; /*rounded corners*/
}
.project-details {
    display: flex;
    gap: 10px;
    padding: 5px;
}
.project-details > div {
    flex: 1; /* Each div covers 1/2 width */
}

.features li{
    list-style: none;
    margin-left: -10px;
}


/* Media query for responsive design */
@media screen and (max-width: 768px) {
    .nav {
        background-color: white;
        width: 100%;
        position: fixed;
        padding: 10px;
        z-index: 100;
        display: flex;
        align-items: center;
    }

    .nav_list {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 48px;
        left: 0;
        width: 100%;
        background-color: white;
        border-bottom: 3px solid black;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        z-index: 1;
    }

    .nav_list.active {
        display: flex;
        /* Display the list when active */
    }

    .nav_list li {
        padding: 10px 0;
        /* Adjust padding */
        border-bottom: 1px solid #ccc;
        /* Add separator between list items */
        width: 100%;
        /* Make each item occupy full width */
        text-align: center;
        /* Center text */
    }

    .hamburger {
        display: block;
        padding-right: 10px;
        margin-right: 10px;
    }
    .project-details {
        flex-direction: column;
        
    }
    .project-details > div {
        flex: auto; /* Reset flex property for smaller screens */
    }
}


#system-use h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: rgb(25, 15, 77);
    text-decoration: underline;
  }
  
  #system-users {
    background-color: white;
    display: grid;
    height: 300px;
    grid-template-columns: repeat(3, 1fr); /* Three equal columns */
    gap: 20px; /* Gap between columns */
  }
  
  #system-users > div {
    padding: 10px;
    border: 1px solid #ccc; /* Adding border around each column */
  }
  
  #system-users h3 {
    font-weight: bold;
    margin-top: 0; 
    color: rgb(6, 6, 18);
  }
  
  ul {
    list-style: none;
    padding: 0;
    margin: 0; /* Remove default margin */
  }
  
  ul li {
    margin-bottom: 5px;
    margin-bottom: 10px; /* Double the margin */
    font-size: 16px;
  }
  
  #about h2 {
    text-align: center;
    color: rgb(28, 22, 68);
  }
  
@media screen and (max-width: 768px) {
  #system-users {
      grid-template-columns: 1fr; 
      height: auto; 
  }

  #system-users > div {
      margin-bottom: 20px; 
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  #system-users {
      grid-template-columns: repeat(2, 1fr); 
      height: auto; 
  }
  #system-users > div {
      margin-bottom: 20px; 
  }
}
@media screen and (min-width: 1024px) {
  #system-users {
      grid-template-columns: repeat(3, 1fr); 
      height: 300px; 
  }
}
  
  #team {
    background-color: white;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 300px;
    gap: 20px; 
  }
    
  #team img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    overflow: hidden; 
  }
  
  #team > * {
    
    border: 1px solid #ccc;
  }
  
  #team h3 {
    margin-top: 10px; 
  }
  
  #team p {
    margin-bottom: 10px; 
  }
  
  #team .flex {
    justify-content: center;
  }

  /* For small screens */
@media screen and (max-width: 768px) {
  #team {
      grid-template-columns: repeat(1, 1fr); 
      gap: 10px; 
  }
}

/* For medium screens */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #team {
      grid-template-columns: repeat(2, 1fr); /* Display as two columns */
  }
}

/* For large screens */
@media screen and (min-width: 1024px) {
  #team {
      grid-template-columns: repeat(3, 1fr); /* Display as three columns */
  }
}
  
  footer {
    background-color: rgb(255, 255, 255);
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    color: rgb(13, 31, 120);
}