/* dashboard.css */
    :root {
      --primary: #FF6B35;
      --secondary: #004E89;
      --accent: #FFD166;
      --light: rgba(255, 255, 255, 0.9);
      --dark: #1A1A1D;
      --warning: #dc3545;
      --warning-bg: rgba(220, 53, 69, 0.1);
      --transition: all 0.3s ease;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--light);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow-x: hidden;
    }

    .background-container {
      position: fixed; top: 0; left: 0;
      width: 100%; height: 100%;
      background: url("images/background-PARMISA.jpg") no-repeat center center / cover;
      z-index: -2;
    }

    .background-container::after {
      content: ""; position: absolute; top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.7);
      z-index: -1;
    }

    .security-warning {
      background: var(--warning-bg);
      border: 2px solid var(--warning);
      border-radius: 8px;
      padding: 1rem;
      margin: 1rem 2rem;
      position: relative;
      z-index: 15;
      backdrop-filter: blur(10px);
      animation: fadeIn 0.5s ease-in-out;
    }

    .warning-content {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
    }

    .warning-icon {
      color: var(--warning);
      font-size: 1.5rem;
      font-weight: bold;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .warning-text {
      flex: 1;
    }

    .warning-text h3 {
      color: var(--warning);
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      font-family: 'Montserrat', sans-serif;
    }

    .warning-text p {
      color: var(--light);
      font-size: 0.95rem;
      line-height: 1.4;
      margin-bottom: 0.5rem;
    }

    .official-site {
      color: var(--accent);
      font-weight: 600;
      text-decoration: underline;
    }

    .dismiss-btn {
      position: absolute;
      top: 0.5rem;
      right: 0.8rem;
      background: none;
      border: none;
      color: var(--warning);
      font-size: 1.2rem;
      cursor: pointer;
      padding: 0.2rem;
      opacity: 0.7;
      transition: var(--transition);
    }

    .dismiss-btn:hover {
      opacity: 1;
      transform: scale(1.1);
    }

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

    .navbar {
      z-index: 10; padding: 1.5rem 2rem;
      display: flex; justify-content: space-between; align-items: center;
      position: relative;
    }

    .navbar-brand {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.8rem; font-weight: 700;
      color: var(--light); text-decoration: none;
      letter-spacing: 1px;
    }

    .navbar-brand span { color: var(--primary); }

    #menuToggle {
      display: none;
      background: none;
      border: none;
      color: var(--light);
      font-size: 1.8rem;
      cursor: pointer;
      padding: 0.5rem;
    }

    nav {
      display: flex;
      gap: 2rem;
    }

    nav a {
      color: var(--light); text-decoration: none; font-weight: 500;
      transition: var(--transition);
    }
    nav a:hover { color: var(--primary); }

    main {
      flex: 1; padding: 2rem;
    }

    .dashboard-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .dashboard-header h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.5rem;
      color: var(--accent);
      margin-bottom: 0.5rem;
    }

    .dashboard-header p {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.8);
    }

    .report-options {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin: 2rem 0;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .report-card {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      padding: 1.5rem;
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
      border: 1px solid rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
    }

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

    .report-card:hover::before {
      left: 100%;
    }

    .report-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.4);
      background: rgba(255, 255, 255, 0.2);
    }

    .report-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 1rem;
      transition: var(--transition);
    }

    .report-card:hover img {
      transform: scale(1.05);
    }

    .report-card h3 {
      color: var(--accent);
      margin-bottom: 0.8rem;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.3rem;
    }

    .report-card p {
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.5;
      font-size: 0.95rem;
    }

    .quick-actions {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      padding: 2rem;
      margin: 3rem auto;
      max-width: 800px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      text-align: center;
    }

    .quick-actions h2 {
      color: var(--primary);
      font-family: 'Montserrat', sans-serif;
      margin-bottom: 1.5rem;
    }

    .action-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      background: var(--primary);
      color: white;
      padding: 0.8rem 1.5rem;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      border: none;
      cursor: pointer;
    }

    .btn:hover {
      background: #e05c28;
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: var(--secondary);
    }

    .btn-secondary:hover {
      background: #003d6b;
    }

    .about-section {
      background: rgba(0,0,0,0.7);
      padding: 2rem;
      border-radius: 12px;
      margin-top: 3rem;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .about-section h2 {
      color: var(--primary);
      text-align: center;
      margin-bottom: 1.5rem;
      font-family: 'Montserrat', sans-serif;
    }

    .about-section p {
      margin-bottom: 1rem;
      line-height: 1.6;
      text-align: justify;
    }

    .mission-vision {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin: 2rem 0;
    }

    .mission-vision div {
      background: rgba(255, 255, 255, 0.1);
      padding: 1.5rem;
      border-radius: 10px;
      border-left: 4px solid var(--primary);
      transition: var(--transition);
    }

    .mission-vision div:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateX(5px);
    }

    .mission-vision h3 {
      color: var(--accent);
      margin-bottom: 1rem;
      font-family: 'Montserrat', sans-serif;
    }

    .objectives {
      margin-top: 2rem;
    }

    .objectives h3 {
      color: var(--accent);
      margin-bottom: 1rem;
      font-family: 'Montserrat', sans-serif;
    }

    .objectives ul {
      padding-left: 1.5rem;
    }

    .objectives li {
      margin-bottom: 0.8rem;
      line-height: 1.5;
    }

    footer {
      text-align: center; padding: 1rem; font-size: 0.9rem; opacity: 0.6;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .security-warning {
        margin: 1rem;
      }

      .warning-content {
        flex-direction: column;
        text-align: center;
      }

      .warning-icon {
        align-self: center;
      }

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

      #menuToggle {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 2rem;
      }

      nav {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
        gap: 0;
      }

      nav.active {
        display: flex;
      }

      nav a {
        margin: 0.5rem 0;
        padding: 0.5rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      nav a:last-child {
        border-bottom: none;
      }

      main {
        padding: 1rem;
      }

      .dashboard-header h1 {
        font-size: 2rem;
      }

      .report-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .report-card {
        max-width: 400px;
        margin: 0 auto;
      }

      .about-section {
        padding: 1.5rem;
        margin-top: 2rem;
      }

      .about-section h2 {
        font-size: 1.5rem;
      }

      .mission-vision {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .action-buttons {
        flex-direction: column;
        align-items: center;
      }

      .btn {
        width: 200px;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .security-warning {
        margin: 0.5rem;
        padding: 0.8rem;
      }

      .warning-text h3 {
        font-size: 1rem;
      }

      .warning-text p {
        font-size: 0.85rem;
      }

      .navbar {
        padding: 1rem;
      }

      .navbar-brand {
        font-size: 1.5rem;
      }

      #menuToggle {
        top: 1rem;
        right: 1rem;
      }

      .dashboard-header h1 {
        font-size: 1.8rem;
      }

      .report-card {
        padding: 1rem;
      }

      .report-card img {
        height: 150px;
      }

      .about-section {
        padding: 1rem;
      }

      .mission-vision div {
        padding: 1rem;
      }

      .quick-actions {
        padding: 1.5rem;
      }
    }
