/* style.css */
:root {
  --brand-dark: #0b4079;
  --brand: #0b4079;
  --brand-contrast: #fff;
  --muted: #6b6b6b;
  --panel-bg: #ffffff;
  --panel-border: #e6e6e6;
  --accent-gray: #f4f6f7;
  --footer-dark: #353536;
  --maxw: 1450px;
}

/* reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  background-color: #fff;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: #111;
  line-height: 1.35;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* TOP GOV STRIP */
.gov-strip {
  background-color: #fff;
  border-bottom: 1px solid #e9e9e9;
  font-size: 13px;
}

.gov-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 50px;
  /* padding: 14px 50px 14px 50px; */
}

.gov-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #222;
}

.gov-left .india {
  font-weight: 700;
}

.gov-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #333;
}

.gov-right .icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

/*font increase /decrease*/
.font-size-dropdown {
  position: relative;
  display: inline-block;
  margin: 0 6px;
}

.font-size-dropdown button {
  background: transparent;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 2px 8px;
  font-weight: bold;
  cursor: pointer;
}

.font-size-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 120%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

.font-size-dropdown .dropdown-menu div {
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 600;
  color: #333;
}

.font-size-dropdown .dropdown-menu div:hover {
  background: var(--accent-gray);
}

.font-size-dropdown.show .dropdown-menu {
  display: block;
}

/* HEADER */
header.site-header {
  border-bottom: 1px solid var(--panel-border);
  background-color: #fff;
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  /* padding: 14px; */
  padding: 14px 50px 14px 50px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 90px;
  height: 100px;
  object-fit: contain;
  background: transparent;
}

.brand .titles {
  line-height: 1;
}

.brand h1 {
  font-size: 20px;
  color: #111;
  margin-bottom: 2px;
}

.brand p {
  font-size: 13px;
  color: var(--muted);
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.searchbox {
  border: 1px solid var(--panel-border);
  padding: 6px 10px;
  border-radius: 18px;
  min-width: 220px;
}

/* NAVIGATION */
nav.main-nav {
  background: var(--brand-dark);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}

nav .nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
  flex-wrap: wrap;
}

nav ul {
  margin-left: 43px;
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}

nav li a {
  display: block;
  padding: 10px 16px;
  color: var(--brand-contrast);
  font-weight: 600;
  border-radius: 2px;
  transition: background 0.3s;
}

nav li a.active,
nav li a:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Dropdown Menu */
nav li.dropdown {
  position: relative;
}

nav li .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  border: 1px solid var(--panel-border);
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

nav li .dropdown-menu li {
  list-style: none;
}

nav li .dropdown-menu li a {
  color: #111;
  padding: 10px 14px;
  font-weight: 500;
}

nav li .dropdown-menu li a:hover {
  background: var(--accent-gray);
  color: var(--brand-dark);
}

/* Show dropdown on hover (desktop) */
nav li.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hamburger toggle */
.menu-toggle {
  display: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

/* SLIDER */
.hero-slider {
  position: relative;
  background: #fafafa;
  height: 360px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 5;
}

.slider-arrow.left {
  left: 12px;
}

.slider-arrow.right {
  right: 12px;
}

.slider-pager {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 6;
}

.pager-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  display: inline-block;
}

.pager-dot.active {
  background: var(--brand);
}

/* MARQUEE / LATEST */
.latest-wrap {
  margin: auto;
  font-size: 20px;
  padding: 0 12px;
}

.latest {
  background: #fff;
  border: 1px solid var(--panel-border);
  padding: 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.latest strong {
  color: var(--brand-dark);
  min-width: 70px;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  flex: 1;
  color: brown;
}

.marquee .items {
  display: inline-block;
  animation: scroll 18s linear infinite;
}

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

  100% {
    transform: translateX(-50%);
  }
}

/* UPDATED ABOUT SECTION - 3 COLUMNS */
.about-section {
  max-width: var(--maxw);
  margin: 40px auto;
  padding: 0 12px;
}

.about-container {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: 2fr 1fr 1fr;
  /* gap: 30px; */
  align-items: start;
}

.about-content {
  background: #fff;
  padding: 30px;
  /* border-radius: 8px; */
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
  /* border: 1px solid var(--panel-border); */
}

.about-content h2 {
  color: var(--brand-dark);
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.about-content p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.read-more-btn {
  display: inline-block;
  background: var(--brand);
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.read-more-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 64, 121, 0.3);
}

.about-image {
  background: #fff;
  /* padding: 25px; */
  text-align: center;
  /* border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--panel-border); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.about-image img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.about-image h4 {
  color: var(--brand-dark);
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.about-image p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.ministers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.minister-card {
  text-align: center;
  padding: 20px;
  background: var(--accent-gray);
  border-radius: 6px;
}

.minister-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--brand);
}

.minister-card h4 {
  color: var(--brand-dark);
  font-size: 16px;
  margin-bottom: 5px;
}

.minister-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* .about-image {
  background: #fff;
  padding: 20px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
}

.about-image h4 {
  color: var(--brand-dark);
  font-size: 18px;
  margin-bottom: 10px;
}

.about-image p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
} */


/* UPDATED MARQUEE STYLING */
.latest-wrap {
  margin: 0px auto;
  font-size: 18px;
  padding: 0 12px;
}

.latest {
  background: var(--brand-dark);
  border: 1px solid var(--brand-dark);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  overflow: hidden;
}

.latest strong {
  color: #fff;
  min-width: 100px;
  font-size: 16px;
  flex-shrink: 0;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  flex: 1;
  color: #fff;
  font-weight: 500;
}

.marquee .items {
  display: inline-block;
  animation: scroll 50s linear infinite;
  /* Very slow speed - 2 minutes */
  padding-left: 100%;
}

.marquee .items.paused {
  animation-play-state: paused;
  /* Pause animation on hover */
}

.marquee-link {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.marquee-link:hover {
  color: #fff;
  /* Yellow color on hover */
  text-decoration: underline;
}

.marquee-link:first-child {
  margin-left: 0;
}

.marquee-separator {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 5px;
}

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

  100% {
    transform: translateX(-100%);
  }
}

/* marquee end */
/* MAIN GRID - UPDATED FOR SWAPPED SECTIONS */
.page-main {
  max-width: var(--maxw);
  margin: 10px auto;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 25px;
}


.page-main.otherpage {
  max-width: var(--maxw);
  margin: 30px auto;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

/* LEFT ASIDE - QUICK LINKS */
aside.left-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.aside-box {
  background: #fff;
  border: 1px solid var(--panel-border);
  padding: 12px;
  border-radius: 3px;
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-link {
  display: flex;
  align-items: center;
  padding: 15px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  gap: 15px;
}

.quick-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: white;
}

.quick-link-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 5px;
}

.quick-link-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.quick-link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quick-link-text span {
  display: block;
  line-height: 1.3;
}

.english-text {
  font-size: 16px;
  /* font-weight: 600; */
}

.hindi-text {
  font-size: 14px;
  opacity: 0.9;
}

/* Specific hover effects for each color */
.quick-link.budget:hover {
  background-color: #3d8b40;
}

.quick-link.acts:hover {
  background-color: #0b7dda;
}

.quick-link.circulars:hover {
  background-color: #e68900;
}

.quick-link.tenders:hover {
  background-color: #0288d1;
}

/* RIGHT: DEPARTMENTS / CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.dept-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-top: 10px solid var(--brand);
  padding: 12px;
  border-radius: 3px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dept-thumb {
  width: 100px;
  height: 100px;
  background: #eee;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2px;
}

.dept-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dept-body h4 {
  font-size: 22px;
  color: #111;
  margin-bottom: 8px;
}

.dept-body ul {
  list-style: disc;
  margin-left: 18px;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

/* DIVISIONS SECTION */
.divisions-section {
  max-width: var(--maxw);
  margin: 50px auto;
  padding: 0 12px;
}

.divisions-section h2 {
  color: var(--brand-dark);
  font-size: 24px;
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 10px solid var(--brand);
}

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.division-card {
  background: #fff;
  border: 1px solid var(--panel-border);
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.division-card h3 {
  color: var(--brand-dark);
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--accent-gray);
}

.division-card ul {
  list-style: none;
  padding-left: 0;
}

.division-card li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--accent-gray);
  color: #333;
}

.division-card li:last-child {
  border-bottom: none;
}

.division-card li:before {
  content: "•";
  color: var(--brand);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: 0em;
}

.division-divider {
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      var(--panel-border),
      transparent);
  margin: 25px 0;
}

