 body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f8fafc;
  color: #1e293b;
}
.container{
    max-width:1200px;
    margin:auto;
    padding:15px
    
}
.grid{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:20px
    
}
.filter-box{
    background:#fff;
    padding:15px;
    border-radius:8px
    
}
.test-card{
    background:#fff;
    padding:15px;
    border-radius:8px;
    margin-bottom:12px
    
}
h3,h4{
    margin:10px 0
    
}
.search{
    width:100%;
    padding:10px
    
}
label{
    display:block;
    margin:6px 0;
    font-size:14px
    
}
.institution-header {
  padding: 60px 15px;
  
}

.header-card {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}


.header-info h1 {
  margin: 0;
  font-size: 1.5rem;
}

.tagline {
  color: #475569;
  margin: 8px 0;
}

.address {
  font-size: 0.95rem;
  color: #64748b;
}

.profile-section {
  max-width: 1000px;
  margin: 45px auto;
  padding: 0 15px;
}

.profile-section h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #0f172a;
}

.profile-section p {
  line-height: 1.7;
  color: #334155;
}

.course-list {
  list-style: none;
  padding: 0;
}

.course-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
}

.highlight {
  background: #eef2ff;
  padding: 35px 15px;
  border-radius: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.feature-card {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.cta {
  text-align: center;
}

.cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}


.reviews-section {
  margin-top: 40px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.rating-summary {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.avg-rating .rating-number {
  font-size: 36px;
  font-weight: bold;
}

.stars {
  color: #f4c150;
  font-size: 18px;
}

.btn-review {
  background: #007bff;
  color: #fff;
  padding: 8px 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.review-list {
  margin-top: 20px;
}

.review-card {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.review-header {
  display: flex;
  justify-content: space-between;
}



.review-form-card {
  max-width: 420px;
  margin: 30px auto;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.review-form-card h3 {
  margin-bottom: 15px;
}

.star-rating {
  font-size: 34px;
  color: #ccc;
  cursor: pointer;
  margin-bottom: 5px;
}

.star-rating span {
  margin: 0 3px;
  transition: transform 0.15s ease, color 0.15s ease;
}

.star-rating span:hover {
  transform: scale(1.2);
}

.rating-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.review-form-card input,
.review-form-card textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.review-form-card textarea {
  resize: none;
}

.btn-submit-review {
  width: 100%;
  background: #007bff;
  color: #fff;
  padding: 11px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
}

.btn-submit-review:hover {
  background: #0056b3;
}




