:root {
  /* Primary Brand Identity (Tiger Yellow) */
  --ntk-gold: #FFCC00;
  --ntk-gold-dark: #ccaa00;
  --ntk-gold-soft: #ffe066;

  /* Secondary Brand Identity (Revolutionary Red) */
  --ntk-red: #D8232A;
  --ntk-red-dark: #a01a1f;
  --ntk-red-soft: #f14d53;

  /* Background System (Off-White for Readability) */
  --bg-primary: #F9F9F7;
  --bg-secondary: #FFFFFF;
  --bg-tertiary: #F1F1EF;

  /* Typography (Deep Charcoal) */
  --text-main: #1A1A1A;
  --text-secondary: #333333;
  --text-muted: #666666;

  /* Borders & UI */
  --border-soft: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.15);

  /* Glass UI */
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(0, 0, 0, 0.08);

  /* Effects */
  --gold-glow: rgba(255, 204, 0, 0.3);
  --red-glow: rgba(216, 35, 42, 0.3);
}

body.light-theme {
  /* Same as root for now as this is the default brand theme */
  --bg-primary: #F9F9F7;
  --bg-secondary: #FFFFFF;
  --bg-tertiary: #F1F1EF;
  --text-main: #1A1A1A;
  --text-secondary: #333333;
  --text-muted: #666666;
}


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

body {
  font-family: 'Mukta Malar', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
  transition: background-color 0.4s ease, color 0.4s ease;
}

h1,
h2,
h3,
h4 {
  font-family: 'Hind Madurai', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Background Animated Orbs for Liquid Glass */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  animation: float 25s infinite ease-in-out alternate;
  mix-blend-mode: screen;
}

body.light-theme .bg-orb {
  mix-blend-mode: multiply;
  opacity: 0.25;
}

.orb-1 {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(210, 18, 46, 0.45) 0%, transparent 60%);
  top: -15%;
  left: -15%;
}

.orb-2 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(145, 10, 29, 0.5) 0%, transparent 60%);
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
}

.orb-3 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(60, 10, 20, 0.7) 0%, transparent 60%);
  top: 30%;
  left: 20%;
  animation-delay: -12s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  33% {
    transform: translate(40px, 60px) scale(1.1) rotate(5deg);
  }

  66% {
    transform: translate(-30px, 40px) scale(0.9) rotate(-5deg);
  }

  100% {
    transform: translate(-10px, -20px) scale(1.05) rotate(2deg);
  }
}

/* Glassmorphism Utilities */
.glass-nav,
.glass-card,
.glass-panel,
.glass-footer {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), inset 0 0 10px rgba(255, 255, 255, 0.5);
}

body.light-theme .glass-nav,
body.light-theme .glass-card,
body.light-theme .glass-panel,
body.light-theme .glass-footer {
  background: var(--glass-bg);
  /* Brighter clean base */
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  /* Strong bright top edge */
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05), inset 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Navigation */
.glass-nav {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-bottom: 1px solid transparent;
  background: transparent;
}

.glass-nav.sticky {
  position: fixed;
  background: rgba(15, 15, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: navSlideIn 0.4s ease-out;
}

body.light-theme .glass-nav.sticky {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@keyframes navSlideIn {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  /* Kept original padding */
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 700;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  letter-spacing: 1px;
}

.logo-icon {
  width: 35px;
  height: 35px;
  background: var(--ntk-gold);
  border-radius: 8px;
  box-shadow: 0 0 15px var(--gold-glow);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-main);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-item {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s;
}

/* Mega Menu Styles */
.mega-dropdown {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.mega-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100vw;
  background: rgba(15, 15, 18, 0.96);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 35px 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  z-index: 1000;
  cursor: default;
  justify-content: center;
}

/* Subtle inner glow for mega menu */
.mega-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 28, 57, 0.3), transparent);
}

.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.light-theme .mega-menu {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--border-strong);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  width: 100%;
}

.mega-col h4 {
  color: var(--ntk-red);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  border: none;
  padding: 0;
}

