:root {
    /* Color Palette */
    --primary-color: #263A6D;
    --secondary-color: #3498DB;
    --accent-color: #27AE60;
    --background-light: #F4F6F7;
    --text-dark: #2C3E50;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
  }
  
  /* Header Redesign */
 /* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 1rem 2rem; /* Combined compact and full padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Content layout */
.header-content {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* Space between icon and text */
}

/* Emblem adjustments */
.emblem {
  width: 80px; /* Consistent icon size */
  height: 80px;
  object-fit: contain; /* Ensure the image scales proportionally */
  display: inline-block;
}

/* Text styles */
.header-text {
  display: flex;
  flex-direction: column; /* Align text vertically */
  gap: 0.2rem;
}

.header-text h1 {
  font-size: 1.5rem; /* Consistent font size */
  color: var(--primary-color);
  margin: 0;
  white-space: nowrap;
  font-weight: 700;
}

.header-text h2 {
  font-size: 1rem; /* Unified font size */
  color: var(--secondary-color);
  margin: 0;
  white-space: nowrap;
  font-weight: 500; /* Adjusted for emphasis */
}

/* Navigation */
.navigation {
  background-color: var(--primary-color);
  padding: 0.75rem 2rem; /* Standardized padding */
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navbar links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  justify-content: space-around;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

  
  /* Navigation Redesign */
  /* .navigation {
    background-color: var(--primary-color);
    padding: 0.75rem 2rem;
}
  
  .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
  }
  
  .nav-links a {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  } */

  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      display: none; /* Hide by default */
      flex-direction: column;
      position: absolute;
      top: 60px; /* Adjust based on navbar height */
      right: 0;
      width: 100%;
      background-color: var(--primary-color);
      padding: 1rem 0;
      gap: 1rem;
      z-index: 1000;
    }
  
    .nav-links.active {
      display: flex; /* Show on toggle */
    }
  
    .nav-toggle {
      display: block; /* Show toggle button */
    }
  }
  
  /* Roles Section */
  /* Roles Section */
.roles-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 3rem 2rem;
  background-color: var(--background-light);
  flex-wrap: wrap; /* Ensures cards wrap on smaller screens */
}

.role-card {
  width: 250px;
  height: 300px;
  background-color: var(--white);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.role-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.role-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.role-card:hover .role-icon {
  transform: scale(1.1);
}

.role-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .roles-section {
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .role-card {
    width: 220px;
    height: 280px;
  }

  .role-card h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .roles-section {
    gap: 1rem;
    padding: 2rem 1rem;
  }

  .role-card {
    width: 200px;
    height: 260px;
  }

  .role-icon {
    width: 100px;
    height: 100px;
  }

  .role-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .roles-section {
    flex-direction: column; /* Stacks cards vertically */
    padding: 1.5rem 1rem;
    gap: 1.25rem;
  }

  .role-card {
    width: 90%; /* Cards take almost full width */
    height: auto;
    padding: 1rem;
  }

  .role-icon {
    width: 90px;
    height: 90px;
  }

  .role-card h3 {
    font-size: 1.1rem;
  }
}

  
  /* News Section */
  /* News Section */
.news {
  background-color: var(--white);
  padding: 2rem;
  margin: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.news h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.news-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.news-item {
  display: flex;
  align-items: center;
  background-color: var(--background-light);
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.news-item:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.news-item:hover .news-icon svg {
  stroke: var(--white);
}

.news-item:hover .chevron {
  color: var(--white);
}

.news-icon {
  margin-right: 1rem;
}

.news-icon svg {
  stroke: var(--primary-color);
  transition: stroke 0.3s ease;
}

.news-item h3 {
  flex-grow: 1;
  font-size: 1rem;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.news-item:hover h3 {
  color: var(--white);
}

.chevron {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .news {
    padding: 1.5rem;
    margin: 1.5rem;
  }

  .news h2 {
    font-size: 1.6rem;
  }

  .news-container {
    gap: 1rem;
  }

  .news-item {
    padding: 0.75rem;
  }

  .news-item h3 {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .news {
    padding: 1rem;
    margin: 1rem;
  }

  .news h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .news-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
  }

  .news-item {
    padding: 0.5rem;
    flex-direction: column;
    text-align: center;
  }

  .news-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .chevron {
    font-size: 1.2rem;
  }
}

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

  .news h2 {
    font-size: 1.2rem;
  }

  .news-container {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .news-item {
    padding: 0.5rem;
  }

  .news-item h3 {
    font-size: 0.9rem;
  }

  .chevron {
    font-size: 1rem;
  }
}

  
  /* Existing CSS for remaining sections continues... */
  .search-container {
    display: flex;
    align-items: center;
  }
  
  .search-container input {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px 0 0 4px;
    width: 250px;
  }
  
  .search-container button {
    background-color: var(--secondary-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0 4px 4px 0;
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .search-container button:hover {
    background-color: var(--accent-color);
  }
  
  .breadcrumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
  }
  
  .breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.5rem;
  }
  
  .section-nav {
    display: flex;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 1rem 2rem;
    gap: 1rem;
    overflow-x: auto;
  }
  
  .section-nav button {
    background-color: transparent;
    border: none;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .section-nav button.active {
    background-color: var(--secondary-color);
    color: var(--white);
  }
  
  .section-nav button:hover {
    background-color: rgba(52, 152, 219, 0.1);
  }
  
  .score-section {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }
  
  .score-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
  }
  
  .score-input {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .score-input input {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.5rem;
    width: 100px;
  }
  
  .table-container {
    background-color: var(--white);
    border-radius: 8px;
    margin: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
  }
  
  table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }
  
  th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
  }
  
  th {
    background-color: var(--background-light);
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
  }
  
  .add-button {
    display: flex;
    justify-content: flex-end;
    margin: 1rem 2rem;
  }
  
  .add-button button {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .add-button button:hover {
    background-color: #2ECC71;
  }
  
  .navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin: 1rem 2rem;
  }
  
  .navigation-buttons button {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .prev-btn, .next-btn {
    background-color: var(--secondary-color);
    color: var(--white);
  }
  
  .draft-btn {
    background-color: var(--background-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
  }
  
  .submit-btn {
    background-color: var(--accent-color);
    color: var(--white);
  }
  
  .modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .modal-content {
    background-color: var(--white);
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .modal-header h3 {
    color: var(--primary-color);
  }
  
  .close {
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
  }
  
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--background-light);
  }
  
  .user-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .profile-container {
    position: relative;
  }
  
  .profile-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .profile-info:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .profile-name {
    color: var(--white);
    font-weight: 500;
  }
  
  .dropdown-icon {
    color: var(--white);
    font-size: 0.75rem;
    margin-left: 0.25rem;
  }
  
  .profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
    margin-top: 0.5rem;
  }
  
  .profile-dropdown.hidden {
    display: none;
  }
  
  .profile-dropdown ul {
    list-style: none;
    padding: 0.5rem 0;
  }
  
  .profile-dropdown ul li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.75rem 1rem;
    transition: background-color 0.3s ease;
  }
  
  .profile-dropdown ul li a:hover {
    background-color: var(--background-light);
  }
  
  .profile-dropdown ul li a i {
    width: 20px;
    text-align: center;
  }
  
  .profile-dropdown .logout a {
    color: #E74C3C;
  }
  
  .notification-bell {
    position: relative;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .notification-bell:hover {
    color: var(--secondary-color);
  }
  
  .notification-bell .fas {
    font-size: 1.25rem;
  }
  
  .notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #E74C3C;
    color: var(--white);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center


  }
  a {
    text-decoration: none;
  }