  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #e2e8f0;
    min-height: 100vh;
    padding: 20px;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    margin-bottom: 40px;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  
  .nav {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .nav-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s;
  }
  
  .nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
  }
  
  .container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 30px;
  }
  
  .sidebar {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    padding: 30px;
    height: fit-content;
  }
  
  .university-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .university-name {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 30px;
  }
  
  .rector-card {
    background: rgba(51, 65, 85, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .rector-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .rector-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
  }
  
  .rector-name {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 12px;
  }
  
  .rector-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
  }
  
  .quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .quick-link {
    background: rgba(51, 65, 85, 0.3);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
  }
  
  .quick-link:hover {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
  }
  
  .quick-link-icon {
    font-size: 20px;
  }
  
  .quick-link-content h4 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 2px;
  }
  
  .quick-link-content p {
    font-size: 12px;
    color: #64748b;
  }
  
  .main-content {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    padding: 40px;
  }
  
  .glow-effect {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  
  .main-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
  }
  
  .main-subtitle {
    font-size: 18px;
    color: #fbbf24;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  
  .main-desc {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .stat-card {
    text-align: center;
    padding: 20px;
  }
  
  .stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
  }
  
  .stat-card:nth-child(1) .stat-number {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .stat-card:nth-child(2) .stat-number {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .stat-card:nth-child(3) .stat-number {
    background: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .stat-label {
    font-size: 14px;
    color: #64748b;
  }
  
  .action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .btn-secondary {
    background: rgba(51, 65, 85, 0.5);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .btn-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
  }
  
  .contact-info {
    padding: 20px;
    background: rgba(51, 65, 85, 0.3);
    border-radius: 12px;
    font-size: 14px;
    color: #94a3b8;
  }
  
  .footer {
    text-align: center;
    padding: 30px;
    color: #64748b;
    font-size: 13px;
    margin-top: 40px;
  }
  
  @media (max-width: 1024px) {
    .container {
      grid-template-columns: 1fr;
    }
    
    .header {
      flex-direction: column;
      gap: 20px;
    }
    
    .stats {
      grid-template-columns: 1fr;
    }
  }
  
  
  .icon {
    font-size: 36px;
    background: linear-gradient(135deg, #38bdf8, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }


   .file-upload {
      position: relative;
    }

    .file-label {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 20px;
      border: 2px dashed rgba(59, 130, 246, 0.5);
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      background: rgba(59, 130, 246, 0.05);
    }

    .file-label:hover {
      border-color: rgba(59, 130, 246, 0.8);
      background: rgba(59, 130, 246, 0.1);
    }

    .file-label .icon {
      font-size: 32px;
      min-width: 32px;
    }

    .file-label .text {
      flex: 1;
    }

    .file-label .title {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #60a5fa;
      margin-bottom: 4px;
    }

    .file-label .subtitle {
      display: block;
      font-size: 12px;
      color: #94a3b8;
    }

    .file-label .btn {
      padding: 8px 16px;
      background: rgba(59, 130, 246, 0.2);
      border: 1px solid rgba(59, 130, 246, 0.5);
      border-radius: 6px;
      color: #60a5fa;
      font-size: 12px;
      font-weight: 600;
      white-space: nowrap;
      transition: all 0.3s ease;
    }

    .file-label:hover .btn {
      background: rgba(59, 130, 246, 0.3);
      border-color: rgba(59, 130, 246, 0.8);
    }

    .file-name {
      margin-top: 10px;
      padding: 10px 15px;
      background: rgba(34, 197, 94, 0.1);
      border: 1px solid rgba(34, 197, 94, 0.3);
      border-radius: 8px;
      color: #22c55e;
      font-size: 13px;
      display: none;
      animation: slideDown 0.3s ease;
    }

    .file-name.active {
      display: block;
    }

    .file-name .check {
      margin-right: 6px;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


i {
  font-size: 18px;
}

.logo-icon i,
.university-logo i {
  font-size: 32px;
}

.quick-link-icon i {
  font-size: 22px;
  color: #38bdf8;
}
