
  <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>SDB@UoH</title>
  <style>
    /* Reset & General Styles */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      background-color: #f8fafc;
      color: #1e293b;
      line-height: 1.6;
    }

    /* Top Banner Bar */
    .banner-container {
      position: relative;
      height: 180px;
      background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
      border-bottom: 4px solid #3b82f6;
    } 
  
  /* --- TOP BANNER BAR --- */
    .top-banner {
      width: 100%;
      height: 220px;
      position: relative;
      background-color: #002b49; /* Academic Navy fallback */
      overflow: hidden;
    }

    .top-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.85);
    }

    .banner-title {
      position: absolute;
      bottom: 20px;
      left: 30px;
      color: #ffffff;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    }

    /* Profile Photo in Banner's Left Corner */
    .profile-photo {
      position: absolute;
      left: 40px;
      bottom: -40px;
      /* 1. Adjust dimensions here if you want it larger/smaller */
      width: 130px;
      height: 130px;
      border-radius: 50%;
      border: 4px solid #ffffff;
      object-fit: cover;
      /* 2. Fixes the top of the head being cut off */
  		object-position: top center;
      background-color: #cbd5e1;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
      /* Prevent clicking, dragging, and opening */
  		pointer-events: none;
  		user-select: none;
  		-webkit-user-drag: none;
    }

    /* Layout Wrapper (Sidebar + Main Body) */
    .layout-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px 40px;
      display: grid;
      grid-template-columns: 220px 1fr; /* Fixed sidebar, full-width main area */
      gap: 30px;
    }

    /* Side Navigation Panel */
    .sidebar {
      background: #ffffff;
      padding: 20px;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
      height: fit-content;
    }
    .sidebar-nav {
      list-style: none;
    }
    .sidebar-nav li {
      margin-bottom: 8px;
    }
    .sidebar-nav a {
      display: block;
      padding: 10px 14px;
      color: #334155;
      text-decoration: none;
      font-weight: 500;
      border-radius: 6px;
      transition: background 0.2s, color 0.2s;
    }
    .sidebar-nav a:hover,
    .sidebar-nav a.active {
      background-color: #1e3a8a;
      color: #ffffff;
    }

    /* Center/Main Body Content */
    .main-content {
      background: #ffffff;
      padding: 35px;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
      width: 100%; /* Expands full width from left to right */
    }

    .prof-header {
      margin-bottom: 25px;
      border-bottom: 2px solid #f1f5f9;
      padding-bottom: 15px;
    }
    .prof-header h1 {
      font-size: 2.2rem;
      color: #0f172a;
    }
    .prof-header p {
      font-size: 1.1rem;
      color: #64748b;
    }

    /* Content Sections */
    .section {
      margin-bottom: 30px;
    }
    .section-title {
      font-size: 1.3rem;
      color: #1e3a8a;
      margin-bottom: 12px;
      border-bottom: 2px solid #e2e8f0;
      padding-bottom: 4px;
    }

    .info-card {
      background-color: #f8fafc;
      border-left: 4px solid #1e3a8a;
      padding: 12px 16px;
      margin-top: 8px;
      border-radius: 0 6px 6px 0;
    }

    ul.content-list {
      padding-left: 20px;
    }
    ul.content-list li {
      margin-bottom: 10px;
    }

    /* Responsive adjustments for mobile screens */
    @media (max-width: 768px) {
      .layout-wrapper {
        grid-template-columns: 1fr;
      }
      .profile-photo {
        left: 50%;
        transform: translateX(-50%);
      }
      .layout-wrapper {
        padding-top: 50px;
      }
    }
     .course-list {
      list-style: none;
    }

    .course-item {
      padding: 16px 0;
      border-bottom: 1px solid #edf2f7;
    }

    .course-item:last-child {
      border-bottom: none;
    }

    .course-code {
      font-weight: 700;
      color: #3182ce;
      margin-right: 8px;
    }

    .course-title {
      font-weight: 600;
      color: #2d3748;
    }
  </style>
</head>