/* HIGHLIGHT BANNERS ROW */
.banner-row {
  max-width: var(--maxw);
  margin: 18px auto;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.banner-row img {
  flex: 1 1 200px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* LOGO STRIP CAROUSEL - GOVERNMENT STYLE */
/* Logo Strip Carousel */
.logo-strip {
  background: #f9fafb;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}

.logo-strip .logo-inner {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 15px;
  scrollbar-width: none;
  /* hide scrollbar for Firefox */
}

.logo-strip .logo-inner::-webkit-scrollbar {
  display: none;
  /* hide scrollbar for Chrome/Safari */
}

.logo-strip .logo-item {
  flex: 0 0 auto;
  min-width: 180px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-strip .logo-item:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.logo-strip img {
  height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.logo-strip img:hover {
  opacity: 1;
}

/* Arrows */
.logo-nav {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  font-size: 22px;
  width: 36px;
  height: 36px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.logo-nav:hover {
  background: #f0f0f0;
  color: #000;
}



/* FOOTER - REDESIGNED TO MATCH NEW DESIGN */
footer.page-footer {
  background: #212161;
  color: #fff;
  padding: 0;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 20px 20px;
}

/* Top Section: Logo and Navigation Links */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.logo-col {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background: transparent;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle {
  width: 80px;
  height: 80px;
  background: transparent;
  border: 2px solid #ffd700;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-emblem {
  font-size: 16px;
  color: #ffd700;
  margin-bottom: 2px;
}

.logo-text {
  text-align: center;
}

.logo-main {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}

.logo-sub {
  font-size: 8px;
  color: #fff;
  line-height: 1;
  margin-top: 2px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-name {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.brand-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-line {
  font-size: 14px;
  color: #fff;
  line-height: 1.3;
}

.footer-title {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffd700;
}

/* Middle Section: Disclaimer */
.footer-disclaimer {
  margin: 30px 0;
  padding: 20px 0;
}

.disclaimer-content {
  max-width: 100%;
}

.disclaimer-title {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 15px 0;
}

.disclaimer-separator {
  height: 1px;
  background: #fff;
  margin: 15px 0;
}

.disclaimer-text {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Bottom Section: Copyright and Last Update */
.footer-bottom {
  border-top: 1px solid #fff;
  padding-top: 20px;
  margin-top: 20px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  color: #fff;
  font-size: 14px;
}

.last-update {
  color: #fff;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  
  .logo-col {
    grid-column: 1 / -1;
    justify-content: center;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .logo-col {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-inner {
    padding: 20px 15px;
  }
}

/* little accessibility focus */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  background: #000;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
}

/* BREADCRUMB SECTION */
.breadcrumb-section {
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  padding: 12px 0;
}

.breadcrumb-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb {
  font-size: 14px;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: var(--brand-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #0a366c;
  text-decoration: underline;
}

.breadcrumb .separator {
  color: #adb5bd;
}

/* PAGE HERO SECTION */
.page-hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #0a366c 100%);
  color: white;
  padding: 0;
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
  padding: 30px 0 20px 0;
  text-align: left;
}

.hero-tabs {
  display: flex;
  justify-content: left;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  margin-top: 20px;
}

.hero-tab {
  padding: 15px 25px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.hero-tab:hover,
.hero-tab.active {
  background: rgba(255, 255, 255, 0.15);
  border-bottom: 3px solid white;
}

/* PAGE TITLE SECTION */
.page-title-section {
  max-width: var(--maxw);
  margin: 30px auto;
  padding: 0 20px;
  text-align: center;
}

.page-title-section h2 {
  color: var(--brand-dark);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--brand);
  display: inline-block;
}

/* MINISTER CARDS STYLES */
.minister-cards-section {
  margin: 40px 0;
}

.minister-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.minister-card-full {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.minister-card-full:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.minister-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.minister-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--brand);
  transition: transform 0.5s ease;
}

.minister-card-full:hover .minister-image img {
  transform: scale(1.05);
}

.minister-details {
  padding: 20px 25px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.minister-details h3 {
  color: var(--brand-dark);
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 600;
}

.minister-designation {
  color: var(--brand);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--accent-gray);
  padding-bottom: 12px;
}

.minister-info {
  margin-bottom: 15px;
}

.minister-info p {
  margin-bottom: 6px;
  font-size: 14px;
  color: #444;
}

.minister-info strong {
  color: #222;
}

.minister-bio {
  margin-bottom: 20px;
  flex-grow: 1;
}

.minister-bio p {
  line-height: 1.6;
  color: #555;
  font-size: 14px;
}

.minister-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 14px;
  min-width: 120px;
}

.btn-primary {
  background: var(--brand);
  color: white;
}

.btn-primary:hover {
  background: var(--brand-dark);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.btn-secondary:hover {
  background: var(--brand);
  color: white;
}

/* PDF BUTTONS STYLES */
.pdf-buttons-section {
  margin: 60px 0 30px;
}

.pdf-buttons-section h2 {
  color: var(--brand-dark);
  font-size: 28px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand);
  display: inline-block;
}

.pdf-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.pdf-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 16px;
  min-height: 80px;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.pdf-button:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: white;
  text-decoration: none;
}

.pdf-button::after {
  content: "📄";
  margin-left: 10px;
  font-size: 18px;
}

/* Different colors for each button */
.pdf-button-1 {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.pdf-button-1:hover {
  background: linear-gradient(135deg, #c0392b, #a93226);
}

.pdf-button-2 {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.pdf-button-2:hover {
  background: linear-gradient(135deg, #2980b9, #2471a3);
}

.pdf-button-3 {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.pdf-button-3:hover {
  background: linear-gradient(135deg, #27ae60, #229954);
}

.pdf-button-4 {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.pdf-button-4:hover {
  background: linear-gradient(135deg, #8e44ad, #7d3c98);
}

/* Table Styles - Fee Table */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.fee-table th {
  background-color: #ff6b35;
  color: white;
  font-weight: 600;
  text-align: left;
  padding: 16px 20px;
  font-size: 16px;
  border-bottom: 2px solid #e55a2b;
}

.fee-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--accent-gray);
  color: #333;
  font-size: 15px;
  line-height: 1.5;
}

.fee-table tr:last-child td {
  border-bottom: none;
}

.fee-table tr:nth-child(even) {
  background-color: var(--accent-gray);
}

.fee-table tr:hover {
  background-color: rgba(255, 107, 53, 0.08);
  transition: background-color 0.2s ease;
}

.fee-table td:last-child {
  font-weight: 600;
  color: var(--brand-dark);
}

/* Default table style for other tables */
.default-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: var(--panel-bg);
  border: 1px solid var(--panel-border);
}

.default-table th {
  background-color: var(--brand-dark);
  color: white;
  font-weight: 600;
  text-align: left;
  padding: 14px 18px;
}

.default-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--accent-gray);
}

/* Guidelines Page Styles */
.guidelines-content {
  max-width: 100%;
  line-height: 1.7;
  color: #333;
}

.guidelines-content h2 {
  color: var(--brand-dark);
  font-size: 28px;
  margin: 30px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand);
}

.guidelines-content h3 {
  color: var(--brand);
  font-size: 22px;
  margin: 25px 0 15px 0;
  font-weight: 600;
}

.guidelines-content h4 {
  color: #2c3e50;
  font-size: 18px;
  margin: 20px 0 12px 0;
  font-weight: 600;
}

.guidelines-content p {
  margin-bottom: 16px;
  text-align: justify;
}

.guidelines-content ul,
.guidelines-content ol {
  margin: 15px 0;
  padding-left: 30px;
}

.guidelines-content li {
  margin-bottom: 8px;
  text-align: justify;
}

.guidelines-content strong {
  color: var(--brand-dark);
  font-weight: 600;
}

/* Notification Header */
.notification-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid var(--brand);
  padding: 20px;
  margin: 20px 0;
  border-radius: 4px;
}

.notification-header h2 {
  color: var(--brand-dark);
  margin: 0 0 10px 0;
  border: none;
  padding: 0;
  font-size: 24px;
}

.notification-meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Sections */
.guideline-section {
  background: #fff;
  border: 1px solid var(--panel-border);
  border-radius: 6px;
  padding: 25px;
  margin: 25px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.guideline-section h3 {
  color: var(--brand-dark);
  border-bottom: 1px solid var(--accent-gray);
  padding-bottom: 10px;
  margin-top: 0;
}

/* Step by Step Process */
.step-process {
  counter-reset: step-counter;
}

.step-item {
  position: relative;
  padding: 20px 20px 20px 80px;
  margin: 20px 0;
  background: #f8f9fa;
  border-left: 4px solid var(--brand);
  border-radius: 4px;
}

.step-item:before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  background: var(--brand);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
}

.step-item h4 {
  margin-top: 0;
  color: var(--brand-dark);
}

/* Important Notes */
.important-notes {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-left: 4px solid #f39c12;
  padding: 20px;
  margin: 25px 0;
  border-radius: 4px;
}

.important-notes h3 {
  color: #e67e22;
  margin-top: 0;
}

/* Guidelines for IIES Officials Page Styles */
.officials-content {
  max-width: 100%;
  line-height: 1.7;
  color: #333;
}

.officials-content h2 {
  color: var(--brand-dark);
  font-size: 28px;
  margin: 30px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand);
}

.officials-content h3 {
  color: var(--brand);
  font-size: 22px;
  margin: 25px 0 15px 0;
  font-weight: 600;
}

.officials-content h4 {
  color: #2c3e50;
  font-size: 18px;
  margin: 20px 0 12px 0;
  font-weight: 600;
}

.officials-content p {
  margin-bottom: 16px;
  text-align: justify;
}

.officials-content ul,
.officials-content ol {
  margin: 15px 0;
  padding-left: 30px;
}

.officials-content li {
  margin-bottom: 8px;
  text-align: justify;
}

.officials-content strong {
  color: var(--brand-dark);
  font-weight: 600;
}

/* Preamble Section */
.preamble-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid var(--brand);
  padding: 25px;
  margin: 25px 0;
  border-radius: 6px;
  font-style: italic;
}

.preamble-section h3 {
  color: var(--brand-dark);
  margin-top: 0;
  font-style: normal;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

/* Code of Conduct Sections */
.conduct-section {
  background: #fff;
  border: 1px solid var(--panel-border);
  border-radius: 6px;
  padding: 25px;
  margin: 25px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.conduct-section h3 {
  color: var(--brand-dark);
  border-bottom: 1px solid var(--accent-gray);
  padding-bottom: 10px;
  margin-top: 0;
}

/* Role-based Sections */
.role-section {
  background: #fff;
  border: 1px solid var(--panel-border);
  border-radius: 6px;
  padding: 25px;
  margin: 25px 0;
  border-left: 4px solid var(--brand);
}

.role-section h3 {
  color: var(--brand-dark);
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.role-section h3:before {
  content: "•";
  color: var(--brand);
  font-size: 24px;
}

/* Numbered List Styling */
.numbered-list {
  counter-reset: item-counter;
  list-style: none;
  padding-left: 0;
}

.numbered-list li {
  counter-increment: item-counter;
  margin-bottom: 12px;
  padding-left: 40px;
  position: relative;
}

.numbered-list li:before {
  content: counter(item-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  background: var(--brand);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

/* Role-specific colors */
.role-senior {
  border-left-color: #e74c3c;
}

.role-senior h3:before {
  color: #e74c3c;
}

.role-mid {
  border-left-color: #3498db;
}

.role-mid h3:before {
  color: #3498db;
}

.role-junior {
  border-left-color: #2ecc71;
}

.role-junior h3:before {
  color: #2ecc71;
}

.role-group {
  border-left-color: #9b59b6;
}

.role-group h3:before {
  color: #9b59b6;
}

.role-training {
  border-left-color: #f39c12;
}

.role-training h3:before {
  color: #f39c12;
}

/* Final Note Section */
.final-note {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-left: 4px solid #28a745;
  padding: 25px;
  margin: 30px 0;
  border-radius: 6px;
}

.final-note h3 {
  color: #155724;
  margin-top: 0;
}

/* Agents Directory Table Styles */
.agents-directory-container {
  background: #fff;
  border: 1px solid var(--panel-border);
  border-radius: 6px;
  overflow: hidden;
  margin: 30px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.table-header {
  padding: 20px;
  border-bottom: 1px solid var(--panel-border);
  background: var(--accent-gray);
}

.table-header h2 {
  color: var(--brand-dark);
  margin: 0 0 15px 0;
  font-size: 24px;
  font-weight: 600;
}

.search-container {
  display: flex;
  justify-content: flex-start;
}

#agentSearch {
  width: 100%;
  max-width: 500px;
  padding: 12px 16px;
  border: 1px solid var(--panel-border);
  border-radius: 4px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

#agentSearch:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(11, 64, 121, 0.1);
}

.table-responsive {
  overflow-x: auto;
}

.agents-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--panel-bg);
}

.agents-table th {
  background-color: var(--brand-dark);
  color: white;
  font-weight: 600;
  text-align: left;
  padding: 16px 20px;
  font-size: 16px;
  border-bottom: 2px solid #0a366c;
  white-space: nowrap;
}

.agents-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--accent-gray);
  color: #333;
  font-size: 15px;
  line-height: 1.5;
}

.agents-table tr:last-child td {
  border-bottom: none;
}

.agents-table tr:nth-child(even) {
  background-color: var(--accent-gray);
}

.agents-table tr:hover {
  background-color: rgba(11, 64, 121, 0.08);
  transition: background-color 0.2s ease;
}

.table-footer {
  padding: 20px;
  border-top: 1px solid var(--panel-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.pagination-info {
  color: var(--muted);
  font-size: 14px;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pagination-btn {
  background: var(--brand);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 14px;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--brand-dark);
}

.pagination-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  gap: 5px;
}

.page-number {
  padding: 8px 12px;
  border: 1px solid var(--panel-border);
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.page-number:hover {
  background: var(--accent-gray);
}

.page-number.active {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

/* Hire Agent Button Styles */
.hire-agent-btn {
  background: var(--brand);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 16px;
  margin: 20px 0;
}

.hire-agent-btn:hover {
  background: var(--brand-dark);
}

/* Agent Categories Styles */
.agent-categories {
  margin: 30px 0;
  padding: 20px;
  background: var(--accent-gray);
  border-radius: 6px;
}

.agent-categories h3 {
  color: var(--brand-dark);
  margin-bottom: 20px;
  font-size: 22px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.category-card {
  background: white;
  padding: 20px;
  border-radius: 4px;
  border-left: 4px solid var(--brand);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-2px);
}

.category-card h4 {
  color: var(--brand-dark);
  margin-bottom: 8px;
  font-size: 16px;
}

.category-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  background: white;
  margin: 50px auto;
  width: 90%;
  max-width: 700px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid var(--panel-border);
  background: var(--brand-dark);
  color: white;
  border-radius: 8px 8px 0 0;
}

.modal-header h2 {
  margin: 0;
  font-size: 24px;
}

.close-btn {
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-body {
  padding: 30px;
}

/* Form Styles */
.agent-form {
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 10px;
}

.agent-form::-webkit-scrollbar {
  width: 6px;
}

.agent-form::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.agent-form::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 3px;
}

.form-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--accent-gray);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.form-section h3 {
  color: var(--brand-dark);
  margin-bottom: 20px;
  font-size: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-gray);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--panel-border);
  border-radius: 4px;
  font-size: 15px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(11, 64, 121, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
  line-height: 1.5;
}

.checkbox-group a {
  color: var(--brand);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--accent-gray);
}

.btn-primary {
  background: var(--brand);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 16px;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-secondary:hover {
  background: var(--brand);
  color: white;
}

/* Success Message Styles */
.success-message {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.success-content {
  background: white;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  margin: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: modalSlideIn 0.3s ease;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.success-content h3 {
  color: var(--brand-dark);
  margin-bottom: 15px;
  font-size: 22px;
}

.success-content p {
  color: var(--muted);
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Enquiry Form Styles */
.enquiry-container {
  background: #fff;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  overflow: hidden;
  margin: 30px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.enquiry-header {
  padding: 30px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, #0a366c 100%);
  color: white;
  text-align: center;
}

.enquiry-header h2 {
  margin: 0 0 15px 0;
  font-size: 28px;
  font-weight: 600;
}

.enquiry-header p {
  margin: 0;
  opacity: 0.9;
  font-size: 16px;
  line-height: 1.5;
}

.enquiry-form {
  padding: 30px;
}

.form-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--accent-gray);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.section-title {
  color: var(--brand-dark);
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-gray);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-group label::after {
  content: " *";
  color: #e74c3c;
  font-weight: normal;
}

.form-group input:not([type="checkbox"]):not([type="file"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--panel-border);
  border-radius: 4px;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11, 64, 121, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* File Upload Styles */
.file-upload-area {
  position: relative;
  border: 2px dashed var(--panel-border);
  border-radius: 6px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  background: var(--accent-gray);
}

.file-upload-area:hover {
  border-color: var(--brand);
  background: rgba(11, 64, 121, 0.05);
}

.file-upload-area input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-placeholder {
  pointer-events: none;
}

.upload-icon {
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
}

.upload-placeholder p {
  margin: 0 0 8px 0;
  color: var(--brand-dark);
  font-weight: 500;
}

.upload-placeholder small {
  color: var(--muted);
  font-size: 12px;
}

.file-list {
  margin-top: 15px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: white;
  border: 1px solid var(--panel-border);
  border-radius: 4px;
  margin-bottom: 8px;
  font-size: 14px;
}

.file-item:last-child {
  margin-bottom: 0;
}

.file-remove {
  color: #e74c3c;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 16px;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Checkbox and Radio Styles */
.preferences-group {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
  line-height: 1.5;
  color: #333;
}

.checkbox-group a {
  color: var(--brand);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.terms-group {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 6px;
  border-left: 4px solid var(--brand);
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--accent-gray);
}

.btn-primary {
  background: var(--brand);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 16px;
  min-width: 140px;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  min-width: 140px;
}

.btn-secondary:hover {
  background: var(--brand);
  color: white;
}

/* Success Message Styles */
.success-message {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.success-content {
  background: white;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  max-width: 500px;
  margin: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-icon {
  width: 60px;
  height: 60px;
  background: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.success-content h3 {
  color: var(--brand-dark);
  margin-bottom: 15px;
  font-size: 22px;
}

.success-content p {
  color: var(--muted);
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Act & Policy Page Styles */
.acts-policy-page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* Page Header */
.acts-policy-header {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #0a366c 100%);
  color: white;
  padding: 40px 0;
  margin-bottom: 40px;
  border-radius: 0 0 8px 8px;
}

.acts-policy-header .header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.acts-policy-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.acts-policy-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Content */
.acts-policy-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Introduction Section */
.intro-section {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--brand);
}

.intro-section h2 {
  color: var(--brand-dark);
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-gray);
}

.intro-section p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

/* Practice Section */
.practice-section {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2ecc71;
}

.practice-section h2 {
  color: var(--brand-dark);
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-gray);
}

.practice-section p {
  color: #333;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Acts Grid */
.acts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.act-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--brand);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.act-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.act-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), #2ecc71);
}

.act-number {
  display: inline-block;
  background: var(--brand);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.act-card h3 {
  color: var(--brand-dark);
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.act-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Different colors for different acts */
.act-card:nth-child(1) {
  border-top-color: #e74c3c;
}

.act-card:nth-child(1)::before {
  background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.act-card:nth-child(1) .act-number {
  background: #e74c3c;
}

.act-card:nth-child(2) {
  border-top-color: #3498db;
}

.act-card:nth-child(2)::before {
  background: linear-gradient(90deg, #3498db, #2980b9);
}

.act-card:nth-child(2) .act-number {
  background: #3498db;
}

.act-card:nth-child(3) {
  border-top-color: #2ecc71;
}

.act-card:nth-child(3)::before {
  background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.act-card:nth-child(3) .act-number {
  background: #2ecc71;
}

.act-card:nth-child(4) {
  border-top-color: #9b59b6;
}

.act-card:nth-child(4)::before {
  background: linear-gradient(90deg, #9b59b6, #8e44ad);
}

.act-card:nth-child(4) .act-number {
  background: #9b59b6;
}

.act-card:nth-child(5) {
  border-top-color: #f39c12;
}

.act-card:nth-child(5)::before {
  background: linear-gradient(90deg, #f39c12, #e67e22);
}

.act-card:nth-child(5) .act-number {
  background: #f39c12;
}

.act-card:nth-child(6) {
  border-top-color: #1abc9c;
}

.act-card:nth-child(6)::before {
  background: linear-gradient(90deg, #1abc9c, #16a085);
}

.act-card:nth-child(6) .act-number {
  background: #1abc9c;
}

.act-card:nth-child(7) {
  border-top-color: #34495e;
}

.act-card:nth-child(7)::before {
  background: linear-gradient(90deg, #34495e, #2c3e50);
}

.act-card:nth-child(7) .act-number {
  background: #34495e;
}

/* Key Features Section */
.key-features {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px;
  border-radius: 8px;
  margin-top: 40px;
}

.key-features h2 {
  color: var(--brand-dark);
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-item {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.feature-item h3 {
  color: var(--brand-dark);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Compliance Section */
.compliance-section {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
  border-left: 4px solid #e74c3c;
}

.compliance-section h2 {
  color: var(--brand-dark);
  font-size: 1.8rem;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-gray);
}

.compliance-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.compliance-item {
  padding: 20px;
  background: var(--accent-gray);
  border-radius: 6px;
  border-left: 4px solid var(--brand);
}

.compliance-item h3 {
  color: var(--brand-dark);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.compliance-item p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* SERVICES SECTION STYLES - SINGLE LINE */
.services-section {
  max-width: var(--maxw);
  margin: 20px auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 0px;
}

.section-header h2 {
  color: var(--brand-dark);
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
  align-items: start;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 10px 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--panel-border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 200px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--brand);
}

.service-icon {
  width: 100px;
  height: 100px;
  /* background: linear-gradient(135deg, var(--brand-dark), #0a366c); */
  /* background: linear-gradient(135deg, var(--brand-dark), #fff); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 12px;
  flex-shrink: 0;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.service-content h3 {
  color: var(--brand-dark);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

/* social media  */
/* SOCIAL MEDIA & TWITTER SECTION STYLES */
.social-media-section {
  max-width: var(--maxw);
  margin: 20px auto;
  padding: 0 20px;
}

.social-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* Social Links Container */
.social-links-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--panel-border);
}

.social-header {
  text-align: center;
  margin-bottom: 30px;
}

.social-header h2 {
  color: var(--brand-dark);
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.social-header p {
  color: var(--muted);
  font-size: 1.1rem;
}

.social-platforms-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-platform-card {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--panel-border);
  gap: 15px;
}

.social-platform-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

/* Platform Specific Colors */
.social-platform-card.twitter:hover {
  border-color: #1DA1F2;
}

.social-platform-card.facebook:hover {
  border-color: #1877F2;
}

.social-platform-card.youtube:hover {
  border-color: #FF0000;
}

.social-platform-card.instagram:hover {
  border-color: #E4405F;
}

.platform-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.twitter .platform-icon {
  background: #1DA1F2;
  color: white;
}

.facebook .platform-icon {
  background: #1877F2;
  color: white;
}

.youtube .platform-icon {
  background: #FF0000;
  color: white;
}

.instagram .platform-icon {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  color: white;
}

.platform-info {
  flex: 1;
}

.platform-info h3 {
  color: var(--brand-dark);
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.platform-info p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.follow-btn {
  background: var(--brand);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.social-platform-card:hover .follow-btn {
  background: var(--brand-dark);
}

/* Twitter Feed Container */
.twitter-feed-container {
  background: #fff;
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.twitter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
  color: white;
}

.twitter-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.twitter-logo h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.view-all-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
}

.view-all-link:hover {
  opacity: 0.8;
  color: white;
  text-decoration: underline;
}

.tweets-container {
  padding: 0;
}

.tweet-card {
  padding: 25px 30px;
  border-bottom: 1px solid var(--accent-gray);
  transition: background 0.3s ease;
}

.tweet-card:hover {
  background: #f8f9fa;
}

.tweet-card:last-child {
  border-bottom: none;
}

.tweet-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.tweet-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--accent-gray);
  flex-shrink: 0;
}

.tweet-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tweet-author {
  flex: 1;
}

.tweet-author strong {
  color: var(--brand-dark);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 2px;
}

.tweet-author span {
  color: var(--muted);
  font-size: 0.9rem;
}

.tweet-content {
  margin-bottom: 15px;
}

.tweet-content p {
  color: #333;
  line-height: 1.5;
  margin-bottom: 10px;
  font-size: 1rem;
}

.tweet-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.tweet-time {
  font-size: 0.8rem;
}

.tweet-stats {
  display: flex;
  gap: 15px;
}

.tweet-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* PM MODI QUOTES SECTION STYLES */
.pm-quotes-section {
  background: #e0e8f7;
  padding: 40px 0;
  margin: 30px 0;
}

.pm-quotes-container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.pm-quotes-content {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pm-image-section {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.pm-image {
  position: relative;
}

.pm-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pm-info h3 {
  color: var(--brand-dark);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.quote-event-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.quote-icon {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  line-height: 1;
  flex-shrink: 0;
}

.quote-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1a237e;
  margin-bottom: 10px;
  font-weight: 500;
}

.event-details {
  border-top: 2px solid #1a237e;
  padding-top: 20px;
}

.event-header h4 {
  color: #1a237e;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  text-transform: uppercase;
}

.event-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.event-date {
  color: #1a237e;
  font-weight: 600;
  font-size: 1rem;
}

.view-event-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 2px solid #1a237e;
  border-radius: 6px;
  background: transparent;
  color: #1a237e;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.view-event-btn:hover {
  background: #1a237e;
  color: #fff;
}

.view-event-btn i {
  font-size: 0.8rem;
}

/* UPCOMING EVENTS CTA SECTION STYLES */
.events-cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px 0;
  margin: 10px 0;
  border-top: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
}

.events-container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.events-header {
  text-align: center;
  margin-bottom: 30px;
}

.events-header h2 {
  color: var(--brand-dark);
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.events-header p {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.event-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  gap: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--panel-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand);
  transition: width 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.event-card:hover::before {
  width: 6px;
}

.event-date {
  background: linear-gradient(135deg, var(--brand-dark), #0a366c);
  color: white;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  min-width: 80px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.date-day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.date-month {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.date-year {
  font-size: 0.8rem;
  opacity: 0.9;
}

.event-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-content h3 {
  color: var(--brand-dark);
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.event-content p {
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
  flex: 1;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.event-time,
.event-location {
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-reminder-btn {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  align-self: flex-start;
  margin-top: auto;
}

.event-reminder-btn:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-2px);
}

/* Events CTA Footer */
.events-cta-footer {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--panel-border);
}

.cta-content h3 {
  color: var(--brand-dark);
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.cta-content p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-width: 200px;
}

.cta-btn.primary {
  background: var(--brand);
  color: white;
}

.cta-btn.primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(11, 64, 121, 0.3);
}

.cta-btn.secondary {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.cta-btn.secondary:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-2px);
}

/* Content Styles */
/* Content Styles */
.law-content {
  line-height: 1.7;
  color: #333;
}

.law-content h2 {
  color: var(--brand-dark);
  font-size: 28px;
  margin: 30px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand);
}

.law-content h3 {
  color: var(--brand);
  font-size: 22px;
  margin: 25px 0 15px 0;
  font-weight: 600;
}

.law-content p {
  margin-bottom: 16px;
  text-align: justify;
}

.law-content ul,
.law-content ol {
  margin: 15px 0;
  padding-left: 30px;
}

.law-content li {
  margin-bottom: 8px;
  text-align: justify;
}

.law-content strong {
  color: var(--brand-dark);
  font-weight: 600;
}

.intro-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid var(--brand);
  padding: 25px;
  margin: 25px 0;
  border-radius: 6px;
}

.intro-section h2 {
  color: var(--brand-dark);
  margin-top: 0;
  font-style: normal;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.regulation-section {
  background: #fff;
  border: 1px solid var(--panel-border);
  border-radius: 6px;
  padding: 25px;
  margin: 25px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.regulation-section h3 {
  color: var(--brand-dark);
  border-bottom: 1px solid var(--accent-gray);
  padding-bottom: 10px;
  margin-top: 0;
}

.conclusion-section {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-left: 4px solid #28a745;
  padding: 25px;
  margin: 30px 0;
  border-radius: 6px;
}

.conclusion-section h3 {
  color: #155724;
  margin-top: 0;
}

/* LOGIN BUTTON STYLES */
.login-btn {
  width: 100%;
  background: var(--brand);
  color: white;
  border: none;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  font-size: 15px;
  text-align: center;
}

.login-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

/* LOGIN MODAL STYLES */
.login-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-modal-content {
  background: white;
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
  overflow: hidden;
}

.login-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: var(--brand-dark);
  color: white;
}

.login-modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.close-btn {
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.login-modal-body {
  padding: 30px;
}


/*quik scrtion right hand side*/

/* Updated RIGHT: DEPARTMENTS / CARDS section */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* Make Press Release and Tender cards span full width */
.dept-card[aria-labelledby="d1"]:nth-last-child(2),
.dept-card[aria-labelledby="d2"]:last-child {
  grid-column: 1 / -1;
  /* Span across all columns */
}

.dept-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-top: 10px solid var(--brand);
  padding: 12px;
  border-radius: 3px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dept-thumb {
  width: 100px;
  height: 100px;
  background: #eee;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2px;
}

.dept-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dept-body {
  flex: 1;
}

.dept-body h4 {
  font-size: 22px;
  color: #111;
  margin-bottom: 8px;
}

.dept-body ul {
  list-style: disc;
  margin-left: 18px;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

.dept-body li {
  margin-bottom: 8px;
}

.dept-body a {
  color: var(--brand-dark);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 4px 0;
}

.dept-body a:hover {
  color: var(--brand);
  text-decoration: underline;
}

/* Language text styling */
.english-text,
.hindi-text {
  display: block;
}

/* LOGIN FORM STYLES */
#loginForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-group label::after {
  content: " *";
  color: #e74c3c;
}

.form-group input {
  padding: 12px 16px;
  border: 1px solid var(--panel-border);
  border-radius: 4px;
  font-size: 15px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(11, 64, 121, 0.1);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  font-weight: normal;
  font-size: 14px;
  margin: 0;
}

.checkbox-group label::after {
  content: "";
}

.forgot-password {
  color: var(--brand);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.submit-btn {
  background: var(--brand);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 16px;
  margin-top: 10px;
}

.submit-btn:hover {
  background: var(--brand-dark);
}

/* Animation for modal */
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   KEY OFFERINGS: TENDERS + PRESS RELEASE
   ✅ Fully Responsive + Auto Scroll
============================ */
.key-offerings {
  max-width: var(--maxw);
  margin: 40px auto;
  padding: 0 12px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* LEFT SIDE - Tenders Section */
.tenders-section {
  /* background: #f0f3ff; */
  border-radius: 8px;
  overflow: hidden;
}

.tenders-tabs {
  display: flex;
  background: #b4c6f8;
  flex-wrap: wrap;
}

.tenders-tabs button {
  flex: 1;
  padding: 15px 20px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: #b4c6f8;
  color: #1a237e;
  transition: all 0.3s ease;
  font-size: 16px;
}

.tenders-tabs button.active {
  background: #0b1e6d;
  color: #fff;
}

.tenders-list {
  background: #fff;
  padding: 20px;
  max-height: 300px;
  overflow-y: auto;
  border-top: 1px solid #ddd;
}

.tenders-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  color: #222;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid #eee;
  transition: color 0.2s;
}

.tenders-list a:hover {
  color: var(--brand-dark);
}

.tenders-list a i {
  font-size: 18px;
  color: #999;
}

/* Scrollbar Styling */
.tenders-list::-webkit-scrollbar {
  width: 8px;
}

.tenders-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 6px;
}

/* RIGHT SIDE - Press Release Section */
.press-release {
  background: #0b1e6d;
  color: #fff;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.press-release h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  /* display: flex; */
  align-items: center;
  gap: 10px;
}

/* Auto Scroll Press Release */
.press-list {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}

.press-list-inner {
  /* display: flex; */
  /* flex-direction: column; */
  gap: 15px;
  animation: scrollPress 15s linear infinite;
}

@keyframes scrollPress {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* Pause on hover */
.press-list:hover .press-list-inner {
  animation-play-state: paused;
}

/* Hide scrollbar */
.press-list::-webkit-scrollbar {
  display: none;
}

.press-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 0;
  opacity: 1;
  transition: opacity 0.3s;
}

.press-item:hover {
  opacity: 0.8;
}

.press-item span.date {
  /* display: flex; */
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 4px;
}

.press-item a {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 2.4;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .page-main {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-slider {
    height: 300px;
  }

  .divisions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .about-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .about-content {
    grid-column: 1 / -1;
    /* Make content span full width on tablet */
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-tab {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .minister-cards-grid {
    gap: 25px;
  }

  .minister-details {
    padding: 18px 22px 22px;
  }

  .minister-details h3 {
    font-size: 20px;
  }

  .minister-designation {
    font-size: 15px;
  }

  .pdf-buttons-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
  }

  .pdf-buttons-section h2 {
    font-size: 26px;
  }

  .pdf-button {
    padding: 18px;
    font-size: 15px;
    min-height: 75px;
  }

  .fee-table th,
  .fee-table td {
    padding: 14px 18px;
    font-size: 15px;
  }

  .default-table th,
  .default-table td {
    padding: 12px 16px;
    font-size: 14px;
  }

  .officials-content h2 {
    font-size: 26px;
  }

  .officials-content h3 {
    font-size: 21px;
  }

  .officials-content h4 {
    font-size: 17px;
  }

  /* Footer responsive */
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    /* 2 equal columns on tablet */
    gap: 30px;
  }

  .acts-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
  }

  .acts-policy-header h1 {
    font-size: 2.2rem;
  }

  /* scrvices */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .service-card {
    min-height: 180px;
    padding: 20px 15px;
  }

  .service-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }

  .service-content h3 {
    font-size: 1rem;
  }

  .social-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .social-links-container {
    padding: 25px;
  }

  .twitter-header {
    padding: 20px 25px;
  }

  .tweet-card {
    padding: 20px 25px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* On tablet, all cards become full width */
  .dept-card {
    grid-column: 1 / -1 !important;
  }

  /* cta */
  .events-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }

  .event-card {
    padding: 20px;
  }

  .events-header h2 {
    font-size: 2.2rem;
  }

  .logo-strip {
    padding: 20px 0;
  }

  .logo-inner {
    gap: 60px;
    animation-duration: 85s;
  }

  .logo-inner img {
    height: 45px;
  }

  .logo-strip::before,
  .logo-strip::after {
    width: 80px;
  }

}

@media (max-width: 768px) {
  .gov-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .header-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .header-actions {
    margin-left: 0;
  }

  .brand {
    justify-content: center;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    height: 240px;
  }

  .dept-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .dept-thumb {
    width: 100%;
    height: 120px;
  }

  /* Footer responsive */
  .footer-inner {
    grid-template-columns: 1fr;
    /* 1 column on mobile */
    gap: 30px;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .social-icons-row {
    justify-content: center;
  }

  .footer-links {
    align-items: center;
  }

  .divisions-grid {
    grid-template-columns: 1fr;
  }

  .ministers-grid {
    grid-template-columns: 1fr;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-content {
    padding: 25px 20px;
  }

  .about-content h2 {
    font-size: 22px;
  }

  .about-image {
    padding: 20px;
  }

  .about-image img {
    max-width: 180px;
  }

  /* Marquee responsive */
  .latest {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 15px;
  }

  .latest strong {
    min-width: auto;
  }

  .marquee {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2rem;
    padding: 25px 0 15px 0;
  }

  .hero-tabs {
    flex-wrap: wrap;
    border-radius: 8px;
    margin: 15px 0;
  }

  .hero-tab {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .page-title-section h2 {
    font-size: 1.8rem;
  }

  .minister-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .minister-card-full {
    flex-direction: row;
    text-align: left;
  }

  .minister-image {
    width: 180px;
    height: auto;
    flex-shrink: 0;
    padding: 20px;
  }

  .minister-image img {
    width: 120px;
    height: 120px;
  }

  .minister-details {
    padding: 20px;
  }

  .minister-details h3 {
    font-size: 19px;
  }

  .minister-designation {
    font-size: 15px;
  }

  .minister-info p {
    font-size: 13px;
  }

  .minister-bio p {
    font-size: 13px;
  }

  .btn {
    padding: 7px 14px;
    font-size: 13px;
    min-width: 110px;
  }

  .minister-actions {
    justify-content: flex-start;
  }

  .pdf-buttons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pdf-buttons-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .pdf-button {
    padding: 16px;
    font-size: 15px;
    min-height: 70px;
  }

  .fee-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border-radius: 4px;
  }

  .fee-table th,
  .fee-table td {
    padding: 12px 16px;
    font-size: 14px;
  }

  .default-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .default-table th,
  .default-table td {
    padding: 10px 14px;
    font-size: 13px;
  }

  /* issuance-noc */
  .guidelines-content h2 {
    font-size: 24px;
    margin: 25px 0 18px 0;
  }

  .guidelines-content h3 {
    font-size: 20px;
    margin: 22px 0 14px 0;
  }

  .guidelines-content h4 {
    font-size: 17px;
  }

  .guideline-section {
    padding: 20px;
    margin: 20px 0;
  }

  .step-item {
    padding: 15px 15px 15px 70px;
  }

  .step-item:before {
    left: 15px;
    top: 15px;
    font-size: 13px;
    padding: 6px 12px;
  }

  .officials-content h2 {
    font-size: 24px;
    margin: 25px 0 18px 0;
  }

  .officials-content h3 {
    font-size: 20px;
    margin: 22px 0 14px 0;
  }

  .officials-content h4 {
    font-size: 17px;
  }

  .conduct-section,
  .role-section {
    padding: 20px;
    margin: 20px 0;
  }

  .preamble-section {
    padding: 20px;
  }

  .numbered-list li {
    padding-left: 35px;
  }

  .numbered-list li:before {
    width: 25px;
    height: 25px;
    font-size: 13px;
  }

  .table-header {
    padding: 15px;
  }

  .table-header h2 {
    font-size: 20px;
  }

  .agents-table th,
  .agents-table td {
    padding: 12px 15px;
    font-size: 14px;
  }

  .table-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .pagination-controls {
    width: 100%;
    justify-content: center;
  }

  .modal-content {
    width: 95%;
    margin: 20px auto;
  }

  .modal-header {
    padding: 15px 20px;
  }

  .modal-body {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .enquiry-header {
    padding: 20px;
  }

  .enquiry-header h2 {
    font-size: 24px;
  }

  .enquiry-form {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .preferences-group {
    flex-direction: column;
    gap: 15px;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .acts-policy-header {
    padding: 30px 0;
  }

  .acts-policy-header h1 {
    font-size: 2rem;
  }

  .acts-policy-header p {
    font-size: 1.1rem;
  }

  .acts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .intro-section,
  .practice-section,
  .compliance-section {
    padding: 25px;
  }

  .key-features {
    padding: 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .compliance-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .quick-link {
    padding: 12px;
    gap: 12px;
  }

  .quick-link-icon {
    width: 35px;
    height: 35px;
  }

  .english-text {
    font-size: 14px;
  }

  .hindi-text {
    font-size: 14px;
  }

  /* service */
  .services-section {
    margin: 20px auto;
    padding: 0 15px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
  }

  .section-header {
    /* margin-bottom: 40px; */
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .service-card {
    padding: 20px 12px;
    min-height: 160px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
    padding: 10px;
  }

  .service-content h3 {
    font-size: 0.95rem;
  }

  .social-media-section {
    margin: 60px auto;
    padding: 0 15px;
  }

  .social-links-container {
    padding: 20px;
  }

  .social-header h2 {
    font-size: 1.8rem;
  }

  .social-platform-card {
    padding: 15px;
    gap: 12px;
  }

  .platform-icon {
    width: 45px;
    height: 45px;
  }

  .platform-info h3 {
    font-size: 1.1rem;
  }

  .twitter-header {
    padding: 18px 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .twitter-logo h2 {
    font-size: 1.3rem;
  }

  .tweet-card {
    padding: 18px 20px;
  }

  .tweet-header {
    gap: 10px;
  }

  .tweet-avatar {
    width: 42px;
    height: 42px;
  }

  .tweet-author strong {
    font-size: 1rem;
  }


  .dept-card {
    flex-direction: column;
    text-align: center;
  }

  .dept-thumb {
    width: 100%;
    height: 120px;
    margin-bottom: 10px;
  }

  .dept-body h4 {
    font-size: 20px;
  }

  .dept-body ul {
    font-size: 15px;
    margin-left: 0;
    padding-left: 20px;
  }

  /* cta */
  .events-cta-section {
    /* padding: 60px 0; */
    /* margin: 60px 0; */
  }

  .events-container {
    padding: 0 15px;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .events-header {
    margin-bottom: 40px;
  }

  .events-header h2 {
    font-size: 2rem;
  }

  .events-header p {
    font-size: 1.1rem;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .event-date {
    min-width: auto;
    width: 80px;
    margin: 0 auto;
  }

  .event-reminder-btn {
    align-self: center;
  }

  .events-cta-footer {
    padding: 30px 25px;
  }

  .cta-content h3 {
    font-size: 1.6rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }

  .logo-strip {
    padding: 18px 0;
    margin: 15px 0;
  }

  .logo-inner {
    gap: 50px;
    animation-duration: 70s;
  }

  .logo-inner img {
    height: 40px;
  }

  .logo-strip::before,
  .logo-strip::after {
    width: 60px;
  }

  .law-content h2 {
    font-size: 24px;
  }

  .law-content h3 {
    font-size: 20px;
  }

  /* login button  */
  .login-modal {
    padding: 15px;
  }

  .login-modal-content {
    max-width: 100%;
  }

  .login-modal-header {
    padding: 15px 20px;
  }

  .login-modal-body {
    padding: 20px;
  }

  .form-options {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .forgot-password {
    align-self: flex-end;
  }

  .logo-strip {
    padding: 20px 0;
  }

  .logo-item {
    min-width: 140px;
    padding: 10px;
  }

  .logo-nav {
    display: none;
    /* hide arrows on small screens */
  }
}

@media (max-width: 600px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--brand-dark);
    margin-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav ul.show {
    display: flex;
  }

  nav li {
    width: 100%;
  }

  nav li a {
    width: 100%;
    padding: 12px 18px;
  }

  nav li .dropdown-menu {
    position: static;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    box-shadow: none;
    border-radius: 0;
  }

  nav li .dropdown-menu li a {
    color: #fff;
    padding-left: 28px;
  }

  nav li .dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  nav li.dropdown>a::after {
    content: "▸";
    float: right;
    transform: rotate(0deg);
    transition: transform 0.3s;
  }

  nav li.dropdown.open>a::after {
    transform: rotate(90deg);
  }

  .hero-slider {
    height: 180px;
  }

  .brand img {
    width: 86px;
    height: 100px;
  }

  .searchbox {
    min-width: 180px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
  }

  .breadcrumb {
    font-size: 13px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    padding: 20px 0 10px 0;
  }

  .hero-tabs {
    flex-direction: column;
    gap: 1px;
    background: rgba(255, 255, 255, 0.2);
  }

  .hero-tab {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
  }

  .hero-tab.active {
    border-bottom: 1px solid white;
  }

  .page-title-section h2 {
    font-size: 1.6rem;
  }

  .minister-cards-section {
    margin: 30px 0;
  }

  .minister-card-full {
    flex-direction: column;
    text-align: center;
  }

  .minister-image {
    width: 100%;
    height: 180px;
    padding: 15px;
  }

  .minister-image img {
    width: 130px;
    height: 130px;
  }

  .minister-details {
    padding: 18px;
  }

  .minister-details h3 {
    font-size: 18px;
  }

  .minister-designation {
    font-size: 14px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .minister-info {
    margin-bottom: 12px;
  }

  .minister-bio {
    margin-bottom: 18px;
  }

  .minister-actions {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    padding: 10px 15px;
  }

  .pdf-buttons-section {
    margin: 40px 0 25px;
  }

  .pdf-buttons-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .pdf-buttons-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .pdf-button {
    padding: 18px;
    font-size: 16px;
    min-height: 75px;
  }

  .fee-table th,
  .fee-table td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .default-table th,
  .default-table td {
    padding: 9px 11px;
    font-size: 12px;
  }

  /* Footer mobile */
  footer.page-footer {
    padding: 30px 12px 15px;
  }

  .footer-inner {
    gap: 25px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icons-row {
    gap: 10px;
  }

  /* issuance-noc */
  .guidelines-content h2 {
    font-size: 22px;
  }

  .guidelines-content h3 {
    font-size: 19px;
  }

  .guidelines-content h4 {
    font-size: 16px;
  }

  .guideline-section {
    padding: 18px;
  }

  .step-item {
    padding: 15px 15px 15px 65px;
  }

  .notification-header {
    padding: 15px;
  }

  .officials-content h2 {
    font-size: 22px;
  }

  .officials-content h3 {
    font-size: 19px;
  }

  .officials-content h4 {
    font-size: 16px;
  }

  .conduct-section,
  .role-section {
    padding: 18px;
  }

  .numbered-list li {
    padding-left: 32px;
    margin-bottom: 10px;
  }

  .numbered-list li:before {
    width: 24px;
    height: 24px;
  }

  .agents-table {
    display: block;
    white-space: nowrap;
  }

  .agents-table th,
  .agents-table td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .pagination-controls {
    flex-wrap: wrap;
  }

  .pagination-numbers {
    order: -1;
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  .law-content h2 {
    font-size: 22px;
  }

  .law-content h3 {
    font-size: 19px;
  }

  .law-content ul,
  .law-content ol {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 150px;
  }

  .brand h1 {
    font-size: 14px;
  }

  .brand p {
    font-size: 12px;
  }

  .searchbox {
    display: none;
  }

  .gov-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-strip {
    padding: 15px 0;
    margin: 10px 0;
  }

  .logo-inner {
    gap: 40px;
    animation-duration: 60s;
  }

  .logo-inner img {
    height: 35px;
  }

  .logo-strip::before,
  .logo-strip::after {
    width: 40px;
  }

  .banner-row img {
    flex: 1 1 150px;
  }

  .divisions-section h2 {
    font-size: 20px;
  }

  .division-card {
    padding: 15px;
  }

  .about-section {
    margin: 30px auto;
  }

  .about-content {
    padding: 20px 15px;
  }

  .about-content h2 {
    font-size: 20px;
  }

  .about-content p {
    font-size: 14px;
  }

  .read-more-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .about-image {
    padding: 15px;
  }

  .about-image img {
    max-width: 150px;
  }

  .about-image h4 {
    font-size: 16px;
  }

  .about-image p {
    font-size: 13px;
  }

  /* Marquee mobile */
  .latest-wrap {
    font-size: 16px;
  }

  .latest {
    padding: 12px 15px;
  }

  .latest strong {
    font-size: 15px;
  }

  .marquee .items {
    animation-duration: 15s;
    /* Faster on mobile */
  }

  .breadcrumb {
    font-size: 12px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-tab {
    font-size: 0.85rem;
    padding: 10px 12px;
  }

  .page-title-section h2 {
    font-size: 1.4rem;
  }

  /* our minster */
  .minister-cards-section {
    margin: 25px 0;
  }

  .minister-cards-grid {
    gap: 20px;
  }

  .minister-image {
    height: 160px;
    padding: 12px;
  }

  .minister-image img {
    width: 120px;
    height: 120px;
  }

  .minister-details {
    padding: 15px;
  }

  .minister-details h3 {
    font-size: 17px;
  }

  .minister-designation {
    font-size: 13px;
  }

  .minister-info p {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .minister-bio p {
    font-size: 12px;
  }

  .btn {
    font-size: 12px;
    padding: 8px 12px;
  }

  .pdf-buttons-section {
    margin: 35px 0 20px;
  }

  .pdf-buttons-grid {
    gap: 12px;
  }

  .pdf-buttons-section h2 {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .pdf-button {
    padding: 15px;
    font-size: 15px;
    min-height: 70px;
  }

  .pdf-button::after {
    font-size: 16px;
    margin-left: 8px;
  }

  .fee-table th,
  .fee-table td {
    padding: 8px 10px;
    font-size: 12px;
  }

  .default-table th,
  .default-table td {
    padding: 7px 9px;
    font-size: 11px;
  }

  .fee-table th {
    font-size: 13px;
    padding: 10px 12px;
  }

  .default-table th {
    font-size: 12px;
    padding: 9px 11px;
  }

  /* login butto  */
  .login-modal-header h3 {
    font-size: 18px;
  }

  .login-modal-body {
    padding: 15px;
  }

  .form-group input {
    padding: 10px 14px;
  }

  .submit-btn {
    padding: 12px;
    font-size: 15px;
  }

  /* Footer small mobile */
  .footer-left strong {
    font-size: 16px;
  }

  .footer-left p {
    font-size: 13px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-social h4 {
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .social-icons-row {
    gap: 8px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  /* Stack table on very small mobile */
  .fee-table.mobile-stack,
  .default-table.mobile-stack {
    display: block;
    white-space: normal;
  }

  .fee-table.mobile-stack thead,
  .default-table.mobile-stack thead {
    display: none;
  }

  .fee-table.mobile-stack tr,
  .default-table.mobile-stack tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid var(--panel-border);
    border-radius: 4px;
    padding: 12px;
    background: white;
  }

  .fee-table.mobile-stack td,
  .default-table.mobile-stack td {
    display: block;
    text-align: left;
    padding: 8px 10px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    white-space: normal;
  }

  .fee-table.mobile-stack td:before,
  .default-table.mobile-stack td:before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--brand-dark);
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
  }

  .fee-table.mobile-stack td:last-child,
  .default-table.mobile-stack td:last-child {
    border-bottom: none;
  }

  .guidelines-content ul,
  .guidelines-content ol {
    padding-left: 20px;
  }

  .step-item {
    padding: 15px 15px 15px 60px;
  }

  .step-item:before {
    left: 10px;
    top: 10px;
    font-size: 12px;
    padding: 5px 10px;
  }

  /* issuance -noc */
  .guidelines-content ul,
  .guidelines-content ol {
    padding-left: 20px;
  }

  .step-item {
    padding: 15px 15px 15px 60px;
  }

  .step-item:before {
    left: 10px;
    top: 10px;
    font-size: 12px;
    padding: 5px 10px;
  }

  .officials-content ul,
  .officials-content ol {
    padding-left: 20px;
  }

  .numbered-list li {
    padding-left: 28px;
  }

  .numbered-list li:before {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .preamble-section,
  .final-note {
    padding: 18px;
  }

  .role-section h3 {
    font-size: 18px;
  }

  .table-header h2 {
    font-size: 18px;
  }

  .agents-table th,
  .agents-table td {
    padding: 8px 10px;
    font-size: 12px;
  }

  .pagination-btn {
    padding: 6px 12px;
    font-size: 13px;
  }

  .page-number {
    padding: 6px 10px;
    font-size: 13px;
  }

  .modal-header h2 {
    font-size: 20px;
  }

  .form-section h3 {
    font-size: 16px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 14px;
  }

  .success-content {
    padding: 30px 20px;
  }

  .success-content h3 {
    font-size: 20px;
  }

  .enquiry-header h2 {
    font-size: 22px;
  }

  .section-title {
    font-size: 18px;
  }

  .form-group input:not([type="checkbox"]):not([type="file"]),
  .form-group select,
  .form-group textarea {
    padding: 12px;
    font-size: 14px;
  }

  .file-upload-area {
    padding: 20px;
  }

  .success-content {
    padding: 30px 20px;
  }

  .success-content h3 {
    font-size: 20px;
  }

  .acts-policy-page {
    padding: 0 15px;
  }

  .acts-policy-header h1 {
    font-size: 1.8rem;
  }

  .acts-policy-header p {
    font-size: 1rem;
  }

  .intro-section,
  .practice-section,
  .compliance-section {
    padding: 20px;
  }

  .act-card {
    padding: 25px;
  }

  .key-features {
    padding: 25px;
  }

  .feature-item {
    padding: 20px;
  }

  .quick-link {
    padding: 10px;
    gap: 10px;
  }

  .quick-link-icon {
    width: 30px;
    height: 30px;
  }

  .english-text {
    font-size: 12px;
  }

  .hindi-text {
    font-size: 14px;
  }

  /* services  */
  .services-section {
    margin: 0px auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .service-card {
    padding: 20px;
    min-height: auto;
    flex-direction: row;
    text-align: left;
    gap: 15px;
  }

  .service-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .service-content {
    text-align: left;
  }

  .service-content h3 {
    font-size: 1rem;
  }

  /* social media */
  .social-media-section {
    margin: 50px auto;
  }

  .social-links-container {
    padding: 18px;
  }

  .social-header h2 {
    font-size: 1.6rem;
  }

  .social-platform-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .platform-info {
    text-align: center;
  }

  .tweet-header {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .tweet-meta {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .tweet-stats {
    width: 100%;
    justify-content: space-between;
  }

  /* cta */
  .events-cta-section {
    padding: 50px 0;
    /* margin: 50px 0; */
  }

  .events-header h2 {
    font-size: 1.8rem;
  }

  .events-header p {
    font-size: 1rem;
  }

  .event-card {
    padding: 20px 15px;
  }

  .event-content h3 {
    font-size: 1.2rem;
  }

  .events-cta-footer {
    padding: 25px 20px;
  }

  /* PM Modi Section Responsive */
  .pm-quotes-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .pm-image-section {
    flex-direction: column;
    gap: 15px;
  }

  .quote-event-section {
    gap: 15px;
  }

  .quote-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .event-meta {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .cta-content h3 {
    font-size: 1.4rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }

  /* PM Modi Section Mobile Responsive */
  .pm-quotes-section {
    padding: 30px 0;
  }

  .pm-quotes-container {
    padding: 0 15px;
  }

  .pm-quotes-content {
    padding: 20px;
    gap: 25px;
  }

  .pm-image img {
    width: 100px;
    height: 100px;
  }

  .pm-info h3 {
    font-size: 1.2rem;
  }

  .quote-icon {
    font-size: 2.5rem;
  }

  .quote-text p {
    font-size: 1rem;
  }

  .event-header h4 {
    font-size: 0.9rem;
  }

  .view-event-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .law-content h2 {
    font-size: 20px;
  }

  .law-content h3 {
    font-size: 18px;
  }

  .intro-section,
  .regulation-section,
  .conclusion-section {
    padding: 20px;
  }
}

/* Remove asterisk for non-required fields */
.form-group:has(input:not([required])) label::after,
.form-group:has(select:not([required])) label::after,
.form-group:has(textarea:not([required])) label::after {
  content: "";
}


/* language convert to hindi css */
/* ===== LANGUAGE SWITCHING STYLES ===== */

/* Language Dropdown Styles */
.language-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 10px;
}

.language-dropdown button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.language-dropdown button::after {
  content: "▼";
  font-size: 0.7em;
  margin-left: 5px;
}

.language-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  min-width: 120px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 4px;
  overflow: hidden;
}

.language-menu.show {
  display: block;
}

.language-menu div {
  padding: 8px 12px;
  cursor: pointer;
  color: #333;
  transition: background-color 0.2s;
}

.language-menu div:hover {
  background-color: #f5f5f5;
}

/* Language-specific text display */
.hindi-text {
  display: none;
}

body[lang="hi"] .hindi-text {
  display: inline;
}

body[lang="hi"] .english-text {
  display: none;
}

body[lang="en"] .hindi-text {
  display: none;
}

body[lang="en"] .english-text {
  display: inline;
}

/* Language-specific block display */
.hindi-block {
  display: none;
}

body[lang="hi"] .hindi-block {
  display: block;
}

body[lang="hi"] .english-block {
  display: none;
}

body[lang="en"] .hindi-block {
  display: none;
}

body[lang="en"] .english-block {
  display: block;
}

/* Language-specific flex display */
.hindi-flex {
  display: none;
}

body[lang="hi"] .hindi-flex {
  display: flex;
}

body[lang="hi"] .english-flex {
  display: none;
}

body[lang="en"] .hindi-flex {
  display: none;
}

body[lang="en"] .english-flex {
  display: flex;
}

/* Language-specific grid display */
.hindi-grid {
  display: none;
}

body[lang="hi"] .hindi-grid {
  display: grid;
}

body[lang="hi"] .english-grid {
  display: none;
}

body[lang="en"] .hindi-grid {
  display: none;
}

body[lang="en"] .english-grid {
  display: grid;
}

/* Hindi font support */
body[lang="hi"] {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans Devanagari", sans-serif;
}

/* Ensure proper text alignment for Hindi */
body[lang="hi"] .brand .titles,
body[lang="hi"] nav li a,
body[lang="hi"] .about-content,
body[lang="hi"] .dept-body,
body[lang="hi"] .division-card,
body[lang="hi"] .footer-col {
  text-align: left;
}

/* Language toggle button styling */
.language-toggle {
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
}

.language-toggle:hover {
  background: var(--accent-gray);
}

/* RTL support for Hindi if needed */
body[lang="hi"] {
  direction: ltr;
  /* Keep LTR for mixed content */
}

/* Specific adjustments for Hindi text in navigation */
body[lang="hi"] nav li a {
  font-size: 14px;
  /* Slightly smaller for longer Hindi text */
  padding: 10px 12px;
}

/* Adjust marquee for Hindi */
body[lang="hi"] .marquee .items {
  animation-duration: 22s;
  /* Slightly slower for Hindi reading */
}

/* Footer adjustments for Hindi */
body[lang="hi"] .footer-links a {
  font-size: 13px;
  /* Slightly smaller for longer text */
}

/* Quick links adjustments */
body[lang="hi"] .quick-link {
  font-size: 14px;
  text-align: center;
}

/* Department card adjustments */
body[lang="hi"] .dept-body h4 {
  font-size: 13px;
  min-height: 40px;
  display: flex;
  align-items: center;
}

/* Division card adjustments */
body[lang="hi"] .division-card h3 {
  font-size: 16px;
  min-height: 50px;
  display: flex;
  align-items: center;
}

/* About section adjustments */
body[lang="hi"] .about-content h2 {
  font-size: 26px;
}

body[lang="hi"] .about-content h3 {
  font-size: 20px;
}

/* Responsive adjustments for Hindi */
@media (max-width: 768px) {
  body[lang="hi"] nav li a {
    font-size: 13px;
    padding: 8px 10px;
  }

  body[lang="hi"] .brand h1 {
    font-size: 18px;
  }

  body[lang="hi"] .dept-body h4 {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  body[lang="hi"] nav li a {
    font-size: 12px;
    padding: 6px 8px;
  }

  body[lang="hi"] .brand h1 {
    font-size: 16px;
  }

  body[lang="hi"] .quick-link {
    font-size: 12px;
    padding: 10px 12px;
  }

  /* Hindi language specific adjustments */
  body[lang="hi"] .quick-link-text {
    text-align: right;
  }

  body[lang="hi"] .english-text {
    font-size: 12px;
  }

  body[lang="hi"] .hindi-text {
    font-size: 16px;
    font-weight: 600;
  }
}

/* Print styles for bilingual content */
@media print {

  .hindi-text,
  .english-text {
    display: inline !important;
  }

  .language-dropdown {
    display: none;
  }
}

/* Hindi language specific adjustments */
body[lang="hi"] .service-content h3 {
  font-size: 1rem;
}

@media (max-width: 1200px) {
  body[lang="hi"] .service-content h3 {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  body[lang="hi"] .service-content h3 {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  body[lang="hi"] .service-card {
    min-height: auto;
  }

  body[lang="hi"] .service-content h3 {
    font-size: 0.95rem;
  }

  /* Hindi language adjustments */
  body[lang="hi"] .platform-info h3 {
    font-size: 1.1rem;
  }

  body[lang="hi"] .tweet-author strong {
    font-size: 1rem;
  }

  body[lang="hi"] .tweet-content p {
    font-size: 0.95rem;
  }
}

/* cta */
/* Hindi language specific adjustments */
body[lang="hi"] .event-content h3 {
  font-size: 1.2rem;
}

body[lang="hi"] .event-content p {
  font-size: 0.95rem;
}

body[lang="hi"] .cta-content h3 {
  font-size: 1.6rem;
}

body[lang="hi"] .cta-content p {
  font-size: 1rem;
}

@media (max-width: 768px) {
  body[lang="hi"] .event-content h3 {
    font-size: 1.1rem;
  }

  body[lang="hi"] .cta-content h3 {
    font-size: 1.4rem;
  }
}

/* Hindi language specific styling */
.hindi-text {
  display: none;
}

body.hindi .hindi-text {
  display: block;
}

body.hindi .english-text {
  display: none;
}

/* Language toggle button styling */
.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-menu {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  right: 0;
}

.language-menu div {
  padding: 8px 12px;
  cursor: pointer;
}

.language-menu div:hover {
  background-color: #f1f1f1;
}

.language-dropdown.show .language-menu {
  display: block;
}

/* Hindi text specific adjustments for about section */
body[lang="hi"] .about-content h2 {
  font-size: 22px;
}

body[lang="hi"] .about-content p {
  font-size: 14px;
}

body[lang="hi"] .about-image h4 {
  font-size: 17px;
}

body[lang="hi"] .about-image p {
  font-size: 13px;
}

@media (max-width: 768px) {
  body[lang="hi"] .about-content h2 {
    font-size: 20px;
  }

  body[lang="hi"] .about-content p {
    font-size: 13px;
  }
}




/* Schemes and Services Section Styles */
.schemes-services-section {
  max-width: var(--maxw);
  margin: 40px auto;
  padding: 0 20px;
}

.schemes-container {
  background: #fff;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.schemes-header {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--brand-dark);
}

.schemes-header h2 {
  color: var(--brand-dark);
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

/* Careers Subsection */
.careers-subsection {
  margin-bottom: 30px;
}

.careers-subsection h3 {
  color: var(--brand-dark);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--accent-gray);
}

.schemes-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scheme-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}

.scheme-bullet {
  color: var(--brand-dark);
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Section Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      var(--panel-border),
      transparent);
  margin: 30px 0;
}


/* Responsive Design */
@media (max-width: 768px) {
  .schemes-services-section {
    margin: 30px auto;
    padding: 0 15px;
  }

  .schemes-container {
    padding: 20px;
  }

  .schemes-header h2 {
    font-size: 24px;
  }

  .careers-subsection h3 {
    font-size: 20px;
  }

  .press-communique-section {
    flex-direction: column;
    gap: 20px;
  }

  .press-date {
    align-self: flex-start;
  }

  .scheme-item,
  .press-item {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .schemes-container {
    padding: 15px;
  }

  .schemes-header h2 {
    font-size: 22px;
  }

  .careers-subsection h3 {
    font-size: 18px;
  }

  .scheme-item,
  .press-item {
    font-size: 14px;
  }

  .press-content h4 {
    font-size: 16px;
  }
}

/* Hindi Language Support */
body[lang="hi"] .schemes-header h2 {
  font-size: 26px;
}

body[lang="hi"] .careers-subsection h3 {
  font-size: 20px;
}

body[lang="hi"] .scheme-item,
body[lang="hi"] .press-item {
  font-size: 15px;
}

@media (max-width: 768px) {
  body[lang="hi"] .schemes-header h2 {
    font-size: 22px;
  }

  body[lang="hi"] .careers-subsection h3 {
    font-size: 18px;
  }

  body[lang="hi"] .scheme-item,
  body[lang="hi"] .press-item {
    font-size: 14px;
  }
}


/* 00 */


/* Responsive Layouts */
@media (max-width: 992px) {
  .key-offerings {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tenders-tabs button {
    font-size: 15px;
    padding: 12px 14px;
  }

  .press-release h3 {
    font-size: 20px;
  }

  .tenders-list a {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .key-offerings {
    padding: 0 8px;
  }

  .tenders-tabs button {
    padding: 10px;
    font-size: 14px;
  }

  .tenders-list,
  .press-release {
    padding: 15px;
  }

  .press-release h3 {
    font-size: 18px;
  }

  .press-item a {
    font-size: 14px;
  }
}

/* NOC Fee Table Styles */
.noc-fee-container {
  margin: 30px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.noc-fee-container .table-header {
  background: #f8f9fa;
  padding: 20px;
  border-bottom: 1px solid #dee2e6;
}

.noc-fee-container .table-header h2 {
  margin: 0;
  color: #333;
  font-size: 24px;
  font-weight: 600;
}

.noc-fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}

.noc-fee-table thead {
  background: #28a745;
  color: white;
}

.noc-fee-table thead th {
  padding: 15px 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  border: none;
  white-space: nowrap;
}

.noc-fee-table tbody tr {
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.2s ease;
}

.noc-fee-table tbody tr:hover {
  background-color: #f8f9fa;
}

.noc-fee-table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.noc-fee-table tbody tr:nth-child(even):hover {
  background-color: #e9ecef;
}

.noc-fee-table td {
  padding: 12px;
  border: 1px solid #dee2e6;
  vertical-align: middle;
}

.noc-fee-table td:first-child,
.noc-fee-table td:nth-child(2),
.noc-fee-table td:last-child {
  text-align: left;
}

.noc-fee-table td:nth-child(3),
.noc-fee-table td:nth-child(4),
.noc-fee-table td:nth-child(5),
.noc-fee-table td:nth-child(6) {
  text-align: right;
  font-weight: 500;
}

.noc-fee-table td:nth-child(3),
.noc-fee-table td:nth-child(5) {
  color: #28a745;
  font-weight: 600;
}

.noc-fee-table td:nth-child(4),
.noc-fee-table td:nth-child(6) {
  color: #6c757d;
}

/* Responsive Design for NOC Fee Table */
@media (max-width: 1200px) {
  .noc-fee-table {
    font-size: 13px;
  }
  
  .noc-fee-table thead th,
  .noc-fee-table td {
    padding: 10px 8px;
  }
}

@media (max-width: 768px) {
  .noc-fee-container {
    margin: 20px 0;
    border-radius: 4px;
  }
  
  .noc-fee-container .table-header {
    padding: 15px;
  }
  
  .noc-fee-container .table-header h2 {
    font-size: 20px;
  }
  
  .noc-fee-table {
    font-size: 12px;
  }
  
  .noc-fee-table thead th,
  .noc-fee-table td {
    padding: 8px 6px;
  }
  
  .noc-fee-table thead th {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .noc-fee-table {
    font-size: 11px;
  }
  
  .noc-fee-table thead th,
  .noc-fee-table td {
    padding: 6px 4px;
  }
  
  .noc-fee-table td:nth-child(2) {
    max-width: 120px;
    word-wrap: break-word;
  }
}

/* Progress Tracker Table Styles */
.progress-tracker-table {
  margin: 20px 0;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.progress-header {
  display: grid;
  grid-template-columns: 60px 1fr 200px 1fr;
  background: #28a745;
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.progress-col-no,
.progress-col-stage,
.progress-col-status,
.progress-col-notes {
  padding: 15px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.progress-col-stage {
  text-align: left;
}

.progress-col-notes {
  border-right: none;
}

.progress-row {
  display: grid;
  grid-template-columns: 60px 1fr 200px 1fr;
  border-bottom: 1px solid #dee2e6;
  transition: background-color 0.2s ease;
}

.progress-row:hover {
  background-color: #f8f9fa;
}

.progress-row:nth-child(even) {
  background-color: #f8f9fa;
}

.progress-row:nth-child(even):hover {
  background-color: #e9ecef;
}

.progress-row > div {
  padding: 12px;
  border-right: 1px solid #dee2e6;
  display: flex;
  align-items: center;
}

.progress-row > div:last-child {
  border-right: none;
}

.progress-row .progress-col-no {
  background: #f8f9fa;
  font-weight: 600;
  color: #495057;
  justify-content: center;
}

.progress-row .progress-col-stage {
  font-weight: 500;
  color: #495057;
}

.progress-row .progress-col-status select,
.progress-row .progress-col-notes input {
  width: 100%;
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  background: white;
}

.progress-row .progress-col-status select:focus,
.progress-row .progress-col-notes input:focus {
  outline: none;
  border-color: #28a745;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.25);
}

/* Responsive Design for Progress Tracker */
@media (max-width: 1200px) {
  .progress-header,
  .progress-row {
    grid-template-columns: 50px 1fr 180px 1fr;
  }
  
  .progress-col-no,
  .progress-col-stage,
  .progress-col-status,
  .progress-col-notes {
    padding: 10px 8px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .progress-header,
  .progress-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .progress-header {
    display: none;
  }
  
  .progress-row {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 15px;
  }
  
  .progress-row > div {
    border: none;
    padding: 8px 0;
    display: block;
  }
  
  .progress-row .progress-col-no {
    background: none;
    font-weight: 600;
    color: #28a745;
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .progress-row .progress-col-stage {
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
  }
  
  .progress-row .progress-col-status,
  .progress-row .progress-col-notes {
    margin-bottom: 10px;
  }
  
  .progress-row .progress-col-status::before {
    content: "Status: ";
    font-weight: 600;
    color: #495057;
    display: block;
    margin-bottom: 5px;
  }
  
  .progress-row .progress-col-notes::before {
    content: "Notes: ";
    font-weight: 600;
    color: #495057;
    display: block;
    margin-bottom: 5px;
  }
}