    body {
      box-sizing: border-box;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

    html, body {
      width: 100%;
      height: 100%;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      background: #000000;
      color: #FFFFFF;
      overflow-x: hidden;
      overflow-y: auto;
    }

    .page-wrapper {
      width: 100%;
      min-height: 100%;
      position: relative;
    }

    /* Animated Gradient Background */
    .gradient-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #000000;
      overflow: hidden;
      z-index: 0;
    }

    .gradient-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.4;
      animation: float 20s ease-in-out infinite;
    }

    .orb-1 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, #00A7FF 0%, transparent 70%);
      top: -10%;
      left: 10%;
      animation-delay: 0s;
    }

    .orb-2 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, #00E5FF 0%, transparent 70%);
      top: 20%;
      right: 5%;
      animation-delay: 2s;
    }

    .orb-3 {
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, #2C2F73 0%, transparent 70%);
      bottom: 10%;
      left: 15%;
      animation-delay: 4s;
    }

    .orb-4 {
      width: 550px;
      height: 550px;
      background: radial-gradient(circle, #FF4A2C 0%, transparent 70%);
      bottom: 15%;
      right: 20%;
      animation-delay: 6s;
    }

    .orb-5 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, #FFC300 0%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation-delay: 8s;
    }

    .orb-6 {
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, #009F84 0%, transparent 70%);
      top: 30%;
      left: 30%;
      animation-delay: 10s;
    }

    @keyframes float {
      0%, 100% {
        transform: translate(0, 0) scale(1);
      }
      25% {
        transform: translate(30px, -30px) scale(1.1);
      }
      50% {
        transform: translate(-20px, 20px) scale(0.9);
      }
      75% {
        transform: translate(20px, 30px) scale(1.05);
      }
    }

    /* Content Container */
    .content-container {
      position: relative;
      z-index: 1;
    }

    /* Navigation */
    .nav-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 20px;
      font-weight: 700;
    }

    .logo-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: linear-gradient(135deg, #00A7FF 0%, #00E5FF 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 18px;
      color: #000000;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      transition: all 0.3s ease;
      position: relative;
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: #00E5FF;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #00A7FF, #00E5FF);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
      padding: 8px;
    }

    .mobile-menu {
      display: none;
    }

    /* Bottom Mobile Navigation */
    .mobile-bottom-nav {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 12px 0 20px;
      z-index: 100;
      box-shadow: 0 -4px 30px rgba(0, 167, 255, 0.1);
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
    }

    .mobile-nav-items {
      display: flex;
      justify-content: space-around;
      align-items: center;
      max-width: 600px;
      margin: 0 auto;
      padding: 0 16px;
    }

    .mobile-nav-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      text-decoration: none;
      color: rgba(255, 255, 255, 0.6);
      font-size: 11px;
      font-weight: 500;
      padding: 8px 12px;
      border-radius: 12px;
      transition: all 0.3s ease;
      min-width: 60px;
    }

    .mobile-nav-item:active {
      transform: scale(0.95);
    }

    .mobile-nav-item.active {
      color: #00E5FF;
    }

    .mobile-nav-item.active .mobile-nav-icon {
      background: rgba(0, 229, 255, 0.15);
      border-color: rgba(0, 229, 255, 0.4);
    }

    .mobile-nav-icon {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .mobile-nav-item:hover .mobile-nav-icon {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-2px);
    }

    .mobile-nav-item.active .mobile-nav-icon {
      transform: translateY(-2px);
    }

    .mobile-nav-label {
      font-size: 11px;
      letter-spacing: 0.02em;
    }

    /* Hero Section */
    .hero-section {
      min-height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 140px 24px 80px;
      text-align: center;
    }

    .hero-content {
      max-width: 1200px;
      width: 100%;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 167, 255, 0.1);
      border: 1px solid rgba(0, 167, 255, 0.3);
      padding: 10px 20px;
      border-radius: 50px;
      margin-bottom: 32px;
      animation: fadeInUp 0.6s ease-out;
    }

    .badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #00E5FF;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% {
        opacity: 1;
        transform: scale(1);
      }
      50% {
        opacity: 0.5;
        transform: scale(1.2);
      }
    }

    .headline {
      font-size: clamp(48px, 8vw, 120px);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 24px;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #FFFFFF 0%, #00E5FF 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: fadeInUp 0.6s ease-out 0.1s backwards;
    }

    .subheadline {
      font-size: clamp(24px, 3vw, 40px);
      font-weight: 600;
      margin-bottom: 20px;
      color: #FFC300;
      animation: fadeInUp 0.6s ease-out 0.2s backwards;
    }

    .description {
      font-size: clamp(16px, 2vw, 20px);
      font-weight: 400;
      line-height: 1.6;
      margin-bottom: 48px;
      color: rgba(255, 255, 255, 0.7);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      animation: fadeInUp 0.6s ease-out 0.3s backwards;
    }

    .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 60px;
      animation: fadeInUp 0.6s ease-out 0.4s backwards;
    }

    .btn {
      padding: 18px 40px;
      font-size: 17px;
      font-weight: 600;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      position: relative;
      overflow: hidden;
      border: none;
      outline: none;
    }

    .btn-primary {
      background: linear-gradient(135deg, #00A7FF 0%, #00E5FF 100%);
      color: #000000;
      box-shadow: 0 10px 40px rgba(0, 167, 255, 0.3);
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s ease;
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 50px rgba(0, 167, 255, 0.5);
    }

    .btn-secondary {
      background: transparent;
      color: #FFFFFF;
      border: 2px solid rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      border-color: rgba(255, 255, 255, 0.6);
      background: rgba(255, 255, 255, 0.05);
      transform: translateY(-3px);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 24px;
      max-width: 800px;
      margin: 0 auto;
      animation: fadeInUp 0.6s ease-out 0.5s backwards;
    }

    .stat-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 24px;
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 167, 255, 0.2);
    }

    .stat-number {
      font-size: 36px;
      font-weight: 900;
      background: linear-gradient(135deg, #00E5FF 0%, #FFC300 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 500;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Section Container */
    .section {
      padding: 100px 24px;
      position: relative;
    }

    .section-header {
      text-align: center;
      margin-bottom: 80px;
    }

    .section-title {
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 900;
      margin-bottom: 16px;
      background: linear-gradient(135deg, #FFFFFF 0%, #00E5FF 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-subtitle {
      font-size: clamp(16px, 2vw, 20px);
      color: rgba(255, 255, 255, 0.6);
      font-weight: 500;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
    }

    /* Welcome Card */
    .welcome-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 32px;
      padding: 60px;
      position: relative;
      overflow: hidden;
    }

    .welcome-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, #00A7FF 0%, #00E5FF 50%, #00A7FF 100%);
    }

    .welcome-content {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 60px;
      align-items: start;
    }

    .welcome-photo-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: sticky;
      top: 120px;
    }

    .welcome-photo {
      width: 200px;
      height: 200px;
      margin-bottom: 24px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(0, 167, 255, 0.15) 0%, rgba(0, 229, 255, 0.15) 100%);
      border: 4px solid rgba(0, 229, 255, 0.3);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
      box-shadow: 0 10px 40px rgba(0, 167, 255, 0.2);
    }

    .welcome-photo:hover {
      transform: scale(1.05);
      border-color: rgba(0, 229, 255, 0.6);
      box-shadow: 0 15px 60px rgba(0, 229, 255, 0.4);
    }

    .welcome-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .welcome-identity {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .welcome-name {
      font-size: 24px;
      font-weight: 800;
      color: #FFFFFF;
      margin-bottom: 4px;
    }

    .welcome-position {
      font-size: 16px;
      font-weight: 600;
      color: #00E5FF;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .welcome-department {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      font-style: italic;
    }

    .welcome-message-section {
      flex: 1;
      position: relative;
    }

    .welcome-quote-icon {
      position: absolute;
      top: -20px;
      left: -20px;
      opacity: 0.3;
    }

    .welcome-text {
      position: relative;
      z-index: 1;
    }

    .welcome-paragraph {
      font-size: 17px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 24px;
      text-align: justify;
    }

    .welcome-paragraph:first-child {
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
    }

    .welcome-closing {
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
      font-style: italic;
    }

    .welcome-signature {
      margin-top: 48px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .signature-line {
      width: 200px;
      height: 2px;
      background: linear-gradient(90deg, #00A7FF 0%, transparent 100%);
      margin-bottom: 16px;
    }

    .signature-name {
      font-size: 18px;
      font-weight: 700;
      color: #FFFFFF;
    }

    .signature-title {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      font-style: italic;
    }

    /* Timeline */
    .timeline {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .timeline-item {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 32px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, #00A7FF 0%, #00E5FF 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .timeline-item:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateX(10px);
      box-shadow: 0 10px 40px rgba(0, 167, 255, 0.2);
    }

    .timeline-item:hover::before {
      opacity: 1;
    }

    .timeline-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 16px;
      flex-wrap: wrap;
      gap: 12px;
    }

    .timeline-title {
      font-size: 24px;
      font-weight: 700;
      color: #FFFFFF;
    }

    .timeline-date {
      font-size: 14px;
      color: #00E5FF;
      font-weight: 600;
      background: rgba(0, 229, 255, 0.1);
      padding: 6px 16px;
      border-radius: 20px;
      border: 1px solid rgba(0, 229, 255, 0.3);
    }

    .timeline-description {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
    }

    .timeline-item.highlight {
      background: rgba(0, 167, 255, 0.08);
      border-color: rgba(0, 167, 255, 0.3);
    }

    .timeline-item.highlight .timeline-title {
      color: #00E5FF;
    }

    .timeline-item.spotlight {
      background: linear-gradient(135deg, rgba(0, 217, 184, 0.12) 0%, rgba(0, 255, 200, 0.12) 50%, rgba(0, 229, 255, 0.12) 100%);
      border: 3px solid #00D9B8;
      box-shadow: 0 0 60px rgba(0, 217, 184, 0.6), 0 0 120px rgba(0, 255, 200, 0.4), 0 0 180px rgba(0, 229, 255, 0.3);
      transform: scale(1.02);
      position: relative;
      animation: aurora-pulse 4s ease-in-out infinite;
      overflow: hidden;
    }

    .timeline-item.spotlight::before {
      width: 6px;
      background: linear-gradient(180deg, #00D9B8 0%, #00FFC8 50%, #00E5FF 100%);
      opacity: 1;
      box-shadow: 0 0 20px rgba(0, 255, 200, 0.8);
    }

    .timeline-item.spotlight::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(0, 217, 184, 0.15) 25%,
        rgba(0, 255, 200, 0.25) 40%,
        rgba(0, 229, 255, 0.15) 50%,
        rgba(0, 255, 200, 0.25) 60%,
        rgba(0, 217, 184, 0.15) 75%,
        transparent 100%);
      z-index: -1;
      animation: aurora-wave 8s linear infinite;
      filter: blur(30px);
    }

    .timeline-item.spotlight .timeline-title {
      color: #00FFC8;
      font-size: 28px;
      text-shadow: 
        0 0 20px rgba(0, 255, 200, 0.8),
        0 0 40px rgba(0, 217, 184, 0.6),
        0 0 60px rgba(0, 229, 255, 0.4);
      animation: aurora-glow 3s ease-in-out infinite alternate;
    }

    .timeline-item.spotlight .timeline-date {
      background: linear-gradient(135deg, rgba(0, 217, 184, 0.25), rgba(0, 255, 200, 0.25));
      border: 2px solid #00FFC8;
      color: #00FFC8;
      font-weight: 700;
      box-shadow: 
        0 0 20px rgba(0, 255, 200, 0.5),
        0 0 40px rgba(0, 217, 184, 0.3);
      animation: date-shimmer 2s ease-in-out infinite;
    }

    .timeline-item.spotlight .timeline-description {
      color: rgba(232, 245, 245, 1);
      font-weight: 500;
      text-shadow: 0 0 10px rgba(0, 217, 184, 0.3);
    }

    .timeline-item.spotlight:hover {
      transform: scale(1.03) translateX(10px);
      box-shadow: 
        0 0 80px rgba(0, 217, 184, 0.8), 
        0 0 150px rgba(0, 255, 200, 0.6),
        0 0 220px rgba(0, 229, 255, 0.4);
    }

    @keyframes aurora-pulse {
      0%, 100% {
        box-shadow: 
          0 0 60px rgba(0, 217, 184, 0.6), 
          0 0 120px rgba(0, 255, 200, 0.4), 
          0 0 180px rgba(0, 229, 255, 0.3);
      }
      33% {
        box-shadow: 
          0 0 80px rgba(0, 255, 200, 0.7), 
          0 0 150px rgba(0, 229, 255, 0.5), 
          0 0 220px rgba(0, 217, 184, 0.4);
      }
      66% {
        box-shadow: 
          0 0 70px rgba(0, 229, 255, 0.65), 
          0 0 140px rgba(0, 217, 184, 0.45), 
          0 0 200px rgba(0, 255, 200, 0.35);
      }
    }

    @keyframes aurora-wave {
      0% {
        transform: rotate(0deg) translate(0, 0);
      }
      100% {
        transform: rotate(360deg) translate(0, 0);
      }
    }

    @keyframes aurora-glow {
      0% {
        text-shadow: 
          0 0 20px rgba(0, 255, 200, 0.8),
          0 0 40px rgba(0, 217, 184, 0.6),
          0 0 60px rgba(0, 229, 255, 0.4);
      }
      50% {
        text-shadow: 
          0 0 30px rgba(0, 229, 255, 0.9),
          0 0 60px rgba(0, 255, 200, 0.7),
          0 0 90px rgba(0, 217, 184, 0.5);
      }
      100% {
        text-shadow: 
          0 0 25px rgba(0, 217, 184, 0.85),
          0 0 50px rgba(0, 229, 255, 0.65),
          0 0 75px rgba(0, 255, 200, 0.45);
      }
    }

    @keyframes date-shimmer {
      0%, 100% {
        box-shadow: 
          0 0 20px rgba(0, 255, 200, 0.5),
          0 0 40px rgba(0, 217, 184, 0.3);
      }
      50% {
        box-shadow: 
          0 0 30px rgba(0, 229, 255, 0.6),
          0 0 60px rgba(0, 255, 200, 0.4);
      }
    }

    /* Grid Cards */
    .grid-2col {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
      gap: 32px;
    }

    .card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 40px;
      transition: all 0.3s ease;
    }

    .card:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-5px);
      box-shadow: 0 15px 50px rgba(0, 167, 255, 0.2);
    }

    .card-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 32px;
    }

    .card-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: rgba(0, 167, 255, 0.1);
      border: 1px solid rgba(0, 167, 255, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .card-title {
      font-size: 28px;
      font-weight: 700;
      color: #FFFFFF;
    }

    .card-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .list-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 16px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
    }

    .list-icon {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      margin-top: 2px;
    }

    /* Progress Bars */
    .progress-item {
      margin-bottom: 24px;
    }

    .progress-header {
      display: flex;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .progress-label {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 500;
    }

    .progress-value {
      font-size: 16px;
      font-weight: 700;
      color: #00FFC8;
    }

    .progress-bar {
      height: 8px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, #00D9B8 0%, #00FFC8 100%);
      border-radius: 10px;
      transition: width 1s ease;
      position: relative;
      overflow: hidden;
    }

    .progress-fill::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      animation: shimmer 2s infinite;
    }

    @keyframes shimmer {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }

    .divider {
      margin: 32px 0;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .passing-grade {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background: rgba(255, 195, 0, 0.1);
      border: 1px solid rgba(255, 195, 0, 0.3);
      border-radius: 16px;
    }

    .passing-grade-label {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 500;
    }

    .passing-grade-value {
      font-size: 32px;
      font-weight: 900;
      color: #FFC300;
    }

    /* Contact Cards */
    .grid-4col {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
    }

    .contact-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 32px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .contact-card:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 217, 184, 0.25);
    }

    .contact-icon {
      width: 64px;
      height: 64px;
      border-radius: 20px;
      background: rgba(0, 217, 184, 0.15);
      border: 1px solid rgba(0, 217, 184, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .contact-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
      color: #FFFFFF;
    }

    .contact-info {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
    }

    .office-hours-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 40px;
      text-align: center;
      margin-top: 32px;
    }

    .office-hours-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .office-hours-title {
      font-size: 24px;
      font-weight: 700;
      color: #FFFFFF;
    }

    .office-hours-info {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.8;
    }

    /* Portfolio Format Styles */
    .portfolio-model-card {
      background: linear-gradient(135deg, rgba(0, 167, 255, 0.1) 0%, rgba(255, 195, 0, 0.1) 100%);
      border: 2px solid rgba(0, 167, 255, 0.3);
      border-radius: 24px;
      padding: 40px;
      margin-bottom: 60px;
      position: relative;
      overflow: hidden;
    }

    .portfolio-model-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #00A7FF 0%, #FFC300 100%);
    }

    .model-badge {
      display: inline-block;
      background: rgba(0, 229, 255, 0.2);
      border: 1px solid rgba(0, 229, 255, 0.4);
      color: #00E5FF;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.05em;
      margin-bottom: 20px;
    }

    .model-title {
      font-size: 28px;
      font-weight: 900;
      margin-bottom: 24px;
      color: #FFFFFF;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .model-description {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .model-info-item {
      display: flex;
      gap: 12px;
      font-size: 16px;
      line-height: 1.6;
    }

    .model-label {
      font-weight: 700;
      color: #00E5FF;
      min-width: 100px;
    }

    .model-value {
      color: rgba(255, 255, 255, 0.9);
    }

    .portfolio-structure {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .structure-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 32px;
      display: flex;
      gap: 24px;
      transition: all 0.3s ease;
      position: relative;
    }

    .structure-card:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateX(5px);
      box-shadow: 0 10px 40px rgba(0, 167, 255, 0.2);
    }

    .structure-card.highlight-card {
      background: rgba(255, 195, 0, 0.08);
      border-color: rgba(255, 195, 0, 0.3);
    }

    .structure-card.final-card {
      background: rgba(255, 74, 44, 0.08);
      border-color: rgba(255, 74, 44, 0.3);
    }

    .structure-number {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: linear-gradient(135deg, #00A7FF 0%, #00E5FF 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      font-weight: 900;
      color: #000000;
      flex-shrink: 0;
    }

    .structure-content {
      flex: 1;
    }

    .structure-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #FFFFFF;
    }

    .structure-subtitle {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 20px;
      font-style: italic;
    }

    .structure-subtitle.important-note {
      color: #FF4A2C;
      font-weight: 600;
      font-style: normal;
    }

    .structure-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .structure-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 16px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
    }

    .structure-icon {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      margin-top: 2px;
    }

    /* Infographic Grid */
    .infographic-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 16px;
    }

    .infographic-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 20px;
      background: rgba(255, 195, 0, 0.05);
      border: 1px solid rgba(255, 195, 0, 0.2);
      border-radius: 16px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .infographic-item:hover {
      background: rgba(255, 195, 0, 0.1);
      transform: translateY(-3px);
    }

    .infographic-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(255, 195, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .infographic-item span {
      font-size: 14px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
    }

    /* Works Format */
    .works-format, .works-types {
      margin-top: 24px;
    }

    .works-subtitle {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 16px;
      color: #FFC300;
    }

    .works-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 12px;
    }

    .works-item {
      padding: 12px 16px;
      background: rgba(0, 167, 255, 0.05);
      border: 1px solid rgba(0, 167, 255, 0.2);
      border-radius: 12px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.9);
      text-align: center;
      transition: all 0.3s ease;
    }

    .works-item:hover {
      background: rgba(0, 167, 255, 0.1);
      transform: scale(1.02);
    }

    .type-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .type-tag {
      padding: 10px 20px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 20px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.9);
      transition: all 0.3s ease;
      cursor: default;
    }

    .type-tag:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(0, 229, 255, 0.4);
      transform: translateY(-2px);
    }

    /* Process Grid */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 16px;
    }

    .process-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 24px;
      background: rgba(0, 167, 255, 0.05);
      border: 1px solid rgba(0, 167, 255, 0.2);
      border-radius: 16px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .process-item:hover {
      background: rgba(0, 167, 255, 0.1);
      transform: translateY(-3px);
    }

    .process-icon {
      font-size: 32px;
    }

    .process-item span {
      font-size: 14px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
    }

    /* QR Grid */
    .qr-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 16px;
    }

    .qr-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 24px;
      background: rgba(0, 229, 255, 0.05);
      border: 1px solid rgba(0, 229, 255, 0.2);
      border-radius: 16px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .qr-item:hover {
      background: rgba(0, 229, 255, 0.1);
      transform: translateY(-3px);
    }

    .qr-icon {
      font-size: 40px;
    }

    .qr-item span {
      font-size: 14px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
    }

    /* Examiners Grid */
    .examiners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 32px;
      margin-bottom: 60px;
    }

    .examiner-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 32px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .examiner-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #00A7FF 0%, #00E5FF 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .examiner-card:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(0, 167, 255, 0.3);
      border-color: rgba(0, 229, 255, 0.4);
    }

    .examiner-card:hover::before {
      opacity: 1;
    }

    .examiner-photo {
      width: 140px;
      height: 140px;
      margin: 0 auto 24px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(0, 167, 255, 0.2) 0%, rgba(0, 229, 255, 0.2) 100%);
      border: 3px solid rgba(0, 229, 255, 0.3);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
      position: relative;
    }

    .examiner-card:hover .examiner-photo {
      transform: scale(1.05);
      border-color: rgba(0, 229, 255, 0.6);
      box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
    }

    .photo-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(0, 167, 255, 0.15) 0%, rgba(0, 229, 255, 0.15) 100%);
      color: rgba(0, 229, 255, 0.6);
    }

    .examiner-info {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .examiner-name {
      font-size: 20px;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .examiner-title {
      font-size: 15px;
      font-weight: 600;
      color: #00E5FF;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .examiner-specialization {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
      font-style: italic;
    }

    /* Schedule Info Box */
    .schedule-info-box {
      background: linear-gradient(135deg, rgba(0, 167, 255, 0.1) 0%, rgba(0, 229, 255, 0.1) 100%);
      border: 2px solid rgba(0, 229, 255, 0.3);
      border-radius: 24px;
      padding: 40px;
      position: relative;
      overflow: hidden;
    }

    .schedule-info-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #00A7FF 0%, #00E5FF 100%);
    }

    .schedule-info-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 32px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .schedule-info-title {
      font-size: 28px;
      font-weight: 800;
      color: #00E5FF;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .schedule-details {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
    }

    .schedule-detail-item {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      transition: all 0.3s ease;
    }

    .schedule-detail-item:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 167, 255, 0.2);
    }

    .schedule-label {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.6);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .schedule-value {
      font-size: 16px;
      font-weight: 600;
      color: #FFFFFF;
      line-height: 1.5;
    }

    /* Validation Sections */
    .validation-sections {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      margin-top: 20px;
    }

    .validation-section {
      padding: 24px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
    }

    .validation-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 16px;
      color: #00E5FF;
    }

    .validation-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .validation-item {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
    }

    /* Footer */
    .footer {
      padding: 40px 24px;
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(0, 0, 0, 0.5);
    }

    .footer-text {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.5);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .grid-2col {
        grid-template-columns: 1fr;
      }

      .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .welcome-photo-section {
        position: static;
      }
    }

    @media (max-width: 1024px) {
      .nav-links {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      .mobile-bottom-nav {
        display: block;
      }
    }

    @media (max-width: 768px) {

      .hero-section {
        padding: 120px 20px 100px;
      }

      .page-wrapper {
        padding-bottom: 80px;
      }

      .section {
        padding: 60px 20px;
      }

      .section-header {
        margin-bottom: 50px;
      }

      .timeline-item {
        padding: 24px;
      }

      .card {
        padding: 28px;
      }

      .grid-4col {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }

      .examiners-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
      }

      .schedule-info-box {
        padding: 28px;
      }

      .schedule-details {
        grid-template-columns: 1fr;
      }

      .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 16px;
      }

      .stat-card {
        padding: 20px;
      }

      .stat-number {
        font-size: 28px;
      }

      .cta-buttons {
        flex-direction: column;
        gap: 16px;
      }

      .btn {
        width: 100%;
        max-width: 320px;
      }

      .welcome-card {
        padding: 32px 24px;
      }

      .welcome-photo {
        width: 160px;
        height: 160px;
      }

      .welcome-paragraph {
        font-size: 16px;
      }
    }

    @media (max-width: 480px) {
      .grid-2col {
        grid-template-columns: 1fr;
      }

      .grid-4col {
        grid-template-columns: 1fr;
      }

      .timeline-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .card-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .examiners-grid {
        grid-template-columns: 1fr;
      }

      .examiner-photo {
        width: 120px;
        height: 120px;
      }

      .examiner-name {
        font-size: 18px;
      }

      .schedule-info-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      .schedule-info-title {
        font-size: 24px;
      }
    }

    /* Scroll behavior */
    html {
      scroll-behavior: smooth;
    }
