* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  color: #1a1f36;
  font-size: 16px;
  transition: font-size 0.3s ease;
}

/* Font Size Accessibility Classes */
body.font-small {
  font-size: 14px;
}

body.font-normal {
  font-size: 16px;
}

body.font-large {
  font-size: 18px;
}

body.font-xlarge {
  font-size: 20px;
}

body.font-small h1 {
  font-size: 2rem;
}
body.font-small h2 {
  font-size: 1.75rem;
}
body.font-small h3 {
  font-size: 1.5rem;
}
body.font-small p,
body.font-small a,
body.font-small li {
  font-size: 14px;
}

body.font-large h1 {
  font-size: 2.6rem;
}
body.font-large h2 {
  font-size: 2.2rem;
}
body.font-large h3 {
  font-size: 1.9rem;
}
body.font-large p,
body.font-large a,
body.font-large li {
  font-size: 18px;
}

body.font-xlarge h1 {
  font-size: 2.8rem;
}
body.font-xlarge h2 {
  font-size: 2.4rem;
}
body.font-xlarge h3 {
  font-size: 2.1rem;
}
body.font-xlarge p,
body.font-xlarge a,
body.font-xlarge li {
  font-size: 20px;
}

.container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  z-index: 1;
  padding: 0 50px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
}

header {
  background-color: rgb(26, 31, 54);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Optional */
  color: #fff;
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-title h1 {
  font-size: 2.3rem;
  color: #007bff;
  margin-bottom: 1px;
  font-weight: 700;
  color: #f79c3a;
}

.logo-title p {
  color: #fff;
  margin: 1px 0;
  font-weight: 700;
}

.logo-icon {
  color: #f79c3a;
  margin-right: 8px;
}

.logo-icon img {
  height: 80px;
}

.nav-container {
  display: flex;
  align-items: center;
}

.main-nav {
  display: flex;
  margin-right: 20px;
}

.main-nav li {
  list-style: none;
  margin: 0 15px;
}
.main-nav a,
.mobile-nav a {
  color: #ffffff;
  font-size: 1rem;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.15em;
  transition: all 0.3s ease;
  padding: 8px 0;
  position: relative;
}

.main-nav a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #f79c3a;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

.main-nav a:hover:after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  margin-right: 20px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Accessibility Font Size Control */
.accessibility-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.font-size-select {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid #4caf50;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  height: 28px;
  font-weight: 500;
}

.font-size-select:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: #66bb6a;
}

.font-size-select option {
  background-color: #1a73e8;
  color: #fff;
}

/* Screen Reader Controls Styling */
.screen-reader-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.screen-reader-btn {
  background-color: #f79c3a;
  border: none;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  min-width: 40px;
}

.screen-reader-btn:hover {
  background-color: #d68530;
  transform: scale(1.05);
}

.screen-reader-btn.active {
  background-color: #28a745;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(40, 167, 69, 0);
  }
}

.voice-speed-select {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid #f79c3a;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  height: 28px;
  font-weight: 500;
}

.voice-speed-select:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.voice-speed-select option {
  background-color: #1a73e8;
  color: #fff;
}

.open-positions-btn {
  background-color: #fff0;
  border: 2px solid #bd6b0b;
  color: #bd6b0b;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 1.1em;
  font-weight: 700;
}

.open-positions-btn:hover {
  background-color: rgb(255 255 255 / 0.1);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgb(26, 31, 54);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  z-index: 100;
  border-radius: 0 0 10px 10px;
}

.mobile-nav.active {
  max-height: 300px;
  padding: 10px 0;
  box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
}

