* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.container.fullrow {
    max-width: 100%;
}
/* ===== Left Sidebar ===== */
  .sidebar {
    width: 300px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }

  .filter-box h3 {
    margin-bottom: 10px;
    color: #00803d;
  }
  input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
  }
/* Dropdown Style */
  .dropdown {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
  }
 .dropdown-header {
    background: #00803d;
    color: white;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
  }
.dropdown-content {
    display: none; 
    background: #fafafa;
    padding: 10px 15px;
  }

  .dropdown-content label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    cursor: pointer;
  }
.dropdown-content input {
    margin-right: 6px;
  }
 .arrow1 {
    transition: transform 0.3s ease;
  }

.dropdown.active .dropdown-content {
    display: block;
  }
 .dropdown.active .arrow {
    transform: rotate(90deg);
  }
  .dropdown.active .arrow1 {
    transform: rotate(90deg);
}
/* ===== Right Content ===== */
.main-content {
  flex: 3;
  min-width: 600px;
}
.records-count {
  margin-bottom: 10px;
  font-size: 16px;
}
.records-count span {
  color: red;
  font-weight: 600;
}
.college-card {
  background:rgb(235, 248, 248);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 10px;
  padding: 10px;
  display: flex;
  height: auto;
  align-items: center;
  gap: 20px;
}

.college-card img {
   background:rgb(141, 141, 132);
  width: 90px;
   /* height: auto; */
  overflow: hidden;
  border-radius: 2px;
   position: relative;
margin-top: -100px;
  object-fit: cover;
}
.college-card img  {
  width: 90px;
  overflow: hidden;
  border-radius: 2px;
   position: relative;
margin-top: -50px;
  object-fit: cover;
}
.card-details {
  flex: 1;
  font-size:15px;
}

.card-details h4 {
  font-size: 18px;
  margin-bottom: 5px;
}
.card-details p {
    font-size: 17px;
    color: #444;
    margin-bottom: 10px;
}

.badges {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 5px;
  
}
.badge {
  background: #f5f5f5;
  padding: 4px 8px;
  color:#333333;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
}
.price {
  background: #000;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
}
.card-details p {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}
.hidden-text {
      display: none; 
    }
.buttons {
  display: flex;
  gap: 10px;
}

.btn {
  border: 1px solid #00b44b;
  background: #fff;
  color: #00b44b;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.btn:hover {
  background: #00b44b;
  color: #fff;
}
.view-btn{
  color: #3083dc;
}
.btn i {
  margin-right: 5px;
}
.btn1 {
  position: relative;  
  left: 600px;         
  padding: 6px 10px;
  background-color: #3083dc;
  border: 2px solid black;  
  margin-right: 5px;
  cursor: pointer;          
  border-radius: 5px;      
}
/* Responsive */
@media(max-width: 900px) {
  .container {
    flex-direction: column;
  }
  .sidebar, .main-content {
    width: 100%;
  }
}