:root {
    --primary: #B1040E;
    --bg-light: #f9fafb;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --card-bg: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .Iskbody {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 20px;
  }

  .IksContainer {
    max-width: 1200px;
    margin: auto;
  }

  .Iskheading {
    text-align: center;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .IksNav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .IksNav button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
    cursor: pointer;
  }

  .IksNav button:hover {
    background-color: #004f99;
  }

  .IksSection {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px var(--shadow);
    margin-bottom: 30px;
    transition: 0.3s;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
  }

  th, td {
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    text-align: center;
  }

  th {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
  }

  a {
    color: var(--primary);
    text-decoration: none;
  }

  .IksSlider {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
  }

  .IksSlider::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }

  .IksSlider img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    scroll-snap-align: center;
    transition: transform 0.3s;
    cursor: pointer;
    flex-shrink: 0;
  }

  .IksSlider img:hover {
    transform: scale(1.05);
  }

  .IksModal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .IksModal img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
  }

  .IksModalControls {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }

  .IksModalControls button {
    background: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px var(--shadow);
  }

  .IksCloseBtn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: white;
    cursor: pointer;
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .IksNav {
      flex-direction: column;
    }

    .IksSlider img {
      width: 70vw;
      height: auto;
    }
  }