.mega-col h4 i {
  font-size: 1.2rem;
  opacity: 0.9;
  background: linear-gradient(135deg, var(--ntk-red), #ff4c62);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mega-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mega-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 4px 10px;
  border-radius: 6px;
  margin-left: -10px;
  display: block;
  width: calc(100% + 10px);
  opacity: 0;
  transform: translateY(5px);
}

.mega-dropdown:hover .mega-link,
.mega-dropdown:hover .mega-col {
  animation: megaItemFadeIn 0.5s ease forwards;
}

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

.mega-link:hover {
  background: rgba(230, 28, 57, 0.08);
  color: var(--ntk-red);
  padding-left: 18px;
}

body.light-theme .mega-link:hover {
  background: rgba(230, 28, 57, 0.05);
}

/* Hero Section */
.nav-item:hover {
  color: var(--ntk-red);
}

/* Buttons */
.btn-primary,
.btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
  font-family: 'Mukta Malar', sans-serif;
  font-size: 1.1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ntk-gold), #ffb300);
  color: #000000;
  box-shadow: 0 4px 15px var(--gold-glow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--gold-glow);
  background: linear-gradient(135deg, #ffcc00, var(--ntk-gold-soft));
}

.btn-secondary {
  background: var(--glass-highlight);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Sections */
main {
  padding-top: 0;
}

.top-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--bg-primary);
  padding: 1rem 0 0.5rem;
  overflow: hidden;
}

.top-banner img {
  max-width: 100%;
  width: 95%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s ease;
}

.top-banner img:hover {
  transform: scale(1.01);
}

@media (max-width: 768px) {
  .top-banner {
    padding: 0.5rem 0;
  }

  .top-banner img {
    width: 100%;
    border-radius: 0;
  }
}

section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(to right, var(--text-main), var(--text-secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem 4rem;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  width: 100%;
  animation: slideUp 1s ease-out forwards;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
}

.hero-title {
  font-size: clamp(2.2rem, 8vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
  background: linear-gradient(to bottom, var(--text-main), var(--text-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-hero {
  min-height: auto;
  padding: 140px 0 60px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), transparent);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: left;
}

.sub-hero .hero-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
  border-left: 6px solid var(--ntk-red);
  text-align: left;
}

.sub-hero .hero-title {
  font-size: clamp(2rem, 6vw, 3.2rem);
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, var(--text-main), var(--text-secondary));
  -webkit-background-clip: text;
  background-clip: text;
}

body.light-theme .sub-hero {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.03), transparent);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
  font-weight: 400;
}

.sub-hero .hero-subtitle {
  margin: 0 0 2.5rem;
  text-align: left;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Grid layout */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.vision-card {
  padding: 3rem 2rem;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

/* Subtle inner glow for cards */
.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  /* Gradient border width */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, rgba(210, 18, 46, 0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.vision-card:hover {
  transform: translateY(-12px);
  background: rgba(25, 20, 22, 0.7);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5), inset 0 0 25px rgba(210, 18, 46, 0.1);
}

body.light-theme .vision-card:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), inset 0 0 25px rgba(210, 18, 46, 0.05);
}

.vision-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #FF2E4C;
  /* Brighter red on hover context */
  text-shadow: 0 0 10px rgba(210, 18, 46, 0.4);
}

.vision-card p {
  line-height: 1.6;
  opacity: 0.9;
  color: var(--text-secondary);
}

/* Share Widget */
.share-widget {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px 10px;
  border-radius: 30px;
  z-index: 100;
  align-items: center;
}

.share-title {
  font-size: 0.8rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
}

.share-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.share-btn:hover {
  transform: scale(1.15) translateY(-5px);
  background: var(--ntk-red);
  border-color: var(--ntk-red);
  box-shadow: 0 5px 15px rgba(210, 18, 46, 0.5);
}

.share-btn.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
}

.share-btn.twitter:hover {
  background: #1DA1F2;
  border-color: #1DA1F2;
  box-shadow: 0 5px 15px rgba(29, 161, 242, 0.5);
}

.share-btn.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.5);
}

/* Manifesto Details Panel */
.manifesto-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 20px;
  min-height: 400px;
}

.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: var(--text-muted);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--glass-border);
  border-top-color: var(--ntk-red);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

/* Footer */
.glass-footer {
  padding: 2rem;
  text-align: center;
  margin-top: 4rem;
  border-bottom: none;
  border-left: none;
  border-right: none;
  border-top-width: 1px;
  border-top-style: solid;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    /* Start off-screen */
    width: 70%;
    height: 100%;
    background: rgba(15, 15, 18, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    border-bottom: none;
    border-left: none;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  /* Hamburger Animation */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Mobile Mega Menu Support */
  .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .mega-dropdown.active .mega-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
    padding: 15px 0;
    margin-top: 10px;
  }

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

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

  .mobile-menu-btn {
    display: flex;
  }
}

