.programs-section {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
  }
  
  .programs-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .programs-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
  }
  
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .program-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .program-card:hover {
    transform: translateY(-5px);
  }
  
  .program-icon {
    font-size: 40px;
    background: #eef4ff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 15px;
  }
  
  .program-university {
    font-size: 14px;
    font-weight: bold;
    color: #357edd;
    margin-bottom: 8px;
  }
  
  .program-title {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0 10px;
  }
  
  .program-rating {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .program-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .program-tag {
    background: #333;
    color: #fff;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  
  /* ✅ All Programs Tag Hover */
  .program-card:hover .program-tag {
    background: #8692e2;
  }

  .programs-link {
    margin-top: 40px;
    display: inline-block;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
  }
  
  .programs-link:hover {
    text-decoration: underline;
  } 

  /* ===== Popup Modal Style ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 12px;
  width: 60%;
  max-width: 700px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.close-btn {
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.form-header {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

.form-deadline {
  background: #e0fafa;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.apply-btn {
  background: #ffa98e;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.apply-btn:hover {
  background: #ff8c70;
}

.form-consent {
  font-size: 12px;
  margin-top: 10px;
  color: #555;
}

