 * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: "Poppins", sans-serif; background-color: #f7f7f7; }

    header {
      background-color: #990000;
      color: #fff;
      text-align: center;
      padding: 40px 10px;
    }

    nav {
      background-color: #222;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }

    nav a {
      padding: 12px 18px;
      color: white;
      text-decoration: none;
      font-weight: bold;
      font-size: 14px;
      transition: background 0.3s;
    }

    nav a:hover {
      background-color: #444;
    }

    .container {
      max-width: 1100px;
      margin: 20px auto;
      padding: 10px;
      background: #fff;
    }

    .highlight-boxes {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .highlight-boxes a {
      flex: 1 1 calc(33.33% - 10px);
      text-align: center;
      padding: 12px;
      font-weight: bold;
      color: white;
      text-decoration: none;
      border-radius: 4px;
      animation: blink 1.5s infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 1; }
    }

    .red { background-color: #d70000; }
    .orange { background-color: #ff6a00; }
    .pink { background-color: #e100ae; }
    .blue { background-color: #0066cc; }
    .green { background-color: #2b8019; }
    .maroon { background-color: #660000; }
    .olive { background-color: #7c8715; }
    .navy { background-color: #03214a; }

    .three-columns {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .column {
      flex: 1 1 30%;
      background: white;
      border: 1px solid #ccc;
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .section-heading {
      background-color: #a60000;
      color: white;
      text-align: center;
      padding: 10px 0;
      font-size: 18px;
      font-weight: bold;
      border: 1px solid #990000;
      margin-bottom: 15px;
    }

    .column ul {
      list-style-type: disc;
      padding-left: 20px;
      margin-bottom: 15px;
    }

    .column ul li {
      margin-bottom: 10px;
    }

    .column ul li a {
      color: #0000cc;
      text-decoration: none;
      font-size: 16px;
    }

    .column ul li a:hover {
      color: #d70000;
    }

    .view-all {
      text-align: center;
      margin-top: auto;
    }

    .view-all a {
      display: inline-block;
      margin-top: 10px;
      padding: 8px 15px;
      background-color: #990000;
      color: white;
      text-decoration: none;
      font-weight: bold;
      border-radius: 4px;
    }

    .view-all a:hover {
      background-color: #cc0000;
    }

    .content-section {
      padding-top: 20px;
      background: #fff;
      margin-bottom: 10px;
    }
.content-section h2{
    background-color: #a60000;
      color: white;
      padding: 8px 0;
      font-size: 18px;
      font-weight: bold;
      border: 1px solid #990000;
      margin-bottom: 15px;
      padding-left: 15px;
}
    footer {
      background: #222;
      color: #fff;
      padding: 20px;
      text-align: center;
      font-size: 14px;
    }

    @media(max-width: 768px) {
      .highlight-boxes a {
        flex: 1 1 100%;
      }
      .three-columns {
        flex-direction: column;
      }
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.6);
    }

    .modal-content {
      background-color: #fff;
      margin: 10% auto;
      padding: 30px;
      border-radius: 6px;
      max-width: 400px;
      position: relative;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .close {
      color: #aaa;
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
    }

    .close:hover { color: red; }

    .modal-content input[type="text"] {
      width: 100%;
      padding: 12px;
      font-size: 16px;
      border: 1px solid #aaa;
      border-radius: 5px;
    }

    .modal-content button {
      margin-top: 15px;
      padding: 10px 20px;
      background-color: #990000;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
    }

    .modal-content button:hover {
      background-color: #cc0000;
    }

    .mt-0{
      margin-top: 0px !important;
    }
    .pt-0{
      padding-top: 0px !important;
    }
     .mb-0{
      margin-bottom: 0px !important;
    }
    .pb-0{
      padding-bottom: 0px !important;
    }
    /* marqee star css */

    .breaking_news {
      /* float: left; */
      width: 100%;
      font-size: 14px;
      margin-bottom: 10px;
    }
    .mar-label {
      /* float: left; */
      padding: 7px 15px;
      background: #d6002a;
      color: #fff;
      font-weight: bold;
      position: absolute;
      overflow: hidden;
      z-index: 999;
      border-radius: 0px 5px 5px 0;
    }
    .news_title {
    padding: 5px 10px;
      /* float: left; */
      width: 100%;
      border: 1px solid #ccc;
      background: #FCE4EC;
    }

    .ripple:after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 5px;
      height: 5px;
      background: rgba(255, 255, 255, 0.5);
      opacity: 0;
      border-radius: 100%;
      transform: scale(1, 1) translate(-50%);
      transform-origin: 50% 50%;
    }

    @keyframes ripple {
      0% {
        transform: scale(0, 0);
        opacity: 1;
      }
      20% {
        transform: scale(25, 25);
        opacity: 1;
      }
      100% {
        opacity: 0;
        transform: scale(40, 40);
      }
    }

    .ripple::after {
      animation: ripple 1.5s ease-out infinite;
    }

    @-webkit-keyframes drawBorderFromCenter {
      0% {
        background-size: 0 2px, 0 0, 100% 100%;
      }
      20% {
        background-size: 100% 2px, 100% 0, 100% 100%;
      }
      66% {
        background-size: 100% 2px, 100% 98%, 100% 100%;
      }
      99% {
        background-size: 100% 2px, 100% 98%, 0 2px;
      }
    }
      .marquee {
        overflow: hidden;
        white-space: nowrap;
        width: 100%;
        box-sizing: border-box;
      }

      .marquee p {
        display: inline-block;
        padding-left: 100%;
        animation: marquee 15s linear infinite;
        transition: transform 0.2s ease;
      }

      @keyframes marquee {
        0% {
          transform: translate(0);
        }
        100% {
          transform: translate(-100%);
        }
      }

/* Marquee end css */

/* Global Table Styling */
.gov-job-post table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 15px;
  border: 1px solid #333;
}

/* Table Borders */
.gov-job-post table,
.gov-job-post th,
.gov-job-post td {
  border: 1px solid #555;
}

/* Table Header Style */
.gov-job-post thead th {
  background-color: #900;
  color: white;
  padding: 10px;
  font-weight: bold;
  text-align: left;
}

/* Table Body Cells */
.gov-job-post td {
  padding: 10px;
  background-color: #fefefe;
}

/* Highlight Important Text */
.impo-text {
  color: red;
  font-weight: bold;
}

/* Section Title */
.gov-job-post h2 {
  background-color: #900;
  color: #fff;
  padding: 10px 12px;
  font-size: 18px;
  border-left: 5px solid #640000;
  margin-bottom: 0;
}

/* Important Dates Table */
.table-bordered tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Footer Style */
.gov-job-post tfoot td {
  background-color: #fce4ec;
  color: #880e4f;
  font-weight: bold;
}

/* Highlight Links in Tables */
.gov-job-post a {
  color: #1565c0;
  font-weight: 500;
  text-decoration: none;
}

/* Remove hover if not needed */
.table-hover tbody tr:hover {
  background-color: #f1f1f1;
}
.gov-job-post li {
  list-style: none;
}
/* Make Date Text Bold in Important Dates */
.gov-job-post td:first-child {
  font-weight: 600;
}
.gov-job-post {
  display: block;
  width: 100%;
  overflow-x: auto;
  margin-top: 12px;
}
.profile-details h1 {
  color: var(--2, #000);
  font-size: 24px;
  line-height: normal;
}
.check-txt1 a{
  color: var(--2, #000);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: inline-flex;
  text-decoration: none;
  line-height: 1;
}
.check-txt1{
  line-height: 1;
}
.custom-footer {
  background-color: #000;
  color: #fff;
  padding: 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left a {
  color: #fff;
  text-decoration: none;
}

.footer-left a:hover {
  text-decoration: underline;
}

.footer-right {
  text-align: right;
}
.footer-left {
  display: flex;
  gap: 20px; /* Adjust spacing as needed */
}