/* Extracted text block */
.manifesto-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.manifesto-block h3 {
  color: var(--ntk-red);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.manifesto-block p {
  color: var(--text-muted);
  font-size: 1.1rem;
  white-space: pre-wrap;
}

/* Sidebar Layout & Styling */
.manifesto-details.with-sidebar {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
  padding: 0 2rem;
}

.sidebar-glass {
  position: sticky;
  top: 100px;
  padding: 1.5rem;
  border-radius: 20px;
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
}

.sidebar-title {
  color: var(--ntk-red);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--glass-border);
}

.sidebar-scrollable {
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 12px;
}

.sidebar-scrollable::-webkit-scrollbar {
  width: 6px;
}

.sidebar-scrollable::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}

.sidebar-scrollable::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.sidebar-link {
  color: var(--text-muted);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.3s;
  line-height: 1.4;
  display: block;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid transparent;
}

/* Light Theme Overrides */
body.light-theme .mega-menu {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--border-strong);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

body.light-theme .mega-link {
  color: var(--text-main);
  background: rgba(0, 0, 0, 0.03);
}

body.light-theme .mega-link:hover {
  background: rgba(230, 28, 57, 0.08);
  color: var(--ntk-red);
}

body.light-theme .share-btn {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--text-main) !important;
}

body.light-theme .share-btn svg {
  stroke: var(--text-main);
}

body.light-theme .share-title {
  color: var(--text-main);
  opacity: 0.8;
  font-weight: 600;
}

body.light-theme .mobile-menu-btn span {
  background-color: var(--text-main);
}

body.light-theme .sidebar-scrollable::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
}

body.light-theme .sidebar-scrollable::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
}

.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.05);
}

.sidebar-link.active {
  background: linear-gradient(90deg, rgba(230, 28, 57, 0.15), transparent);
  color: var(--ntk-red);
  border-left: 3px solid var(--ntk-red);
  border-radius: 4px 10px 10px 4px;
}

@media (max-width: 1024px) {
  .manifesto-details.with-sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar-glass {
    position: static;
    max-height: 350px;
    margin-bottom: 2rem;
  }
}

/* Theme Toggle Button */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

body.light-theme .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.theme-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.theme-toggle:active .theme-icon {
  transform: rotate(30deg) scale(0.9);
}

/* About Section Styles */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.lead-text {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.identity-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.id-card {
  padding: 1.5rem;
  text-align: center;
}

.id-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.id-card h4 {
  color: var(--ntk-red);
  margin-bottom: 0.5rem;
}

.about-image {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.vision-visual {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--ntk-red) 0%, transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 0 50px var(--red-glow);
  animation: pulse 4s infinite ease-in-out;
}

.election-symbol {
  width: 250px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.2));
  transition: transform 0.3s ease;
}

.election-symbol:hover {
  transform: scale(1.05);
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Leader Message Styles */
.leader-message {
  padding: 6rem 2rem;
}

.quote-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem;
  text-align: center;
  position: relative;
}

.quote-symbol {
  font-family: 'Hind Madurai', serif;
  font-size: 8rem;
  color: var(--ntk-red);
  opacity: 0.2;
  position: absolute;
  top: -2rem;
  left: 2rem;
}

.quote-text {
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.quote-author {
  font-weight: 700;
  color: var(--ntk-red);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* Targets Section Styles */
.targets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.target-item {
  text-align: center;
  padding: 2.5rem;
  background: var(--glass-bg);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  transition: transform 0.3s ease;
}

.target-item:hover {
  transform: translateY(-10px);
}

.target-year {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--ntk-red), var(--ntk-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

@media (max-width: 968px) {

  .about-grid,
  .targets-grid {
    grid-template-columns: 1fr;
  }

  .quote-container {
    padding: 2rem;
  }

  .quote-text {
    font-size: 1.4rem;
  }
}

/* --- NEW STYLES --- */

.search-container {
  max-width: 600px;
  margin: 0 auto 3.5rem;
  position: relative;
  animation: slideUp 0.8s ease-out 0.2s backwards;
}

.policy-search {
  width: 100%;
  padding: 1.3rem 1.5rem 1.3rem 3.8rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-main);
  font-size: 1.15rem;
  font-family: 'Mukta Malar', sans-serif;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), inset 0 2px 5px rgba(255, 255, 255, 0.05);
}

.policy-search:focus {
  outline: none;
  border-color: var(--ntk-gold);
  box-shadow: 0 15px 45px var(--gold-glow), inset 0 2px 5px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px) scale(1.01);
}

