:root {
      --heading: #002C3E;
      --subheading: #690D0B;
      --text: #000000;
      --pointer: #142d43;
      --border: #dde2ea;
      --shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
      --radius: 14px;
      --card-bg: #ffffff;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background: #ffffff;
      color: var(--text);
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.5;
    }

    .page-wrap {
      max-width: 1120px;
      margin: 0 auto;
      padding: 2.2rem 1.4rem 2.8rem;

 


    /* Responsive fallback for laptops / mobile */
    @media (max-width: 1200px) {
      .page-wrap {
        padding-left: 2rem;
        padding-right: 2rem;
      }
    }


    /* Title Section */
    .title-section {
      text-align: left;
      margin-bottom: 1.8rem;
    }

    .title-section h1 {
      font-family: "Merriweather", "Playfair Display", serif;
      font-size: clamp(2rem, 2.6vw, 2.3rem);
      color: var(--heading);
      margin-bottom: 0.25rem;
    }

    .title-section p {
      font-size: 0.98rem;
      color: #4b5563;
    }

    /* Short intro bullets */
    .intro-section {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 0.9rem 1.1rem;
      margin-bottom: 1.4rem;
      background: #fff;
    }

    .intro-section h2 {
      font-family: "Merriweather", "Playfair Display", serif;
      font-size: 1.08rem;
      color: var(--subheading);
      margin-bottom: 0.45rem;
    }

    .intro-list {
      list-style: none;
    }

    .intro-list li {
      font-size: 0.92rem;
      margin-bottom: 0.25rem;
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
    }

    .intro-list span.symbol {
      color: var(--pointer);
      font-weight: 700;
      font-size: 0.8rem;
      line-height: 1.4;
      flex-shrink: 0;
    }

    /* Core Responsibilities */
    .core-section {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 0.95rem 1.1rem;
      margin-bottom: 1.5rem;
      background: #fff;
    }

    .core-section h2 {
      font-family: "Merriweather", "Playfair Display", serif;
      font-size: 1.08rem;
      color: var(--subheading);
      margin-bottom: 0.4rem;
    }

    .core-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 0.2rem 1.4rem;
    }

    .core-list li {
      font-size: 0.9rem;
      display: flex;
      gap: 0.45rem;
      align-items: flex-start;
    }

    .core-list span.symbol {
      color: var(--pointer);
      font-weight: 700;
      font-size: 0.8rem;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    /* Image mini-slider */
    .slider-section {
      margin-bottom: 1.7rem;
    }

    .slider-title {
      font-family: "Merriweather", "Playfair Display", serif;
      font-size: 1.02rem;
      color: var(--subheading);
      margin-bottom: 0.45rem;
    }

    .slider-wrap {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .slider-btn {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: none;
      background: #e5e7eb;
      color: #374151;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      cursor: pointer;
      flex-shrink: 0;
    }

    .slider-btn:hover {
      background: #d1d5db;
    }

    .slider-viewport {
      width: 100%;
      max-width: 640px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: thin;
    }

    .slider-track {
      display: flex;
      gap: 0.7rem;
    }

    .slider-item {
      min-width: 100%;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      background: #f9fafb;
      position: relative;
    }

    .slider-item img {
      width: 100%;
      display: block;
      object-fit: cover;
      max-height: 250px;
    }

    .slider-caption {
      position: absolute;
      left: 0.7rem;
      bottom: 0.7rem;
      background: rgba(0, 0, 0, 0.55);
      color: #f9fafb;
      padding: 0.22rem 0.6rem;
      border-radius: 999px;
      font-size: 0.78rem;
      backdrop-filter: blur(4px);
    }

    /* Digital services cards */
    .services-section {
      margin-bottom: 1.6rem;
    }

    .services-section h2 {
      font-family: "Merriweather", "Playfair Display", serif;
      font-size: 1.08rem;
      color: var(--subheading);
      margin-bottom: 0.6rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0.9rem;
    }

    .service-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      padding: 0.75rem 0.85rem;
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .service-card:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
    }

    .service-title {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--heading);
    }

    .service-text {
      font-size: 0.86rem;
      color: #4b5563;
    }

    /* Department structure */
    .structure-section {
      margin-bottom: 1.6rem;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 0.9rem 1.1rem;
      background: #fff;
    }

    .structure-section h2 {
      font-family: "Merriweather", "Playfair Display", serif;
      font-size: 1.08rem;
      color: var(--subheading);
      margin-bottom: 0.4rem;
    }

    .structure-list {
      list-style: none;
    }

    .structure-item {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.9rem;
      margin-bottom: 0.25rem;
    }

    .structure-icon {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      color: var(--pointer);
      background: #f3f4f6;
      flex-shrink: 0;
    }

    /* Officer contact table */
    .table-section h2 {
      font-family: "Merriweather", "Playfair Display", serif;
      font-size: 1.08rem;
      color: var(--subheading);
      margin-bottom: 0.6rem;
    }

    .table-wrap {
      border-radius: var(--radius);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      overflow: hidden;
      background: #ffffff;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
    }

    thead {
      background: #ecf5ff;
    }

    th,
    td {
      padding: 0.55rem 0.75rem;
      text-align: left;
      border-bottom: 1px solid #e5e7eb;
    }

    

    th {
      color: var(--heading);
      font-weight: 600;
    }

    tbody tr:nth-child(even) {
      background: #f9fafb;
    }

    /* Responsive tweaks */
    @media (max-width: 720px) {
      .slider-wrap {
        gap: 0.4rem;
      }
    }

    /* UNIFIED BLUEISH CARD STYLE LIKE MARKET PAGE */
.intro-section,
.core-section,
.structure-section,
.table-wrap,
.service-card {
  background: #E5F3FF;                /* bluish background */
  border: 1px solid #dde2ea;          /* soft light border */
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(15,23,42,0.08);
  padding: 1rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

/* Hover effect same as Market */
.service-card:hover,
.intro-section:hover,
.core-section:hover,
.structure-section:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 34px rgba(15,23,42,0.16);
}

/* TEXT COLORS stay same */
.service-title {
  color: #002C3E;
}