/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}
.mobile-table{
    display: none;
}
/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 30px 0px 10px;
  background-color: #0a4275;
  color: white;
  height: 120px;
}
.logo img {
  height: 120px;
  width: 120px;
  margin-left: 20%;
}
.font-awesome a {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

/* Table Container */
table {
  width: 95%;
  margin: 30px auto;
  border-collapse: collapse;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Table Header */
thead {
  background-color: #e3f2fd;
  color: #0a4275;
  font-weight: bold;
}
thead th {
  padding: 14px;
  border-bottom: 2px solid #90caf9;
  text-align: left;
}

/* Table Body */
tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
}
tbody tr:nth-child(even) {
  background-color: #f4f6f8;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .font-awesome {
    margin-top: 10px;
  }
  .mobile-table{
    display: block;
  }

  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  thead {
    display: none;
  }

  tbody tr {
    margin-bottom: 16px;
    border-bottom: 2px solid #e0e0e0;
    background-color: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
  }

  tbody td {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border: none;
    font-size: 14px;
  }

  tbody td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #0a4275;
  }
}
@media (max-width: 768px) {
  /* Navigation Stack */
  nav {
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    height: auto;
    text-align: center;
  }

  .logo img {
    margin: 0 auto;
    height: 100px;
    width: auto;
  }

  .font-awesome {
    margin-top: 10px;
  }

  /* Table turns to stacked layout */
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
    width: 100%;
  }

  thead {
    display: none;
  }

  tbody tr {
    margin: 10px 0;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    background-color: #ffffff;
  }

  tbody td {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid #f0f0f0;
  }

  tbody td:last-child {
    border-bottom: none;
  }

  tbody td::before {
    content: attr(data-label);
    flex: 1;
    font-weight: 600;
    color: #0a4275;
    margin-right: 10px;
  }
}
.blink-marquee {
  width: 100%;
  text-align: center;
 
  color: red;
  font-weight: bold;
  font-size: 18px;
  padding: 10px 0;
  animation: blink 1s step-start infinite;
 
}

@keyframes blink {
  50% {
    color: black;
    
  }
}
@media (max-width: 768px) {
  .blink-marquee {
    font-size: 16px;
    padding: 8px;
  }
}
.custom-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  background-color: #fff9f9;
  color: red;
  font-weight: bold;
  font-size: 18px;
  padding: 10px 0;
  position: relative;
}

.custom-marquee p {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-text 24s linear infinite;
}

@keyframes scroll-text {
  0% {
    transform: translateX(0%);
    
  }
  100% {
    transform: translateX(-100%);
    
  }
}

@media (max-width: 768px) {
  .custom-marquee {
    font-size: 16px;
    padding: 8px 0;
  }
}



/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}
.mobile-table{
    display: none;
}
/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 30px 0px 10px;
  background-color: #0a4275;
  color: white;
  height: 120px;
}
.logo img {
  height: 120px;
  width: 120px;
  margin-left: 20%;
}
.font-awesome a {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

/* Table Container */
table {
  width: 95%;
  margin: 30px auto;
  border-collapse: collapse;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Table Header */
thead {
  background-color: #e3f2fd;
  color: #0a4275;
  font-weight: bold;
}
thead th {
  padding: 14px;
  border-bottom: 2px solid #90caf9;
  text-align: left;
}

/* Table Body */
tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
}
tbody tr:nth-child(even) {
  background-color: #f4f6f8;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .font-awesome {
    margin-top: 10px;
  }
  .mobile-table{
    display: block;
  }

  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  thead {
    display: none;
  }

  tbody tr {
    margin-bottom: 16px;
    border-bottom: 2px solid #e0e0e0;
    background-color: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
  }

  tbody td {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border: none;
    font-size: 14px;
  }

  tbody td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #0a4275;
  }
}
@media (max-width: 768px) {
  /* Navigation Stack */
  nav {
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    height: auto;
    text-align: center;
  }

  .logo img {
    margin: 0 auto;
    height: 100px;
    width: auto;
  }

  .font-awesome {
    margin-top: 10px;
  }

  /* Table turns to stacked layout */
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
    width: 100%;
  }

  thead {
    display: none;
  }

  tbody tr {
    margin: 10px 0;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    background-color: #ffffff;
  }

  tbody td {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid #f0f0f0;
  }

  tbody td:last-child {
    border-bottom: none;
  }

  tbody td::before {
    content: attr(data-label);
    flex: 1;
    font-weight: 600;
    color: #0a4275;
    margin-right: 10px;
  }
}
.blink-marquee {
  width: 100%;
  text-align: center;
 
  color: red;
  font-weight: bold;
  font-size: 18px;
  padding: 10px 0;
  animation: blink 1s step-start infinite;
 
}

@keyframes blink {
  50% {
    color: black;
    
  }
}
@media (max-width: 768px) {
  .blink-marquee {
    font-size: 16px;
    padding: 8px;
  }
}
.custom-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  background-color: #fff9f9;
  color: red;
  font-weight: bold;
  font-size: 18px;
  padding: 10px 0;
  position: relative;
}