.search-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

/* Policy Grid */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.policy-card {
  padding: 1.5rem;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 140px;
  border: 1px solid var(--glass-border);
  background: var(--bg-secondary);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.policy-card:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(211, 18, 42, 0.1);
  border-color: var(--ntk-red);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--red-glow);
}

.policy-card h3 {
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.policy-card:hover h3 {
  color: var(--ntk-red-soft);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: slideUp 0.8s ease-out 0.4s backwards;
}

.filter-tab {
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 1rem;
  font-family: 'Mukta Malar', sans-serif;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.filter-tab:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border-color: var(--border-strong);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--ntk-red), var(--ntk-red-dark));
  color: white;
  border-color: var(--ntk-red);
  box-shadow: 0 12px 30px var(--red-glow), inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transform: translateY(-4px) scale(1.05);
}

body.light-theme .filter-tab {
  background: #FFFFFF;
  color: var(--text-secondary);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

body.light-theme .filter-tab:hover {
  background: #F8FAFC;
  color: var(--ntk-red);
  border-color: rgba(211, 18, 42, 0.1);
}

body.light-theme .filter-tab.active {
  background: linear-gradient(135deg, #FF3D57, #D8232A);
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(216, 35, 42, 0.25), inset 0 2px 2px rgba(255, 255, 255, 0.3);
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Animation for Visuals */
.floating-element {
  animation: floating 4s infinite ease-in-out;
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@media (max-width: 600px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .search-container {
    padding: 0 1rem;
  }
}

@media (max-width: 968px) {
  .nav-container {
    padding: 0.8rem 1.2rem;
  }

  .brand-logo span {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 2rem;
    transition: 0.4s ease-out;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 99;
    overflow-y: auto;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .nav-links.active {
    right: 0;
  }

  .mega-dropdown:hover .mega-menu {
    display: none;
  }

  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
    display: block !important;
    width: 100%;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 1rem;
  }

  .manifesto-container.policy-article {
    padding: 1.5rem !important;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 1.8rem;
  }

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

  .search-container {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .policy-search {
    font-size: 1rem;
    padding: 1.1rem 1.1rem 1.1rem 3.5rem;
  }

  .filter-tabs {
    gap: 0.6rem;
  }

  .filter-tab {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

body {
  user-select: none !important;
}

/* Policy Article Global Styles */
.policy-article {
  padding: 3rem;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

/* Suggested Policies Section */
.suggested-policies {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.suggested-policies h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--ntk-red);
  text-align: center;
}

.suggestion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.suggestion-card {
  display: flex !important;
  flex-direction: column;
  padding: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.suggestion-card:hover {
  transform: translateY(-5px);
  border-color: var(--ntk-red);
  background: rgba(211, 18, 42, 0.05);
}

.suggestion-card .cat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 0.5rem;
}

.suggestion-card .policy-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}

body.light-theme .suggestion-card .cat-label {
  color: #666;
}

@media (max-width: 768px) {
  .suggestion-grid {
    grid-template-columns: 1fr;
  }
}

/* Policy Summary Box */
.policy-summary-box {
  background: rgba(255, 204, 0, 0.05);
  border: 1px dashed var(--ntk-gold);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

body.light-theme .policy-summary-box {
  background: rgba(255, 204, 0, 0.07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.policy-summary-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--ntk-gold), var(--ntk-red));
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 1rem;
}

.summary-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
  font-weight: 800;
  font-size: 1.3rem;
  font-family: 'Hind Madurai', sans-serif;
}

.summary-title-wrapper i {
  color: var(--ntk-red);
  font-size: 1.4rem;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--ntk-red), #b61c21);
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px var(--red-glow);
  border: none;
}

.download-btn:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 15px 30px var(--red-glow);
  filter: brightness(1.1);
}

.summary-content {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.8;
}

.summary-content p {
  margin-bottom: 1.2rem;
}

.summary-content ul {
  list-style-type: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.summary-content li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.summary-content li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--ntk-red);
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .summary-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .download-btn {
    width: 100%;
    justify-content: center;
  }
  
  .summary-content ul {
    grid-template-columns: 1fr;
  }
}