  :root {
      --brand-blue: #ac2d30;
      --brand-yellow: #f8f4c7;
      --brand-navy: #1e293b;
      --footer-bg: #4b5563;
      --footer-dark: #374151;
  }

  html,
  body {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden !important;
      margin: 0;
      padding: 0;
  }

  body {
      overflow-x: hidden;
      position: relative;
  }


  header a {
      text-decoration: none !important;
  }

  /* Ensure row alignments */
  .align-items-center {
      align-items: center !important;
  }

  body {
      font-family: 'Roboto', sans-serif;
      background-color: #f8fafc;
      color: #334155;
  }

  /* Top Ticker */
  .top-ticker {
      background-color: #f1f5f9;
      font-size: 0.8rem;
      padding: 4px 0;
      overflow: hidden;
  }


  /* =========================
   FEATURE CARDS - OVERLAPPING BANNER
========================= */
  /* Single Feature Card - All features together */
  .feature-cards-wrapper {
      margin-top: -80px;
      position: relative;
      z-index: 10;
      margin-bottom: 50px;
  }

  .single-feature-card {
      background: white;
      padding: 40px 30px;
      border-radius: 25px;
      box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
  }

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

  .feature-item {
      flex: 1;
      text-align: center;
      padding: 10px 20px;
      border-right: 2px solid #e2e8f0;
  }

  .feature-item:last-child {
      border-right: none;
  }

  .feature-item i {
      font-size: 50px;
      color: #94a3b8;
      margin-bottom: 15px;
      display: inline-block;
      transition: all 0.3s ease;
  }

  .feature-item h6 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #1e293b;
  }

  .feature-item p {
      font-size: 0.8rem;
      color: #64748b;
      margin-bottom: 0;
      line-height: 1.4;
  }

  /* Hover effect on individual items */
  .feature-item:hover i {
      color: var(--brand-blue);
      transform: translateY(-5px);
  }

  /* Responsive */
  @media (max-width: 768px) {
      .feature-cards-wrapper {
          margin-top: -40px;
          padding: 0 15px;
      }

      .single-feature-card {
          padding: 25px 20px;
      }

      .feature-items {
          flex-direction: column;
      }

      .feature-item {
          border-right: none;
          border-bottom: 2px solid #e2e8f0;
          margin-bottom: 20px;
          padding-bottom: 20px;
          width: 100%;
      }

      .feature-item:last-child {
          border-bottom: none;
          margin-bottom: 0;
          padding-bottom: 0;
      }

      .feature-item i {
          font-size: 40px;
      }
  }

  @media (min-width: 769px) and (max-width: 991px) {
      .feature-item {
          padding: 10px 10px;
      }

      .feature-item h6 {
          font-size: 0.85rem;
      }

      .feature-item p {
          font-size: 0.7rem;
      }

      .feature-item i {
          font-size: 35px;
      }
  }



  .ticker-wrapper {
      display: inline-block;
      white-space: nowrap;
      padding-left: 100%;
      animation: ticker-h 30s linear infinite;
  }

  @keyframes ticker-h {
      0% {
          transform: translateX(0);
      }

      100% {
          transform: translateX(-100%);
      }
  }

  /* Navbar Customization */
  .bg-brand-blue {
      background-color: var(--brand-blue) !important;
  }

  .nav-link {
      color: white !important;
      font-weight: 700;
      font-size: 0.75rem;
      text-transform: uppercase;
      padding: 15px 15px !important;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link:hover {
      background-color: #7f1d1d;
  }




  /* Contact Box */
  .contact-box {
      background-color: var(--brand-yellow);
      padding: 8px 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
  }





  /* Vertical Scroll (Ticker) */
  .ticker-v-container {
      height: 300px;
      overflow: hidden !important;
      position: relative;
  }

  .ticker-v-content {
      animation: ticker-v 20s linear infinite;
  }

  .ticker-v-content:hover {
      animation-play-state: paused;
  }

  @keyframes ticker-v {
      0% {
          transform: translateY(0);
      }

      100% {
          transform: translateY(-50%);
      }
  }

  /* Info Columns */
  .info-col {
      background: white;
      padding: 25px;
      border-top: 4px solid var(--brand-yellow);
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      height: 100%;
  }

  /* Service Grid */
  .service-box {
      padding: 30px 20px;
      text-align: center;
      border-radius: 12px;
      transition: all 0.3s;
      cursor: pointer;
      height: 100%;
  }

  .service-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .service-icon {
      width: 60px;
      height: 60px;
      line-height: 60px;
      border-radius: 12px;
      margin: 0 auto 15px;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .principal-section {
      position: relative;
      padding: 80px 0;
      color: white;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      background-repeat: no-repeat;
  }

  .principal-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.75);
      z-index: 1;
  }

  .principal-section .container {
      position: relative;
      z-index: 2;
  }

  .principal-section h4 {
      color: white;
      border-color: #fbbf24 !important;
  }

  .principal-section h6 {
      color: #fbbf24;
  }

  .principal-section p {
      color: white;
      opacity: 0.9;
  }

  .principal-section .border-warning {
      border-color: #fbbf24 !important;
  }

  .principal-section img {
      border: 3px solid rgba(255, 255, 255, 0.3) !important;
      border-radius: 15px !important;
      box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3) !important;
      transition: all 0.3s ease;
      width: 100%;
  }

  .principal-section img:hover {
      transform: scale(1.02);
      border-color: #fbbf24 !important;
  }

  .principal-section .vision-mission-box {
      border: 1px solid rgba(255, 255, 255, 0.3);
      padding: 30px 25px;
      position: relative;
      margin-bottom: 30px;
      background: rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(2px);
      border-radius: 12px;
  }

  .principal-section .box-label {
      position: absolute;
      top: -15px;
      left: 25px;
      background: #1e293b;
      padding: 5px 20px;
      font-weight: bold;
      font-size: 1.1rem;
      color: #fbbf24;
      border-radius: 25px;
      letter-spacing: 1px;
  }

  .principal-section .continue-reading {
      display: inline-block;
      margin-top: 15px;
      color: #fbbf24;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .principal-section .continue-reading:hover {
      color: #f59e0b;
      transform: translateX(5px);
  }

  .principal-section .continue-reading i {
      font-size: 14px;
      margin-left: 5px;
  }

  @media (max-width: 768px) {
      .principal-section {
          padding: 50px 0;
          background-attachment: scroll;
      }

      .principal-section .vision-mission-box {
          padding: 25px 20px;
      }

      .principal-section .box-label {
          font-size: 0.9rem;
          padding: 3px 15px;
      }

      .principal-section h4 {
          font-size: 1.5rem;
      }
  }

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

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .principal-section .vision-mission-box {
      animation: fadeInUp 0.8s ease-out;
  }

  .principal-section .col-lg-7 {
      animation: fadeInUp 0.8s ease-out 0.2s both;
  }

  .box-label {
      position: absolute;
      top: -15px;
      left: 20px;
      background: #1e293b;
      padding: 0 15px;
      font-weight: bold;
      font-size: 1.2rem;
  }

  /* Counter Section */
  .counter-section {
      background-color: var(--brand-blue);
      padding: 60px 0;
      color: white;
  }

  .main-footer {
      background-color: #ced0d1;
      color: #334155;
      padding: 60px 0;
      border-top: 1px solid #e2e8f0;
  }

  .footer-map-container {
      height: 300px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .footer-map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
  }

  .footer-title {
      color: #1e293b;
      font-weight: 700;
      margin-bottom: 1rem;
      font-size: 1.1rem;
      position: relative;
      display: inline-block;
      padding-bottom: 8px;
  }

  .footer-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: #991b1b;
      border-radius: 2px;
  }

  .footer-text {
      color: #475569;
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 0;
  }

  .social-icons {
      display: flex;
      gap: 12px;
      margin-top: 10px;
  }

  .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      background: #e2e8f0;
      border-radius: 50%;
      color: #334155;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 1.1rem;
  }

  .social-icons a:hover {
      background: #991b1b;
      color: white;
      transform: translateY(-3px);
  }

  .nav-bar-footer {
      background-color: #f1f5f9;
      padding: 15px 0;
      border-top: 1px solid #e2e8f0;
      border-bottom: 1px solid #e2e8f0;
  }

  .nav-bar-footer a {
      color: #475569;
      text-decoration: none;
      font-size: 0.85rem;
      margin: 0 8px;
      transition: all 0.3s ease;
      font-weight: 500;
  }

  .nav-bar-footer a:hover {
      color: #991b1b;
  }

  .nav-bar-footer span {
      color: #cbd5e1;
  }

  .copyright-bar {
      background-color: #f8fafc;
      color: #64748b;
      font-size: 0.75rem;
      padding: 15px 0;
  }

  @media (max-width: 768px) {
      .main-footer {
          padding: 40px 0;
      }

      .footer-map-container {
          height: 250px;
          margin-bottom: 20px;
      }

      .footer-title::after {
          width: 30px;
      }

      .nav-bar-footer a {
          display: inline-block;
          margin: 5px 8px;
      }

      .copyright-bar .d-flex {
          gap: 10px;
      }

      .copyright-bar p {
          font-size: 0.7rem;
      }
  }

  .copyright-bar {
      background-color: white;
      color: #64748b;
      font-size: 0.75rem;
      padding: 15px 0;
      border-top: 1px solid #e2e8f0;
  }

  /* Icon Colors */
  .bg-icon-blue {
      background-color: #2563eb;
  }

  .bg-icon-orange {
      background-color: #f97316;
  }

  .bg-icon-yellow {
      background-color: #facc15;
  }

  .bg-icon-cyan {
      background-color: #06b6d4;
  }

  .bg-icon-purple {
      background-color: #9333ea;
  }

  .bg-icon-lblue {
      background-color: #60a5fa;
  }

  .bg-icon-red {
      background-color: #ef4444;
  }

  .bg-icon-green {
      background-color: #22c55e;
  }

  .service-bg-blue {
      background-color: #eff6ff;
  }

  .service-bg-orange {
      background-color: #fff7ed;
  }

  .service-bg-yellow {
      background-color: #fefce8;
  }

  .service-bg-cyan {
      background-color: #ecfeff;
  }

  .service-bg-purple {
      background-color: #faf5ff;
  }

  .service-bg-red {
      background-color: #fef2f2;
  }

  .service-bg-green {
      background-color: #f0fdf4;
  }

  .btn-read-more {
      display: inline-block;
      background-color: transparent;
      color: var(--brand-blue, #991b1b);
      border: 2px solid var(--brand-blue, #991b1b);
      padding: 8px 24px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 6px;
      transition: all 0.3s ease;
      cursor: pointer;
  }

  .btn-read-more:hover {
      background-color: var(--brand-blue, #991b1b);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(153, 27, 27, 0.3);
  }

  .btn-read-more:active {
      transform: translateY(0);
  }


  .event-list-item {
      transition: all 0.3s ease;
      padding: 8px;
      border-radius: 8px;
  }

  .event-list-item:hover {
      background-color: #f8f9fa;
      transform: translateX(5px);
  }

  .event-image img {
      transition: all 0.3s ease;
  }

  .event-list-item:hover .event-image img {
      transform: scale(1.05);
  }

  .event-content a:hover p {
      color: var(--brand-blue, #47359b);
  }

  .premium-new-badge {
      display: inline-block;
      background: linear-gradient(135deg, #ff0000, #cc0000);
      color: white;
      font-size: 0.6rem;
      font-weight: bold;
      padding: 2px 8px;
      border-radius: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      animation: blink 1.5s infinite;
      vertical-align: middle;
  }

  @keyframes blink {

      0%,
      100% {
          opacity: 1;
      }

      50% {
          opacity: 0.6;
      }
  }

  /* Optional: Pulse effect */
  @keyframes pulse {

      0%,
      100% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.05);
      }
  }

  .premium-new-badge:hover {
      animation: pulse 0.5s ease;
  }



  /* ===== AUTO SLIDE TICKER STYLES - NO SCROLLBAR ===== */
  .ticker-v-container {
      position: relative;
      overflow: hidden;
      height: 420px;
  }

  .ticker-v-content {
      animation: slideVertical 25s linear infinite;
  }

  .ticker-v-container:hover .ticker-v-content {
      animation-play-state: paused;
  }

  @keyframes slideVertical {
      0% {
          transform: translateY(0);
      }

      100% {
          transform: translateY(-100%);
      }
  }

  /* Card Frame Styles */
  .info-col {
      background: white;
      border-radius: 1.5rem;
      padding: 1.5rem;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      height: 100%;
      border: 1px solid #eef2ff;
      position: relative;
  }

  .info-col:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 35px rgba(71, 53, 155, 0.12);
      border-color: rgba(251, 191, 36, 0.3);
  }

  /* Premium Frame Border Accent */
  .info-col::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      border-radius: 1.5rem 1.5rem 0 0;
  }

  .section-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 1.25rem;
      border-bottom: 2px solid var(--brand-yellow, #fbbf24);
      padding-bottom: 0.65rem;
  }

  .section-header h5 {
      font-weight: 800;
      font-size: 1.3rem;
      margin-bottom: 0;
      background: linear-gradient(135deg, var(--brand-blue, #47359b) 0%, #5b45b9 100%);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: -0.3px;
  }

  .badge-count {
      background: var(--brand-blue, #47359b);
      color: white;
      font-size: 0.7rem;
      border-radius: 40px;
      padding: 0.25rem 0.8rem;
      font-weight: 600;
  }

  /* Notice Card Item */
  .notice-item {
      padding: 0.85rem 0;
      border-bottom: 1px solid #eef2ff;
      transition: all 0.2s;
  }

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

  .notice-title-link {
      text-decoration: none;
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--brand-blue, #47359b);
      display: block;
      line-height: 1.4;
      transition: color 0.2s;
  }

  .notice-title-link:hover {
      color: #fbbf24;
      text-decoration: underline;
  }

  .premium-new-badge {
      background: linear-gradient(135deg, #dc2626, #ef4444);
      color: white;
      font-size: 0.6rem;
      font-weight: 700;
      padding: 0.2rem 0.6rem;
      border-radius: 30px;
      display: inline-block;
      margin-left: 8px;
      vertical-align: middle;
  }

  .notice-date {
      font-size: 0.65rem;
      color: #94a3b8;
      margin-top: 0.25rem;
  }

  .notice-date i {
      color: var(--brand-blue, #47359b);
  }

  .notice-desc {
      font-size: 0.7rem;
      color: #64748b;
      margin-top: 0.35rem;
      line-height: 1.35;
  }

  /* Event Card - Framed Style */
  .event-framed-card {
      background: #ffffff;
      border-radius: 1rem;
      margin-bottom: 1rem;
      padding: 0.8rem;
      border: 1px solid #f1f5f9;
      transition: all 0.25s ease;
  }

  .event-framed-card:hover {
      border-color: var(--brand-yellow, #fbbf24);
      background: #fefcf5;
      transform: translateX(4px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .event-image-flex {
      flex-shrink: 0;
      width: 85px;
      height: 85px;
      border-radius: 0.9rem;
      overflow: hidden;
      background: #f1f5f9;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      border: 1px solid #f0f2f5;
  }

  .event-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
  }

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

  .event-content-flex {
      flex: 1;
  }

  .event-title-link {
      text-decoration: none;
  }

  .event-title-text {
      font-weight: 700;
      font-size: 0.88rem;
      line-height: 1.35;
      color: #1e293b;
      margin-bottom: 0.2rem;
  }

  .event-title-link:hover .event-title-text {
      color: var(--brand-blue, #47359b);
  }

  .event-date {
      font-size: 0.65rem;
      color: #6c757d;
      margin: 0.2rem 0 0.3rem 0;
  }

  .event-date i {
      color: var(--brand-blue, #47359b);
  }

  .event-desc {
      font-size: 0.7rem;
      line-height: 1.4;
      color: #4a5568;
      margin-top: 0.2rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }

  /* Links Styling */
  .links-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .links-list li {
      border-bottom: 1px solid #eef2ff;
      transition: all 0.2s;
  }

  .links-list li:last-child {
      border-bottom: none;
  }

  .links-list a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0.7rem 0;
      text-decoration: none;
      color: #1e293b;
      font-size: 0.8rem;
      font-weight: 500;
      transition: all 0.2s;
  }

  .links-list a:hover {
      color: var(--brand-blue, #47359b);
      padding-left: 8px;
  }

  .links-list a i {
      color: var(--brand-yellow, #fbbf24);
      font-size: 0.8rem;
      width: 20px;
  }

  .btn-warning-custom {
      background: var(--brand-blue, #fbbf24);
      border: none;
      color: #fff7ed;
      font-weight: 700;
      padding: 0.5rem 1.3rem;
      border-radius: 2.5rem;
      font-size: 0.8rem;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      margin-top: 1rem;
  }

  .btn-warning-custom:hover {
      background: #f5130b;
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: 0 6px 14px rgba(251, 191, 36, 0.3);
  }

  @media (max-width: 768px) {
      .event-image-flex {
          width: 70px;
          height: 70px;
      }

      .event-title-text {
          font-size: 0.8rem;
      }

      .info-col {
          padding: 1.2rem;
      }

      .ticker-v-container {
          height: 380px;
      }
  }

  /* File icon colors */
  .links-list a .fa-file-pdf {
      color: #dc2626;
  }

  .links-list a .fa-file-word {
      color: #2563eb;
  }

  .links-list a .fa-file-excel {
      color: #16a34a;
  }

  .links-list a .fa-file-image {
      color: #ea580c;
  }

  .links-list a .fa-file-archive {
      color: #7c3aed;
  }

  .links-list a .fa-file-alt {
      color: var(--brand-blue, #47359b);
  }

  /* Service Box Styles */
  .service-box {
      background: #ffffff;
      padding: 1.5rem 1rem;
      text-align: center;
      border-radius: 1rem;
      transition: all 0.3s ease;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      border: 1px solid #eef2ff;
  }

  .service-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .service-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 1rem auto;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 1rem;
      font-size: 28px;
      transition: all 0.3s ease;
  }

  .service-box:hover .service-icon {
      transform: scale(1.1);
  }

  /* Background Colors */
  .service-bg-blue {
      background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  }

  .service-bg-orange {
      background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  }

  .service-bg-yellow {
      background: linear-gradient(135deg, #fefce8 0%, #fef08a 100%);
  }

  .service-bg-cyan {
      background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
  }

  .service-bg-purple {
      background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 100%);
  }

  .service-bg-green {
      background: linear-gradient(135deg, #f0fdf4 0%, #bbf7d0 100%);
  }

  .service-bg-red {
      background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
  }

  .service-bg-pink {
      background: linear-gradient(135deg, #fdf2f8 0%, #fbcfe8 100%);
  }

  /* Icon Backgrounds */
  .bg-icon-blue {
      background: #3b82f6;
      color: white;
  }

  .bg-icon-orange {
      background: #f97316;
      color: white;
  }

  .bg-icon-yellow {
      background: #eab308;
      color: white;
  }

  .bg-icon-cyan {
      background: #06b6d4;
      color: white;
  }

  .bg-icon-purple {
      background: #8b5cf6;
      color: white;
  }

  .bg-icon-green {
      background: #22c55e;
      color: white;
  }

  .bg-icon-red {
      background: #ef4444;
      color: white;
  }

  .bg-icon-pink {
      background: #ec4899;
      color: white;
  }

  @media (max-width: 768px) {
      .service-box {
          padding: 1rem 0.5rem;
      }

      .service-icon {
          width: 45px;
          height: 45px;
          font-size: 22px;
      }

      .service-box h6 {
          font-size: 0.75rem;
      }
  }

  .principal-section {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      padding: 80px 0;
  }

  .principal-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      z-index: 0;
  }

  .principal-section .container {
      position: relative;
      z-index: 1;
  }

  .principal-section h4 {
      color: white;
      border-bottom-color: #fbbf24 !important;
  }

  .principal-section h6 {
      color: #fbbf24;
      font-size: 1.1rem;
  }

  .principal-section p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.9rem;
      line-height: 1.6;
  }

  .continue-reading {
      display: inline-block;
      color: #fbbf24;
      text-decoration: none;
      font-weight: 600;
      margin-top: 10px;
      transition: all 0.3s ease;
  }

  .continue-reading:hover {
      color: white;
      transform: translateX(5px);
  }

  .continue-reading i {
      transition: transform 0.3s ease;
  }

  .continue-reading:hover i {
      transform: translateX(5px);
  }

  .principal-image {
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      border: 3px solid #fbbf24;
      transition: transform 0.3s ease;
  }

  .principal-image:hover {
      transform: scale(1.02);
  }

  @media (max-width: 768px) {
      .principal-section {
          padding: 50px 0;
      }

      .principal-section h4 {
          font-size: 1.5rem;
      }

      .principal-section p {
          font-size: 0.8rem;
      }
  }

  .counter-section {
      padding: 70px 0;
      position: relative;
      overflow: hidden;
  }

  .counter-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
      pointer-events: none;
  }

  .counter-box {
      padding: 20px;
      border-radius: 20px;
      transition: all 0.3s ease;
  }

  .counter-box:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
  }

  .counter-section .display-3 {
      color: var(--brand-yellow, #fbbf24);
      font-weight: 800;
      font-size: 3rem;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }

  .counter-section .small {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.85rem;
      letter-spacing: 0.5px;
  }

  @media (min-width: 768px) {
      .counter-section .display-3 {
          font-size: 3.5rem;
      }

      .counter-section .small {
          font-size: 0.9rem;
      }
  }

  @media (min-width: 992px) {
      .counter-section .display-3 {
          font-size: 4rem;
      }
  }

  /* ========== PROFESSIONAL PAGE DESIGN STYLES ========== */
  .page-wrapper {
      background: #f8fafc;
      padding: 40px 0 60px;
      min-height: 500px;
  }

  /* Breadcrumb */
  .breadcrumb-modern {
      background: transparent;
      padding: 0;
      margin-bottom: 25px;
  }

  .breadcrumb-modern ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
  }

  .breadcrumb-modern li {
      display: inline-flex;
      align-items: center;
  }

  .breadcrumb-modern li a {
      color: var(--brand-blue, #ac2d30);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      transition: color 0.3s;
  }

  .breadcrumb-modern li a:hover {
      color: var(--brand-yellow, #fbbf24);
  }

  .breadcrumb-modern li:last-child {
      color: #64748b;
      font-weight: 500;
      font-size: 0.85rem;
  }

  /* Page Header */
  .page-header-modern {
      margin-bottom: 30px;
      position: relative;
  }

  .page-title-main {
      font-size: 2rem;
      font-weight: 700;
      color: #1e293b;
      margin: 0;
      padding-bottom: 12px;
      position: relative;
      display: inline-block;
  }

  .page-title-main::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--brand-blue, #ac2d30);
      border-radius: 2px;
  }

  /* ========== SIDEBAR MENU - PROFESSIONAL ========== */
  .page-sidebar {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
      border: 1px solid #e2e8f0;
      position: sticky;
      top: 100px;
  }

  .sidebar-header {
      background: var(--brand-blue, #ac2d30);
      padding: 15px 20px;
  }

  .sidebar-header h4 {
      margin: 0;
      color: white;
      font-size: 1rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .sidebar-header i {
      margin-right: 8px;
  }

  .sidebar-menu {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .sidebar-menu li {
      border-bottom: 1px solid #eef2f5;
  }

  .sidebar-menu li:last-child {
      border-bottom: none;
  }

  .sidebar-menu a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 20px;
      color: #334155;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      transition: all 0.2s ease;
      position: relative;
  }

  .sidebar-menu a i {
      width: 20px;
      color: #94a3b8;
      font-size: 0.85rem;
      transition: all 0.2s;
  }

  .sidebar-menu a:hover {
      background: #f8fafc;
      color: var(--brand-blue, #ac2d30);
      padding-left: 25px;
  }

  .sidebar-menu a:hover i {
      color: var(--brand-blue, #ac2d30);
  }

  .sidebar-menu .active>a {
      background: #fef2f2;
      color: var(--brand-blue, #ac2d30);
      border-left: 3px solid var(--brand-blue, #ac2d30);
  }

  .sidebar-menu .active>a i {
      color: var(--brand-blue, #ac2d30);
  }

  /* Submenu styling */
  .sidebar-submenu {
      list-style: none;
      padding-left: 35px;
      margin: 0;
      background: #fafcfc;
      display: none;
  }

  .sidebar-submenu.show {
      display: block;
  }

  .sidebar-submenu li {
      border-bottom: none;
  }

  .sidebar-submenu a {
      padding: 8px 15px;
      font-size: 0.8rem;
      font-weight: 400;
  }

  .sidebar-submenu a i {
      font-size: 0.7rem;
      width: 18px;
  }

  .sidebar-submenu .active>a {
      background: #fef2f2;
      color: var(--brand-blue, #ac2d30);
      border-left: 2px solid var(--brand-blue, #ac2d30);
  }

  .has-submenu>a {
      position: relative;
  }

  .has-submenu>a::after {
      content: '\f107';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      right: 20px;
      font-size: 0.75rem;
      color: #94a3b8;
      transition: transform 0.2s;
  }

  .has-submenu.open>a::after {
      transform: rotate(180deg);
  }

  /* ========== MAIN CONTENT AREA ========== */
  .content-main-box {
      background: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
      border: 1px solid #e2e8f0;
  }

  .featured-image-wrapper {
      text-align: center;
      margin-bottom: 1.5rem;
  }

  .featured-image-wrapper .featured-image {
      max-width: 80%;
      height: auto;
      display: inline-block;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .featured-image-wrapper .featured-image {
      max-height: 400px;
      width: auto;
      object-fit: cover;
  }

  @media (max-width: 768px) {
      .featured-image-wrapper .featured-image {
          max-width: 95%;
          max-height: 300px;
      }
  }

  .featured-image-wrapper {
      background-color: #f8f9fa;
      padding: 1rem;
      border-radius: 12px;
      margin-bottom: 2rem;
  }

  .featured-image {
      width: 100%;
      height: auto;
      border-radius: 12px;
      transition: opacity 0.3s;
  }

  .featured-image:hover {
      opacity: 0.95;
  }

  .main-content-area {
      color: #334155;
      line-height: 1.65;
  }

  .main-content-area h2 {
      font-size: 1.5rem;
      font-weight: 600;
      color: #1e293b;
      margin-top: 25px;
      margin-bottom: 15px;
  }

  .main-content-area h3 {
      font-size: 1.25rem;
      font-weight: 600;
      color: #1e293b;
      margin-top: 20px;
      margin-bottom: 12px;
  }

  .main-content-area p {
      margin-bottom: 1rem;
      font-size: 0.95rem;
      line-height: 1.65;
  }

  .main-content-area img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin: 15px 0;
  }

  /* Text Block */
  .text-block-wrapper {
      margin-bottom: 25px;
  }

  .text-block-title {
      font-size: 1.3rem;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 15px;
      padding-left: 12px;
      border-left: 3px solid var(--brand-blue, #ac2d30);
  }

  /* Columns Layout */
  .columns-block-wrapper {
      margin: 25px 0;
  }

  .column-item {
      padding: 20px;
      border-radius: 12px;
      transition: all 0.2s;
      height: 100%;
  }

  .column-item:hover {
      border-color: #e2e8f0;
      background: white;
  }

  .column-item h4 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--brand-blue, #ac2d30);
      margin-bottom: 12px;
  }

  /* Gallery Grid */
  .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 15px;
      margin-top: 20px;
  }

  .gallery-item-box {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      cursor: pointer;
      aspect-ratio: 1;
  }

  .gallery-item-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
  }

  .gallery-item-box:hover img {
      transform: scale(1.05);
  }

  .gallery-item-box::after {
      content: '\f00e';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      background: rgba(0, 0, 0, 0.6);
      color: white;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      font-size: 14px;
  }

  .gallery-item-box:hover::after {
      transform: translate(-50%, -50%) scale(1);
  }

  /* Files Section */
  .files-section-wrapper {
      margin-top: 35px;
  }

  .section-heading {
      font-size: 1.2rem;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid #e2e8f0;
      position: relative;
  }

  .section-heading::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--brand-blue, #ac2d30);
  }

  .files-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 12px;
  }

  .file-card-custom {
      display: flex;
      align-items: center;
      background: #f8fafc;
      padding: 12px 15px;
      border-radius: 10px;
      transition: all 0.2s;
      border: 1px solid #eef2f5;
  }

  .file-card-custom:hover {
      background: white;
      border-color: #e2e8f0;
  }

  .file-icon-custom {
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      font-size: 20px;
      margin-right: 12px;
  }

  .file-icon-pdf {
      background: #fee2e2;
      color: #dc2626;
  }

  .file-icon-word {
      background: #dbeafe;
      color: #2563eb;
  }

  .file-icon-excel {
      background: #dcfce7;
      color: #16a34a;
  }

  .file-icon-ppt {
      background: #fed7aa;
      color: #ea580c;
  }

  .file-icon-image {
      background: #f3e8ff;
      color: #9333ea;
  }

  .file-icon-default {
      background: #e2e8f0;
      color: #64748b;
  }

  .file-details-custom {
      flex: 1;
  }

  .file-name-custom {
      font-weight: 500;
      font-size: 0.85rem;
      color: #1e293b;
  }

  .file-size-custom {
      font-size: 0.65rem;
      color: #64748b;
  }

  .file-actions-custom {
      display: flex;
      gap: 6px;
  }

  .btn-custom {
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.2s;
  }

  .btn-view-custom {
      background: #eef2ff;
      color: #4f46e5;
  }

  .btn-view-custom:hover {
      background: #4f46e5;
      color: white;
  }

  .btn-download-custom {
      background: #e0f2fe;
      color: #0284c7;
  }

  .btn-download-custom:hover {
      background: #0284c7;
      color: white;
  }

  /* Mobile Responsive */
  @media (max-width: 991px) {
      .page-sidebar {
          position: relative;
          top: 0;
          margin-bottom: 25px;
      }

      .page-title-main {
          font-size: 1.6rem;
      }

      .content-main-box {
          padding: 20px;
      }

      .gallery-grid {
          grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      }
  }

  @media (max-width: 768px) {
      .page-wrapper {
          padding: 20px 0 40px;
      }

      .page-title-main {
          font-size: 1.4rem;
      }

      .main-content-area h2 {
          font-size: 1.3rem;
      }

      .main-content-area h3 {
          font-size: 1.1rem;
      }

      .main-content-area p {
          font-size: 0.9rem;
      }

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

  /* Dropdown Submenu Styles */
  .dropdown-submenu {
      position: relative;
  }

  .dropdown-submenu .dropdown-menu {
      top: 0;
      left: 100%;
      margin-top: -1px;
      display: none;
  }

  .dropdown-submenu:hover>.dropdown-menu {
      display: block;
  }

  .dropdown-submenu>.dropdown-toggle::after {
      content: '\f054';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      border: none;
      float: right;
      margin-top: 5px;
  }

  /* Navbar toggler icon color */
  .navbar-toggler {
      border: 1px solid white !important;
      padding: 8px 12px;
  }

  .navbar-toggler:focus {
      box-shadow: none;
  }

  /* Responsive */
  @media (max-width: 991px) {
      .navbar-nav .dropdown-menu {
          background-color: #8c1818;
          border: none;
          padding-left: 1rem;
      }

      .navbar-nav .dropdown-item {
          color: rgba(255, 255, 255, 0.8);
      }

      .navbar-nav .dropdown-submenu .dropdown-menu {
          padding-left: 1rem;
      }

      .dropdown-submenu>.dropdown-toggle::after {
          content: '\f078';
      }
  }

  /* ========== ADMINISTRATIVE STAFF PAGE STYLES ========== */

  /* Breadcrumb */
  .breadcrumb-modern {
      background: transparent;
      padding: 0;
      margin-bottom: 25px;
  }

  .breadcrumb-modern ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
  }

  .breadcrumb-modern li {
      display: inline-flex;
      align-items: center;
  }

  .breadcrumb-modern li a {
      color: var(--brand-blue, #ac2d30);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      transition: color 0.3s;
  }

  .breadcrumb-modern li a:hover {
      color: var(--brand-yellow, #fbbf24);
  }

  .breadcrumb-modern li:last-child {
      color: #64748b;
      font-weight: 500;
      font-size: 0.85rem;
  }

  /* Page Header */
  .page-header-modern {
      margin-bottom: 35px;
      position: relative;
  }

  .page-title-main {
      font-size: 2rem;
      font-weight: 700;
      color: #1e293b;
      margin: 0;
      padding-bottom: 12px;
      position: relative;
      display: inline-block;
  }

  .page-title-main::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--brand-blue, #ac2d30);
      border-radius: 2px;
  }

  .page-subtitle {
      color: #64748b;
      margin-top: 10px;
      font-size: 0.9rem;
  }

  /* Department Section */
  .department-section {
      margin-bottom: 45px;
  }

  .department-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 25px;
      padding-bottom: 12px;
      border-bottom: 2px solid #e2e8f0;
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .department-title i {
      color: var(--brand-blue, #ac2d30);
      font-size: 1.2rem;
  }

  .department-title span {
      background: var(--brand-blue, #ac2d30);
      color: white;
      font-size: 0.75rem;
      padding: 2px 10px;
      border-radius: 20px;
      margin-left: 10px;
  }

  .department-title::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 50px;
      height: 2px;
      background: var(--brand-blue, #ac2d30);
  }

  /* Staff Grid */
  .staff-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 25px;
  }

  /* Staff Card */
  .staff-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      transition: all 0.3s ease;
      border: 1px solid #eef2f5;
      position: relative;
  }

  .staff-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
      border-color: #e2e8f0;
  }

  .staff-image-wrapper {
      position: relative;
      overflow: hidden;
      background: #f1f5f9;
      border-radius: 16px 16px 0 0;
  }

  .staff-image {
      width: 100%;
      height: 280px;
      object-fit: cover;
      transition: transform 0.4s ease;
  }

  .staff-card:hover .staff-image {
      transform: scale(1.05);
  }

  .dept-badge {
      position: absolute;
      bottom: 12px;
      right: 12px;
      background: var(--brand-blue, #ac2d30);
      color: white;
      font-size: 0.7rem;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
      z-index: 2;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .staff-info {
      padding: 18px;
  }

  .staff-name {
      font-size: 1.05rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 6px;
      display: block;
  }

  .staff-designation {
      font-size: 0.78rem;
      color: var(--brand-blue, #ac2d30);
      font-weight: 600;
      margin-bottom: 12px;
      display: inline-block;
      background: #fef2f2;
      padding: 2px 10px;
      border-radius: 20px;
  }

  .staff-detail {
      font-size: 0.8rem;
      color: #475569;
      line-height: 1.5;
      margin-bottom: 8px;
      display: flex;
      align-items: flex-start;
      gap: 8px;
  }

  .staff-detail i {
      width: 18px;
      color: #94a3b8;
      font-size: 0.75rem;
      margin-top: 2px;
  }

  .staff-detail strong {
      color: #334155;
      font-weight: 600;
  }

  /* Empty State */
  .empty-staff {
      text-align: center;
      padding: 60px 20px;
      background: white;
      border-radius: 16px;
      color: #64748b;
  }

  .empty-staff i {
      font-size: 48px;
      color: #cbd5e1;
      margin-bottom: 15px;
  }

  /* Responsive */
  @media (max-width: 992px) {
      .staff-grid {
          grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
          gap: 20px;
      }
  }

  @media (max-width: 768px) {
      .staff-grid {
          grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
          gap: 18px;
      }

      .staff-image {
          height: 240px;
      }

      .department-title {
          font-size: 1.2rem;
      }

      .page-title-main {
          font-size: 1.6rem;
      }

      .staff-info {
          padding: 15px;
      }

      .staff-name {
          font-size: 0.95rem;
      }

      .staff-detail {
          font-size: 0.75rem;
      }
  }

  @media (max-width: 576px) {
      .staff-grid {
          grid-template-columns: 1fr;
      }

      .staff-image {
          height: 260px;
      }
  }

  /* ========== DEPARTMENT PAGE STYLES ========== */
  .page-wrapper {
      background: #f8fafc;
      padding: 40px 0 60px;
      min-height: 500px;
  }

  /* Breadcrumb */
  .breadcrumb-modern {
      background: transparent;
      padding: 0;
      margin-bottom: 25px;
  }

  .breadcrumb-modern ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
  }

  .breadcrumb-modern li {
      display: inline-flex;
      align-items: center;
  }

  .breadcrumb-modern li a {
      color: var(--brand-blue, #ac2d30);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      transition: color 0.3s;
  }

  .breadcrumb-modern li a:hover {
      color: var(--brand-yellow, #fbbf24);
  }

  .breadcrumb-modern li:last-child {
      color: #64748b;
      font-weight: 500;
      font-size: 0.85rem;
  }

  /* Page Header */
  .page-header-modern {
      margin-bottom: 35px;
      position: relative;
  }

  .page-title-main {
      font-size: 2rem;
      font-weight: 700;
      color: #1e293b;
      margin: 0;
      padding-bottom: 12px;
      position: relative;
      display: inline-block;
  }

  .page-title-main::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--brand-blue, #ac2d30);
      border-radius: 2px;
  }

  .page-subtitle {
      color: #64748b;
      margin-top: 10px;
      font-size: 0.9rem;
  }

  /* Department Grid */
  .department-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 30px;
  }

  /* Department Card */
  .department-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      transition: all 0.3s ease;
      border: 1px solid #eef2f5;
      text-decoration: none;
      display: block;
  }

  .department-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      border-color: #e2e8f0;
  }

  .department-image-wrapper {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--brand-blue, #ac2d30) 0%, #7f1d1d 100%);
      height: 200px;
  }

  .department-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
      opacity: 0.9;
  }

  .department-card:hover .department-image {
      transform: scale(1.05);
  }

  .department-icon {
      position: absolute;
      bottom: -25px;
      right: 20px;
      width: 60px;
      height: 60px;
      background: var(--brand-blue, #ac2d30);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 28px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      border: 3px solid white;
  }

  .department-info {
      padding: 25px 20px 20px;
  }

  .department-name {
      font-size: 1.2rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .department-name span {
      background: #f1f5f9;
      color: var(--brand-blue, #ac2d30);
      font-size: 0.7rem;
      padding: 2px 10px;
      border-radius: 20px;
      font-weight: 500;
  }

  .department-description {
      font-size: 0.85rem;
      color: #64748b;
      line-height: 1.6;
      margin-bottom: 15px;
  }

  .department-stats {
      display: flex;
      gap: 20px;
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid #eef2f5;
  }

  .department-stat {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      color: #64748b;
  }

  .department-stat i {
      color: var(--brand-blue, #ac2d30);
      font-size: 0.8rem;
  }

  .view-details {
      margin-top: 15px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      color: var(--brand-blue, #ac2d30);
      font-size: 0.8rem;
      font-weight: 600;
      transition: gap 0.3s;
  }

  .department-card:hover .view-details {
      gap: 10px;
  }

  /* Empty State */
  .empty-departments {
      text-align: center;
      padding: 60px 20px;
      background: white;
      border-radius: 20px;
      color: #64748b;
  }

  .empty-departments i {
      font-size: 48px;
      color: #cbd5e1;
      margin-bottom: 15px;
  }

  /* Responsive */
  @media (max-width: 768px) {
      .department-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .page-title-main {
          font-size: 1.6rem;
      }

      .department-image-wrapper {
          height: 180px;
      }

      .department-icon {
          width: 50px;
          height: 50px;
          font-size: 24px;
          bottom: -20px;
          right: 15px;
      }

      .department-info {
          padding: 20px 15px 15px;
      }

      .department-name {
          font-size: 1.1rem;
      }
  }

  /* ========== DEPARTMENT DETAIL PAGE STYLES ========== */
  .page-wrapper {
      background: #f8fafc;
      padding: 40px 0 60px;
      min-height: 500px;
  }

  /* Breadcrumb */
  .breadcrumb-modern {
      background: transparent;
      padding: 0;
      margin-bottom: 25px;
  }

  .breadcrumb-modern ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
  }

  .breadcrumb-modern li {
      display: inline-flex;
      align-items: center;
  }

  .breadcrumb-modern li a {
      color: var(--brand-blue, #ac2d30);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      transition: color 0.3s;
  }

  .breadcrumb-modern li a:hover {
      color: var(--brand-yellow, #fbbf24);
  }

  .breadcrumb-modern li:last-child {
      color: #64748b;
      font-weight: 500;
      font-size: 0.85rem;
  }

  /* Department Header */
  .department-header {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: 35px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      border: 1px solid #eef2f5;
  }

  .department-banner {
      position: relative;
      height: 250px;
      overflow: hidden;
  }

  .department-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .department-banner-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
      padding: 30px;
  }

  .department-banner-overlay h1 {
      color: white;
      font-size: 2rem;
      font-weight: 700;
      margin: 0;
  }

  .department-banner-overlay p {
      color: rgba(255, 255, 255, 0.9);
      margin: 10px 0 0;
  }

  .department-content {
      padding: 25px;
  }

  .department-description-full {
      color: #475569;
      line-height: 1.7;
      font-size: 0.95rem;
  }

  /* Stats Section */
  .stats-section {
      display: flex;
      gap: 20px;
      margin: 25px 0;
      flex-wrap: wrap;
  }

  .stat-card {
      background: #f8fafc;
      border-radius: 12px;
      padding: 15px 20px;
      flex: 1;
      text-align: center;
      border: 1px solid #eef2f5;
  }

  .stat-number {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--brand-blue, #ac2d30);
  }

  .stat-label {
      font-size: 0.8rem;
      color: #64748b;
  }

  /* Faculty Section */
  .faculty-section {
      margin-top: 30px;
  }

  .section-title {
      font-size: 1.3rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 25px;
      padding-bottom: 12px;
      border-bottom: 2px solid #e2e8f0;
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .section-title i {
      color: var(--brand-blue, #ac2d30);
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 50px;
      height: 2px;
      background: var(--brand-blue, #ac2d30);
  }

  .faculty-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 25px;
  }

  /* Faculty Card */
  .faculty-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      transition: all 0.3s ease;
      border: 1px solid #eef2f5;
  }

  .faculty-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }

  .faculty-image-wrapper {
      position: relative;
      overflow: hidden;
      background: #f1f5f9;
      height: 260px;
  }

  .faculty-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
  }

  .faculty-card:hover .faculty-image {
      transform: scale(1.05);
  }

  .faculty-info {
      padding: 18px;
  }

  .faculty-name {
      font-size: 1rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 5px;
      display: block;
  }

  .faculty-designation {
      font-size: 0.75rem;
      color: var(--brand-blue, #ac2d30);
      font-weight: 600;
      margin-bottom: 10px;
      display: inline-block;
      background: #fef2f2;
      padding: 2px 10px;
      border-radius: 20px;
  }

  .faculty-detail {
      font-size: 0.75rem;
      color: #475569;
      line-height: 1.5;
      margin-bottom: 6px;
      display: flex;
      align-items: flex-start;
      gap: 6px;
  }

  .faculty-detail i {
      width: 16px;
      color: #94a3b8;
      font-size: 0.7rem;
      margin-top: 2px;
  }

  .faculty-detail strong {
      color: #334155;
      font-weight: 600;
  }

  .faculty-email {
      color: #3b82f6;
      text-decoration: none;
      word-break: break-all;
  }

  .faculty-email:hover {
      text-decoration: underline;
  }

  /* Empty State */
  .empty-faculty {
      text-align: center;
      padding: 50px 20px;
      background: white;
      border-radius: 16px;
      color: #64748b;
  }

  .empty-faculty i {
      font-size: 48px;
      color: #cbd5e1;
      margin-bottom: 15px;
  }

  /* Back Button */
  .back-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: white;
      border: 1px solid #e2e8f0;
      padding: 10px 18px;
      border-radius: 40px;
      color: var(--brand-blue, #ac2d30);
      font-weight: 500;
      text-decoration: none;
      margin-bottom: 20px;
      transition: all 0.3s;
  }

  .back-button:hover {
      background: var(--brand-blue, #ac2d30);
      color: white;
      border-color: var(--brand-blue, #ac2d30);
  }

  /* Responsive */
  @media (max-width: 768px) {
      .department-banner {
          height: 180px;
      }

      .department-banner-overlay h1 {
          font-size: 1.4rem;
      }

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

      .stats-section {
          flex-direction: column;
      }

      .section-title {
          font-size: 1.1rem;
      }
  }

  /* ========== FACULTY PAGE STYLES ========== */

  /* Breadcrumb */
  .breadcrumb-modern {
      background: transparent;
      padding: 0;
      margin-bottom: 25px;
  }

  .breadcrumb-modern ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
  }

  .breadcrumb-modern li {
      display: inline-flex;
      align-items: center;
  }

  .breadcrumb-modern li a {
      color: var(--brand-blue, #ac2d30);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      transition: color 0.3s;
  }

  .breadcrumb-modern li a:hover {
      color: var(--brand-yellow, #fbbf24);
  }

  .breadcrumb-modern li:last-child {
      color: #64748b;
      font-weight: 500;
      font-size: 0.85rem;
  }

  /* Page Header */
  .page-header-modern {
      margin-bottom: 35px;
      position: relative;
  }

  .page-title-main {
      font-size: 2rem;
      font-weight: 700;
      color: #1e293b;
      margin: 0;
      padding-bottom: 12px;
      position: relative;
      display: inline-block;
  }

  .page-title-main::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--brand-blue, #ac2d30);
      border-radius: 2px;
  }

  /* Department Section */
  .department-section {
      margin-bottom: 50px;
  }

  .department-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 25px;
      padding-bottom: 12px;
      border-bottom: 2px solid #e2e8f0;
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .department-title i {
      color: var(--brand-blue, #ac2d30);
      font-size: 1.3rem;
  }

  .department-title span {
      background: var(--brand-blue, #ac2d30);
      color: white;
      font-size: 0.8rem;
      padding: 2px 10px;
      border-radius: 20px;
      margin-left: 10px;
  }

  .department-title::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 60px;
      height: 2px;
      background: var(--brand-blue, #ac2d30);
  }

  /* Faculty Grid */
  .faculty-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 25px;
  }

  /* Faculty Card */
  .faculty-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      transition: all 0.3s ease;
      border: 1px solid #eef2f5;
      position: relative;
  }

  .faculty-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
      border-color: #e2e8f0;
  }

  .faculty-image-wrapper {
      position: relative;
      overflow: hidden;
      background: #f1f5f9;
      border-radius: 16px 16px 0 0;
  }

  .faculty-image {
      width: 100%;
      height: 280px;
      object-fit: cover;
      transition: transform 0.4s ease;
  }

  .faculty-card:hover .faculty-image {
      transform: scale(1.05);
  }

  .dept-badge {
      position: absolute;
      bottom: 12px;
      right: 12px;
      background: var(--brand-blue, #ac2d30);
      color: white;
      font-size: 0.7rem;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
      z-index: 2;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .faculty-info {
      padding: 18px;
  }

  .faculty-name {
      font-size: 1.1rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 8px;
      display: block;
  }

  .faculty-designation {
      font-size: 0.8rem;
      color: var(--brand-blue, #ac2d30);
      font-weight: 600;
      margin-bottom: 10px;
      display: inline-block;
      background: #fef2f2;
      padding: 2px 10px;
      border-radius: 20px;
  }

  .faculty-detail {
      font-size: 0.8rem;
      color: #475569;
      line-height: 1.5;
      margin-bottom: 6px;
      display: flex;
      align-items: flex-start;
      gap: 6px;
  }

  .faculty-detail i {
      width: 18px;
      color: #94a3b8;
      font-size: 0.75rem;
      margin-top: 2px;
  }

  .faculty-detail strong {
      color: #334155;
      font-weight: 600;
  }

  .faculty-email {
      font-size: 0.75rem;
      color: #3b82f6;
      text-decoration: none;
      word-break: break-all;
  }

  .faculty-email:hover {
      text-decoration: underline;
  }

  /* No Faculty Message */
  .no-faculty {
      text-align: center;
      padding: 60px 20px;
      background: white;
      border-radius: 16px;
      color: #64748b;
  }

  .no-faculty i {
      font-size: 48px;
      color: #cbd5e1;
      margin-bottom: 15px;
  }

  /* Empty Department Message */
  .empty-department {
      background: #f8fafc;
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      color: #64748b;
      border: 1px dashed #cbd5e1;
  }

  /* Responsive */
  @media (max-width: 768px) {
      .faculty-grid {
          grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
          gap: 20px;
      }

      .faculty-image {
          height: 240px;
      }

      .department-title {
          font-size: 1.3rem;
      }

      .page-title-main {
          font-size: 1.6rem;
      }
  }

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

      .faculty-info {
          padding: 15px;
      }
  }