.custom-marquee p {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-text 24s linear infinite;
}

@keyframes scroll-text {
  0% {
    transform: translateX(0%);
    
  }
  100% {
    transform: translateX(-100%);
    
  }
}

@media (max-width: 768px) {
  .custom-marquee {
    font-size: 16px;
    padding: 8px 0;
  }
}


/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 26px;
  color: #222;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  background: #f8f8f8;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #eaeaea;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #fff;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 300px; /* enough for text */
  padding: 15px 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 15px;
  }
  .faq-question {
    font-size: 16px;
    padding: 12px 15px;
  }
  .faq-answer p {
    font-size: 15px;
  }
}





/* ---------- Blog + Post Styles (non-intrusive) ---------- */
.container { width: 95%; margin: 0 auto; }

.blog-hero {
  background: linear-gradient(0deg, rgba(10,66,117,0.08), rgba(10,66,117,0.08));
  padding: 28px 0;
}
.blog-hero__inner { width: 95%; margin: 0 auto; }
.blog-hero h2 { color: #0a4275; margin-bottom: 6px; font-size: 26px; }
.blog-hero p { color: #333; max-width: 70ch; }

.blog-filter { display: flex; gap: 8px; padding: 16px 0; align-items: center; flex-wrap: wrap; }
.chip {
  border: 1px solid #90caf9;
  background: #e3f2fd;
  color: #0a4275;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
}
.chip--active { background: #0a4275; color: #fff; border-color: #0a4275; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 10px 0 28px;
}
.post-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}
.post-card__image { position: relative; display: block; }
.post-card__image img { width: 100%; height: auto; display: block; }
.post-card__tag {
  position: absolute; left: 10px; top: 10px;
  background: #0a4275; color: #fff; font-size: 12px;
  padding: 6px 10px; border-radius: 999px;
}
.post-card__body { padding: 14px; display: grid; gap: 8px; }
.post-card__title { font-size: 18px; line-height: 1.35; }
.post-card__title a { color: #0a4275; text-decoration: none; }
.post-card__title a:hover { text-decoration: underline; }
.post-card__excerpt { color: #444; font-size: 14.5px; }
.post-card__meta { display: flex; gap: 14px; color: #666; font-size: 13px; }

/* Pagination area */
.pagination {
  display: flex; gap: 8px; align-items: center; justify-content: center;
  padding: 10px 0 30px;
}

/* Buttons */
.page-btn, .page-number {
  border: 1px solid #ddd; background: #fff; color: #0a4275;
  padding: 8px 12px; border-radius: 8px; text-decoration: none;
  font-weight: 600;
}
.page-number.current, .page-btn:hover { background: #e3f2fd; border-color: #90caf9; }
.page-btn.disabled { opacity: .5; pointer-events: none; }

.post {
  padding: 22px 0 28px;
  max-width: 900px;
}
.post__header { margin-bottom: 10px; }
.post__header h1 { color: #0a4275; font-size: 28px; line-height: 1.2; margin-bottom: 6px; }
.post__meta { display: flex; gap: 16px; color: #666; margin-bottom: 14px; }
.post__figure { margin: 0 0 12px; }
.post__figure img { width: 100%; border-radius: 8px; }
.post__figure figcaption { color: #666; font-size: 13px; margin-top: 6px; }

.post__content { display: grid; gap: 12px; }
.post__content h2 { color: #060606; font-size: 20px; margin-top: 4px; }
.post__content ul, .post__content ol { padding-left: 18px; }
.btn-link { color: #0a4275; text-decoration: none; font-weight: 600; }
.btn-link:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .blog-hero h2 { font-size: 22px; }
  .post__header h1 { font-size: 24px; }
}

/* ---- FULL-WIDTH BLACK PAGINATION STRIP ---- */
/* Makes the pagination section span the entire viewport width (100%) even inside .container */
.pagination{
  background:#eaeaea;                 /* black strip */
  padding:24px 0;                  /* vertical spacing */
  width:100vw;                     /* full viewport width */
  margin-left: calc(50% - 50vw);   /* break out of centered container */
  margin-right: calc(50% - 50vw);
}

/* Dark buttons on black; accessible hover/current states */
.pagination .page-btn,
.pagination .page-number{
  background:#111;
  border:1px solid #333;
  color:#fff;
}
.pagination .page-number.current,
.pagination .page-btn:hover{
  background:#fff;
  color:#000;
  border-color:#fff;
}
.pagination .page-btn.disabled{ opacity:.6; }



#scrollProgress {
            position: fixed;
            top: 10;
            left: 0;
            width: 0%;
            height: 4.5px;
            /* Adjust the height as needed */
            background: linear-gradient(to right, #f11818, #3f2cee);
            /* Customize the color */
            z-index: 100;
        }



