  .container1 {
   margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
  }
.container1 h3{
      font-size: 1.17em;
}
  .sidebar1 {
    width: 260px;
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }

  .menu-item {
    position: relative;
    background-color: #ffffff;
    padding: 12px 16px;
    margin-bottom: 3px;
    border-left: 5px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    font-size:14px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  
  .menu-item.active {
    border-left: 5px solid #003049;
    background-color: #e9ecef;
  }

  .menu-item::after {
    content: "▶";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #003049;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .menu-item:hover::after,
  .menu-item.active::after {
    opacity: 1;
  }

  .content1 {
    flex: 1;
    padding-left: 30px;
      background-image: url('assets/images/side-bar-bg.jpg'); /* Replace with actual path */
  background-size: cover; /* Cover entire container */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent tiling */
  }


  .sticky-bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #003049;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    z-index: 999;
  }

  .sticky-bottom-nav button {
    background: transparent;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
  }

  .sticky-bottom-nav button:hover {
    text-decoration: underline;
  }
  .programme-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
  }
  
  .programme-level {
    margin-bottom: 1rem;
  }
  

  .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
 
  .programme-row {
  display: flex;
  border-top: 1px solid #ccc;
  padding: 20px 0;
}

.stream-name,
.ug-programmes,
.pg-programmes {
  flex: 1;
  padding: 0 10px;
}

/* .card1 {
  background: #fff7f1;
  margin: 5px 0;
  padding: 10px;
  border-left: 4px solid #8b2c2c;
  font-family: 'Georgia', serif;
} */

h3, h4 {
  margin-bottom: 10px;
}

.search-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px;
}

.search-container {
  flex: 1;
  display: flex;
}

.search-container input {
  flex: 1;
  padding: 10px;
  font-size: 1rem;
  border-radius: 25px 0 0 25px;
  border: 1px solid #ccc;
}

.search-container button {
  padding: 10px 20px;
  background-color: #2f5c99;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
}

  