.mobile-nav li {
  list-style: none;
  text-align: center;
  padding: 12px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.mobile-nav li:last-child {
  border-bottom: none;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: block;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #f79c3a;
}
.hero {
  background-color: rgb(249, 250, 251);
  padding: 60px 40px;
  color: #fff;
  padding: 30px 0 100px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-content {
  width: 50%;
}

.hero-content h2 {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content h3 {
  font-size: 2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #e8a327;
}

.hero-content p {
  color: #000;
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 1.2em;
}

.primary-btn {
  background-color: #0061f2;
  border-radius: 8px;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.primary-btn:hover {
  background-color: #0050d4;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgb(0 0 0 / 0.2);
}

.hero-image {
  width: 50%;
  position: relative;
  margin-right: -40px;
  margin-bottom: -100px;
}

.anganwadi-building {
  width: 85%;
}

.hindi-section {
  background-color: #f1e8d9;
  border-bottom: 2px solid #007bff;
  padding: 10px;
  text-align: center;
}

.feature-section {
  padding: 40px;
  text-align: center;
}

.hindi-heading {
  font-size: 2.2em;
  margin-bottom: 10px;
  text-align: left;
  color: rgb(26, 31, 54);
}

.hindi-subtext {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 20px;
  text-align: left;
}

.icon-grid {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 10px;
}

.icon-box {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 95%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.icon-box:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}
.icon-box:nth-child(1) {
  background-color: #1976d2; /* Bold Blue */
  color: #fff;
}

.icon-box:nth-child(2) {
  background-color: #388e3c; /* Deep Green */
  color: #fff;
}

.icon-box:nth-child(3) {
  background-color: #f57c00; /* Vivid Orange */
  color: #fff;
}

.icon-box:nth-child(4) {
  background-color: #7b1fa2; /* Strong Purple */
  color: #fff;
}

.icon-box:nth-child(5) {
  background-color: #d32f2f; /* Rich Red */
  color: #fff;
}

.icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: rgb(26, 31, 54);
}

.icon img {
  height: 120px;
}

.icon-title {
  font-size: 1.4em;
  color: rgb(255, 255, 255);
  font-weight: 700;
}

.steps-section {
  padding: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #ddd;
  margin-top: 20px;
}

.steps-content {
  width: 40%;
}

.steps-heading {
  text-align: left;
  font-size: 28px;
  color: rgb(26, 31, 54);
  margin-bottom: 20px;
}

.steps-subtext {
  text-align: left;
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.steps-visual {
  width: 100%;
  position: relative;
}

.step-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #4db6ac;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-right: 15px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);
}

.step-item:nth-child(2) .step-number {
  background-color: #ff8a65;
}

.step-item:nth-child(3) .step-number {
  background-color: #ffd54f;
}

.step-item:nth-child(4) .step-number {
  background-color: #7986cb;
}

.step-details {
  flex: 1;
  margin: 10px 0 0 0;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: rgb(26, 31, 54);
  margin-bottom: 5px;
}

.step-description {
  font-size: 1.1em;
  color: #666;
}

.faq-heading {
  font-size: 28px;
  color: rgb(26, 31, 54);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.faq-item {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question {
  font-size: 16px;
  color: rgb(26, 31, 54);
}

.faq-toggle {
  color: rgb(26, 31, 54);
  font-size: 20px;
}

.footer {
  background-color: rgb(241, 243, 244);
  padding: 40px 20px;
  text-align: center;
}

.footer p {
  font-size: 0.9em;
}

.footer-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}

.footer-logo img {
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);
  width: 100%;
  height: 100%;
  border-radius: 70px;
}

.footer-title {
  font-size: 28px;
  color: rgb(26, 31, 54);
  margin-bottom: 4px;
  font-weight: 700;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgb(26, 31, 54);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #f79c3a;
}

.footer-copyright {
  color: rgb(26, 31, 54);
  font-size: 16px;
  margin-top: 30px;
}

.footer-vectre-logo {
  height: 35px;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 992px) {
  .container {
    padding: 0;
  }
  .nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    border-top: 1px dashed #cac4b9bf;
    padding: 10px;
    border-bottom: 1px dashed #cac4b9bf;
  }

  .col,
  .hero-content {
    width: 100% !important;
  }

  .feature-section {
    display: flex;
    flex-direction: column-reverse;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .row,
  .steps-section,
  header,
  .hero {
    display: flex;
    flex-direction: column;
  }

  .logo-title h1 {
    font-size: 3.4em;
  }

  header {
    padding: 20px;
  }

  .hero-content h2 {
    font-size: 1.9em;
  }

  .hero-image {
    width: 100%;
    position: relative;
    margin-right: 0;
    margin-bottom: -83px;
  }

  .footer-title {
    font-size: 24px;
  }

  .footer-nav {
    gap: 10px;
    margin: 4px 0;
  }

  .footer-nav a {
    font-size: 16px;
  }

  .icon-grid {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .hero,
  .steps-section {
    flex-direction: column;
  }

  .hero-content,
  .hero-image,
  .steps-content,
  .steps-visual {
    width: 100%;
    margin-bottom: 30px;
  }

  .icon-grid {
    flex-wrap: wrap;
  }

  .icon-box {
    width: 48%;
    margin-bottom: 15px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }

  header {
    padding: 20px;
  }

  /* Screen Reader Controls - Mobile */
  .top-bar-right {
    gap: 6px;
  }

  .accessibility-controls {
    gap: 4px;
  }

  .screen-reader-controls {
    gap: 4px;
  }

  .font-size-select {
    padding: 3px 6px;
    font-size: 0.75rem;
    height: 24px;
  }

  .screen-reader-btn {
    padding: 3px 8px;
    font-size: 0.9rem;
    height: 24px;
    min-width: 35px;
  }

  .voice-speed-select {
    padding: 3px 6px;
    font-size: 0.75rem;
    height: 24px;
  }

  .top-bar a {
    font-size: 0.95em;
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .icon-box {
    width: 100%;
  }

  .open-positions-btn {
    font-size: 14px;
    padding: 6px 10px;
  }

  .logo span {
    font-size: 20px;
  }
}

.mt-10 {
  margin-top: 10px;
}

.col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.col-1 {
  width: 70%;
  padding: 20px;
}

.col-2 {
  width: 30%;
  padding: 20px;
}

.officials-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-end;
}

.official-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  width: 280px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.official-card:nth-child(2) {
  animation-delay: 0.3s;
}

.official-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.15);
}

.image-container {
  background: linear-gradient(to bottom, #0061f1, #96bff1);
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.official-card:nth-child(2) .image-container {
  background: linear-gradient(to bottom, #0061f1, #96bff1);
}

.image-container img {
  width: 250px;
  height: 230px;
  object-fit: cover;
  /* border-radius: 50%; */
  border: 4px solid #fff;
  transition: all 0.3s ease;
}

.official-card:hover .image-container img {
  transform: scale(1.05);
}

.official-info {
  padding: 20px;
  text-align: center;
}

.official-name {
  color: #333;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}

.official-title {
  color: #666;
  font-size: 16px;
  margin-bottom: 10px;
}

.official-department {
  color: #3a86ff;
  font-size: 14px;
  font-weight: 500;
}

.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3a86ff;
  transition: width 0.3s ease;
}

.official-card:hover .highlight::after {
  width: 100%;
}

@media (max-width: 768px) {
  .officials-section {
    flex-direction: column;
    align-items: center;
  }
}

.notice-board {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
  text-align: left;
}

.notice-header {
  background: rgb(26, 31, 54);
  color: #fff;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 600;
}

.notice-content {
  height: 350px;
  overflow-y: auto;
  background: #f0f0f0;
  scrollbar-width: thin;
  scrollbar-color: #888 #f0f0f0;
}

.notice-content::-webkit-scrollbar {
  width: 6px;
}

.notice-content::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.notice-content::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
}

.notice-item {
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
  background: #f0f0f0;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  animation: fadeIn 0.5s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.notice-item:nth-child(even) {
  background: #e5e5e5;
}

.notice-item:last-child {
  border-bottom: none;
}

.notice-item:hover {
  background: #dbeaff;
}

.notice-item-title {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 8px;
}

.notice-item-title span {
  margin-right: 8px;
}

.notice-date {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.notice-link {
  position: absolute;
  bottom: 15px;
  right: 20px;
  background: #36c;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
}

.notice-item:hover .notice-link {
  opacity: 1;
}

.notice-item.new-notice::before {
  content: "नया";
  position: absolute;
  top: 15px;
  right: 20px;
  background: #ff5252;
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
}

@keyframes scrollNotice {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-30px);
  }
}

.scroll-animation {
  animation: scrollNotice 2s infinite alternate;
  animation-timing-function: ease-in-out;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.faq-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, #4776e6, #8e54e9);
}

.faq-subtitle {
  color: #666;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 20px;
}

.accordion {
  list-style: none;
  margin: 0;
  padding: 0;
}

.accordion-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion-item:nth-child(1) {
  animation-delay: 0.1s;
}

.accordion-item:nth-child(2) {
  animation-delay: 0.2s;
}

.accordion-item:nth-child(3) {
  animation-delay: 0.3s;
}

.accordion-item:nth-child(4) {
  animation-delay: 0.4s;
}

.accordion-item:nth-child(5) {
  animation-delay: 0.5s;
}

.accordion-item:nth-child(6) {
  animation-delay: 0.6s;
}

.accordion-item:hover {
  box-shadow: 0 10px 20px rgb(0 0 0 / 0.1);
  transform: translateY(-3px);
}

.accordion-header {
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
  font-weight: 600;
  font-size: 17px;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  color: #4776e6;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: #666;
  transition: all 0.3s ease;
}

.accordion-icon::before {
  width: 12px;
  height: 2px;
}

.accordion-icon::after {
  width: 2px;
  height: 12px;
}

.accordion-item.active .accordion-icon {
  background: #4776e6;
  transform: rotate(45deg);
}

.accordion-item.active .accordion-icon::before,
.accordion-item.active .accordion-icon::after {
  background: #fff;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: #666;
  line-height: 1.6;
  transition: all 0.35s ease;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding-bottom: 25px;
}

.accordion-item.active .accordion-header {
  border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 28px;
  }

  .accordion-header {
    font-size: 16px;
    padding: 18px 20px;
  }
}

.intro-section {
  background-color: #f9f6f1;
  background-repeat: repeat;
  background-size: 300px 300px;
  padding: 0 !important;
}

.pt-10 {
  padding-top: 10px;
}

.head2 {
  background-color: #dbc092;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th {
  background-color: #1a1f36;
  color: #ffffff;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  position: relative;
  border-bottom: 1px solid #1a1f36;
}

tr {
  transition: all 0.2s ease;
}

tr:hover {
  background-color: #f9fafb;
}

td {
  padding: 14px 20px;
  border-bottom: 1px solid #eaeaea;
  position: relative;
  color: #333;
  font-size: 14px;
}

.view-btn {
  display: inline-block;
  padding: 6px 12px;
  background-color: #3a5269;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  font-size: 13px;
}

.view-btn:hover {
  background-color: #2c3e50;
}

.date-cell {
  color: #666;
}

.title-cell {
  font-weight: 500;
  color: #222;
}

.description-cell {
  color: #555;
  max-width: 300px;
}

tr:first-child th:first-child {
  border-top-left-radius: 16px;
}

tr:first-child th:last-child {
  border-top-right-radius: 16px;
}

/* First row of table header */
thead tr:first-child {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.action-btn {
  padding: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.action-btn:hover {
  background-color: #eaeaea;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.status-in-progress {
  background-color: #e8f0fe;
  color: #1a73e8;
}

.status-completed {
  background-color: #e6f4ea;
  color: #137333;
}

.row-animate {
  animation: fadeIn 0.5s forwards;
}

.see-all {
  text-decoration: none;
  color: #1a73e8;
  font-size: 13px;
  font-weight: 500;
}

.priority-marker {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #fa5a3d;
  border-radius: 50%;
  margin-left: 5px;
}
.top-bar {
  background-color: rgb(26, 115, 232);
  padding: 6px 20px;
  text-align: right;
  font-size: 14px;
  color: #fff;
}
.top-bar a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  font-size: 1.1em;
  display: inline-flex;
  align-items: center;
}
.top-bar-inner {
  color: #fff;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.hero-content h2 {
  color: #1a1f36;
  font-size: 2.5rem;
  font-weight: 700;
}

.hero-content h3 {
  font-size: 1.75rem;
  color: rgb(26, 115, 232);
}
.hindi-section,
.feature-section {
  background-color: #fff;
}

.steps-section {
  border-top: 1px solid #e0e0e0;
}
.icon-box,
.official-card,
.notice-board {
  background-color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.notice-header {
  background-color: #1a1f36;
  color: #ffffff;
}
