<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.section-heading {
      text-align: center;
      margin-bottom: 10px;
    }
    
    .section-heading h2 {
      position: relative;
      padding-bottom: 15px;
      margin-bottom: 15px;
    }
    
    .section-heading h2:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      margin-left: -40px;
      width: 80px;
      height: 3px;
      background: #3498db;
    }
    
    .admission-card {
      display: block;
      color: #fff;
      border-radius: 8px;
      text-align: center;
      margin-bottom: 20px;
      padding: 20px 15px;
      height: 200px;
      position: relative;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      overflow: hidden;
    }
    
    .admission-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0,0,0,0.2);
      text-decoration: none;
      color: #fff;
    }
    
    .badge-open {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(255,255,255,0.9);
      color: #333;
      padding: 3px 8px;
      border-radius: 15px;
      font-weight: bold;
      font-size: 12px;
      animation: blink 1.5s infinite;
    }
    
    .card-icon {
      display: inline-block;
      width: 50px;
      height: 50px;
      line-height: 50px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      margin-bottom: 15px;
    }
    
    .card-blue {
      background: linear-gradient(135deg, #3498db, #2c3e50);
    }
    
    .card-red {
      background: linear-gradient(135deg, #e74c3c, #c0392b);
    }
    
    .card-green {
      background: linear-gradient(135deg, #2ecc71, #27ae60);
    }
    
    .card-purple {
      background: linear-gradient(135deg, #9b59b6, #8e44ad);
    }
    
    .admission-card h3 {
      margin-top: 0;
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
    }
    
    .admission-card p {
      margin-bottom: 5px;
      opacity: 0.9;
    }
    
    @keyframes blink {
      0% { opacity: 1; }
      50% { opacity: 0.7; }
      100% { opacity: 1; }
    }
    
    @media (max-width: 767px) {
      .admission-card {
        height: 180px;
        padding: 15px 10px;
      }
    }</pre></body></html>