/* 
 * Shramyog Patra (श्रमयोग पत्र) - Custom Design System
 * Focus: High Aesthetic Value, Minimalist Cognitive Load, Green-Navy Premium Colors, Fluid Animations
 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color System */
  --brand-accent: hsl(143, 100%, 29%);      /* Green (#F97316) - Brand Identity */
  --brand-accent-hover: hsl(143, 100%, 24%);
  --brand-accent-light: #effaf2;
  
  --navy-slate: hsl(222, 47%, 12%);          /* Sleek Deep Navy Slate (#0F172A) */
  --navy-text: hsl(215, 25%, 27%);           /* Readable off-black (#334155) */
  --navy-muted: hsl(215, 16%, 47%);          /* Muted descriptions (#64748B) */
  
  /* Brand Dark Blue (as requested in sketch) */
  --brand-blue: #0f2d59;                     
  --brand-blue-hover: #1e3a8a;
  --brand-blue-light: #eff6ff;

  --primary-blue: hsl(221, 83%, 45%);        /* Premium Royal Blue */
  --primary-blue-hover: hsl(221, 83%, 55%);
  --primary-blue-light: hsl(221, 100%, 96%);
  
  --primary-green: hsl(142, 72%, 29%);       /* Premium Forest Green */
  --primary-green-hover: hsl(142, 72%, 35%);
  --primary-green-light: hsl(142, 100%, 96%);
  
  --bg-primary: hsl(0, 0%, 100%);            /* Crisp White */
  --bg-secondary: hsl(210, 40%, 98%);        /* Softest Blue-Grey Accent */
  --bg-tertiary: hsl(220, 14%, 96%);         /* Card backgrounds */
  
  --border-light: hsl(214, 32%, 91%);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Font Families */
  --font-en: 'Outfit', sans-serif;
  --font-hi: 'Noto Sans Devanagari', sans-serif;
  
  /* Transition Constants */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-hi); /* Default to Hindi font family */
  background-color: var(--bg-primary);
  color: var(--navy-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.lang-en {
  font-family: var(--font-en);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: hsl(215, 16%, 75%);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-accent);
}

/* --- Top Utility Bar --- */
.top-utility-bar {
  background-color: var(--brand-blue);
  color: #ffffff;
  font-size: 0.85rem;
  border-bottom: 2px solid var(--brand-accent);
  padding: 0.5rem 2rem;
  z-index: 1001;
  position: relative;
}

.utility-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.utility-left {
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0.5px;
}

body:not(.lang-en) .utility-left {
  font-family: var(--font-hi);
}

.utility-middle {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.utility-middle a {
  color: hsla(0, 0%, 100%, 0.8);
  display: flex;
  align-items: center;
  transition: all var(--transition-fast);
}

.utility-middle a:hover {
  color: var(--brand-accent);
  transform: scale(1.15);
}

.utility-middle svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.utility-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.utility-mail {
  color: hsla(0, 0%, 100%, 0.85);
  display: flex;
  align-items: center;
}

.utility-mail:hover {
  color: var(--brand-accent);
}

/* Window Minimize, Maximize, Close indicators (Aesthetic) */
.win-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.85;
}
.win-btn.close { background-color: #ef4444; }
.win-btn.minimize { background-color: #eab308; }
.win-btn.maximize { background-color: #22c55e; }

.utility-right .lang-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  border-radius: var(--radius-full);
  margin-left: 0.5rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition-fast);
}

.utility-right .lang-btn:hover {
  background: #ffffff;
  color: var(--brand-blue);
  border-color: #fff;
}

/* --- Header / Navigation --- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding var(--transition-normal);
}

/* Logo Design - Circled Capsule Outline */
.logo-wrapper {
  display: block;
}

.logo-capsule {
  border: 2px solid var(--brand-blue);
  border-radius: var(--radius-full);
  padding: 0.4rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  background-color: #fff;
  transition: all var(--transition-normal);
  box-shadow: inset 0 2px 4px rgba(15, 45, 89, 0.05);
}

.logo-wrapper:hover .logo-capsule {
  border-color: var(--brand-accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.1);
}

.logo-main {
  font-family: var(--font-hi);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--brand-blue); /* Solid Dark Blue color as requested */
  letter-spacing: -0.5px;
  transition: color var(--transition-fast), font-size var(--transition-normal);
}

.logo-wrapper:hover .logo-main {
  color: var(--brand-accent-hover);
}

.logo-sub {
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 1px;
  transition: font-size var(--transition-normal), letter-spacing var(--transition-normal), margin-top var(--transition-normal);
}

/* Scrolled/Shrunk header compact state */
header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}
header.scrolled .nav-container {
  padding: 0.4rem 2rem;
}
header.scrolled .logo-capsule {
  padding: 0.2rem 1.25rem;
}
header.scrolled .logo-main {
  font-size: 1.6rem;
}
header.scrolled .logo-sub {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  margin-top: 0px;
}
header.scrolled .nav-link {
  font-size: 0.92rem;
}
header.scrolled .epaper-btn {
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  color: var(--navy-slate);
  font-size: 1.02rem;
  position: relative;
  padding: 0.5rem 0;
  transition: font-size var(--transition-normal), color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-accent);
  transition: var(--transition-normal);
}

.nav-link:hover {
  color: var(--brand-accent);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--brand-accent-hover);
  font-weight: 700;
}

.nav-icon-link {
  color: var(--navy-slate);
  display: flex;
  align-items: center;
  padding: 0.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.nav-icon-link:hover {
  color: var(--brand-accent);
}

.nav-icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nav-icon-btn {
  background: none;
  border: none;
  color: var(--navy-slate);
  display: flex;
  align-items: center;
  padding: 0.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.nav-icon-btn:hover {
  color: var(--brand-accent);
}

.nav-icon-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Hamburger Dropdown Component */
.hamburger-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content-menu {
  position: absolute;
  right: 0;
  top: 130%;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 0.75rem 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: all var(--transition-normal);
}

.dropdown-content-menu.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-link {
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  color: var(--navy-slate);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
}

.dropdown-link:hover {
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
  padding-left: 1.75rem;
}

/* e-Paper Button Link */
.epaper-btn {
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-hover) 100%);
  color: #fff !important;
  border: none;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
  transition: all var(--transition-normal);
}

.epaper-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

.epaper-btn svg {
  fill: currentColor;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--brand-blue);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* --- Ticker / Breaking News --- */
.ticker-wrap {
  background: var(--navy-slate);
  color: var(--bg-primary);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  border-bottom: 4px solid var(--brand-accent);
}

.ticker-title {
  background: var(--brand-accent);
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 800;
  letter-spacing: 1px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  box-shadow: 8px 0 15px rgba(0, 0, 0, 0.2);
}

.ticker-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  padding-left: 2rem;
}

.ticker-content:hover {
  animation-play-state: paused !important;
}

.ticker-item {
  display: inline-block;
  padding-right: 4rem;
  font-weight: 600;
  cursor: pointer;
}

.ticker-item:hover {
  color: var(--brand-accent);
}

.ticker-item::before {
  content: '•';
  color: var(--brand-accent);
  display: inline-block;
  margin-right: 1rem;
  font-size: 1.2rem;
  vertical-align: middle;
}

.ticker-pause-btn {
  background: none;
  border: none;
  color: #fff;
  height: 100%;
  padding: 0 1.25rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
  background: var(--navy-slate);
  box-shadow: -8px 0 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.ticker-pause-btn:hover {
  color: var(--brand-accent);
}

@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* --- Hero Section ("Halo Effect") --- */
.hero {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%),
              url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  background-attachment: fixed; /* Parallax scrolling effect */
  padding: 7.5rem 2rem 5.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(15, 45, 89, 0.15);
  font-family: var(--font-en);
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.hero p {
  font-size: 1.25rem;
  color: var(--navy-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* Interactive Search Bar */
.search-box {
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  padding: 0.4rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.search-box:focus-within {
  border-color: var(--brand-blue);
  box-shadow: 0 15px 35px rgba(15, 45, 89, 0.1);
  transform: translateY(-2px);
}

.search-box input {
  flex-grow: 1;
  border: none;
  outline: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  color: var(--navy-slate);
  border-radius: var(--radius-full);
  font-family: inherit;
}

.search-box input::placeholder {
  color: hsl(215, 16%, 65%);
}

.search-btn {
  background-color: var(--brand-blue);
  color: var(--bg-primary);
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.search-btn:hover {
  background-color: var(--brand-accent);
}

.search-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* --- Filtering System --- */
.filter-wrap {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 0 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-slate);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
  background-color: var(--bg-primary);
}

.filter-btn.active {
  background-color: var(--brand-accent);
  border-color: var(--brand-accent);
  color: var(--bg-primary);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

/* --- Section Formatting --- */
.section-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4.5rem 2rem;
}

.section-header {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 1.25rem;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-blue);
}

.section-title .accent-bar {
  width: 60px;
  height: 4px;
  background-color: var(--brand-accent);
  border-radius: var(--radius-full);
}

.section-subtitle {
  color: var(--navy-muted);
  font-size: 1.02rem;
  max-width: 400px;
  text-align: right;
}

/* --- Two-Column Layout (Split) --- */
.main-content-layout {
  display: grid;
  grid-template-columns: 2.7fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.left-content-area {
  min-width: 0; /* Prevents flex/grid overflow */
}

/* Sidebar Styling */
.right-sidebar-area {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  position: sticky;
  top: 110px; /* Floats on scroll */
}

/* --- News Grid --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  column-gap: 2rem;
  row-gap: 4rem;
  padding-top: 1rem;
}

/* --- Premium Floating Cards --- */
.news-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(15, 45, 89, 0.03);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  height: calc(100% - 2.2rem);
  margin-top: 2.2rem;
  padding: 0 1.5rem 1.5rem;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px rgba(249, 115, 22, 0.06), 0 8px 24px rgba(15, 45, 89, 0.03);
  border-color: rgba(249, 115, 22, 0.3);
  background-color: var(--bg-secondary);
}

.news-card-img-wrap {
  height: 190px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(15, 45, 89, 0.09);
  transform: translateY(-2rem);
  margin-bottom: -0.5rem;
  transition: all var(--transition-normal);
  z-index: 5;
}

.news-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.news-card:hover .news-card-img-wrap {
  transform: translateY(-2.5rem) scale(1.02);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.16);
}

.news-card:hover .news-card-img-wrap img {
  transform: scale(1.04);
}

.news-card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(15, 45, 89, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--bg-primary);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  transition: all var(--transition-fast);
}

.news-card:hover .news-card-badge {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  box-shadow: 0 4px 8px rgba(249, 115, 22, 0.25);
}

.news-card-content {
  padding-top: 0.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card-meta {
  display: flex;
  gap: 1.2rem;
  color: var(--navy-muted);
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-en);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.news-card h3 {
  font-size: 1.25rem;
  color: var(--brand-blue);
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.news-card:hover h3 {
  color: var(--brand-accent-hover);
}

.news-card p {
  color: var(--navy-text);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--border-light);
  padding-top: 1rem;
}

.read-more-link {
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-en);
}

.read-more-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  background-color: var(--bg-tertiary);
  color: var(--brand-blue);
  border-radius: var(--radius-full);
  padding: 4px;
  box-sizing: content-box;
  transition: all var(--transition-normal);
}

.news-card:hover .read-more-link svg {
  transform: translateX(4px);
  background-color: var(--brand-accent);
  color: var(--bg-primary);
  box-shadow: 0 4px 8px rgba(249, 115, 22, 0.3);
}

.news-card:hover .read-more-link {
  color: var(--brand-accent-hover);
}

/* --- Sidebar Widgets --- */
.sidebar-widget {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.sidebar-widget:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 45, 89, 0.1);
}

.widget-header {
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-light);
}

.widget-header h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.widget-header .widget-bar {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--brand-accent);
  border-radius: var(--radius-full);
}

/* Sidebar Search Widget */
.sidebar-search-box {
  display: flex;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.25rem;
  transition: all var(--transition-fast);
}

.sidebar-search-box:focus-within {
  border-color: var(--brand-blue);
  background-color: #fff;
  box-shadow: var(--shadow-sm);
}

.sidebar-search-box input {
  flex-grow: 1;
  border: none;
  outline: none;
  background: none;
  padding: 0.55rem 1.25rem;
  font-size: 0.92rem;
  color: var(--navy-slate);
  font-family: inherit;
}

.sidebar-search-btn {
  background-color: var(--brand-blue);
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}

.sidebar-search-btn:hover {
  background-color: var(--brand-accent);
}

.sidebar-search-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Advertisement (विज्ञापन) Widget */
.promo-widget {
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, #fff 100%);
  border: 1.5px dashed var(--brand-accent);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.promo-widget:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue);
}

.promo-widget img {
  transition: transform var(--transition-normal) ease;
}

.promo-widget:hover img {
  transform: scale(1.05);
}

.promo-widget h4 {
  color: var(--brand-blue);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.promo-widget p {
  font-size: 0.88rem;
  color: var(--navy-text);
  line-height: 1.45;
  margin-bottom: 1.25rem;
}

.promo-cta-box {
  background-color: var(--brand-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
}

/* Popular Posts list */
.popular-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.popular-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.popular-item:hover {
  transform: translateX(4px);
}

.popular-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.popular-item-content {
  flex-grow: 1;
}

.popular-item-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
}

.popular-item h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-slate);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.popular-item:hover h5 {
  color: var(--brand-accent-hover);
}

/* Recent Posts list */
.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recent-posts-list li {
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed var(--border-light);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.recent-posts-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.recent-posts-list li:hover {
  transform: translateX(4px);
}

.recent-post-date {
  font-size: 0.75rem;
  font-family: var(--font-en);
  color: var(--navy-muted);
  font-weight: 600;
  display: block;
  margin-bottom: 0.2rem;
}

.recent-posts-list h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-slate);
  line-height: 1.4;
}

.recent-posts-list li:hover h5 {
  color: var(--brand-accent-hover);
}

/* Recent Comments list */
.recent-comments-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recent-comments-list li {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.15rem;
  border-left: 3px solid var(--brand-blue);
}

.commenter-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--navy-slate);
  margin-bottom: 0.35rem;
}

.commenter-meta svg {
  color: var(--navy-muted);
}

.recent-comments-list p {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--navy-text);
  line-height: 1.4;
}

/* Sidebar Programs list */
.sidebar-programs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-program-card {
  display: flex;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sidebar-program-card:hover {
  transform: scale(1.02);
  border-color: var(--brand-accent);
  background-color: #fff;
}

.sidebar-program-date {
  background-color: var(--brand-blue);
  color: #fff;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 65px;
  font-family: var(--font-en);
}

.sidebar-program-card:hover .sidebar-program-date {
  background-color: var(--brand-accent);
}

.sidebar-program-date .day {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.sidebar-program-date .month {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.sidebar-program-info {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidebar-program-info h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-slate);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.sidebar-program-info .venue {
  font-size: 0.72rem;
  color: var(--navy-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.videos-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.video-card-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0.5rem;
  border-radius: var(--radius-md);
}

.video-card-item:hover {
  background: var(--bg-hover, rgba(15, 45, 89, 0.04));
  transform: translateX(2px);
}

.video-thumbnail-wrap {
  position: relative;
  width: 120px;
  height: 68px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.video-thumbnail-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.video-card-item:hover .video-thumbnail-wrap img {
  transform: scale(1.05);
}

.video-duration {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 1px 4px;
  border-radius: 3px;
}

.video-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  z-index: 2;
}

.yt-badge {
  background: #ef4444;
}

.featured-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #000;
  border: 1px solid var(--border-light, #e2e8f0);
}

.play-overlay-btn {
  position: absolute;
  inset: 0;
  background: rgba(15, 45, 89, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition-fast);
}

.video-card-item:hover .play-overlay-btn {
  background: rgba(249, 115, 22, 0.45);
  opacity: 1;
}

.play-overlay-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: transform var(--transition-fast);
}

.video-card-item:hover .play-overlay-btn svg {
  transform: scale(1.1);
}

.video-card-details {
  flex: 1;
  min-width: 0;
}

.video-card-item h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-slate);
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition-fast);
}

.video-card-item:hover h5 {
  color: var(--brand-accent-hover, var(--brand-accent));
}

/* --- Gallery Section --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 45, 89, 0.9) 0%, rgba(15, 45, 89, 0.1) 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 2;
}

.gallery-overlay span {
  background-color: var(--brand-accent);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
  margin-bottom: 0.5rem;
  font-family: var(--font-en);
}

.gallery-overlay h4 {
  color: var(--bg-primary);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}

.gallery-item:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* --- Footer --- */
footer {
  background-color: var(--brand-blue);
  color: var(--bg-secondary);
  padding: 5rem 2rem 2.5rem;
  border-top: 5px solid var(--brand-accent);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 4rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 450px;
}

.footer-brand p {
  color: hsl(215, 16%, 70%);
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer-links-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--brand-accent);
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-col a {
  color: hsl(215, 16%, 70%);
  font-size: 0.95rem;
}

.footer-links-col a:hover {
  color: var(--brand-accent);
  transform: translateX(3px);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: hsl(215, 16%, 60%);
  font-family: var(--font-en);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  background-color: rgba(255, 255, 255, 0.05);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--brand-accent);
  color: var(--bg-primary);
  transform: translateY(-3px);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* --- Premium Modals (Article Detail & Lightbox) --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 45, 89, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 2rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-window {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  transition: transform var(--transition-normal);
  border: 1px solid var(--border-light);
}

.modal-overlay.active .modal-window {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
  color: var(--brand-blue);
}

.modal-close-btn:hover {
  background-color: var(--brand-accent);
  color: var(--bg-primary);
  transform: rotate(90deg);
}

.modal-close-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Detailed Article Style inside Modal */
.article-detail-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.article-detail-content {
  padding: 3rem;
}

.article-detail-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--navy-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
  font-family: var(--font-en);
}

.article-detail-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.article-detail-content h2 {
  font-size: 2.2rem;
  color: var(--brand-blue);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.article-detail-body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--navy-text);
}

.article-detail-body p {
  margin-bottom: 1.5rem;
}

.article-detail-body blockquote {
  border-left: 4px solid var(--brand-accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 600;
  color: var(--brand-blue);
}

/* Lightbox Modal Specifics */
.lightbox-window {
  background: none;
  border: none;
  box-shadow: none;
  max-width: 900px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  color: var(--bg-primary);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

/* --- Mobile Adaptability --- */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
  .main-content-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .right-sidebar-area {
    position: static;
  }
}

@media (max-width: 768px) {
  .logo-main {
    font-size: 1.8rem;
  }
  
  .logo-sub {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }
  
  .logo-capsule {
    padding: 0.3rem 1.15rem;
  }

  .mobile-toggle {
    display: block;
    z-index: 1000;
  }

  /* Hamburger to X animation */
  .mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--brand-accent);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    gap: 1.25rem;
    align-items: stretch;
    z-index: 999;
  }
  
  .nav-menu.active {
    display: flex;
    animation: slideDown var(--transition-normal);
  }

  .nav-menu .nav-link {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
  }

  .nav-menu .nav-link::after {
    display: none; /* Hide desktop underline */
  }

  .nav-menu .epaper-btn {
    margin-top: 0.5rem;
    justify-content: center;
    width: 100%;
  }

  /* Hamburger Dropdown on mobile */
  .nav-menu .hamburger-dropdown {
    width: 100%;
  }

  .nav-menu .hamburger-dropdown .nav-icon-btn {
    width: 100%;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-menu .dropdown-content-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0.5rem 1rem;
    display: none;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
  }

  .nav-menu .dropdown-content-menu.show {
    display: flex;
  }

  .nav-menu .dropdown-link {
    padding: 0.6rem 0.5rem;
    border-bottom: 1px dashed var(--border-light);
  }

  .nav-menu .dropdown-link:last-child {
    border-bottom: none;
  }

  .nav-menu .dropdown-link:hover {
    padding-left: 0.75rem;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }
  
  .hero {
    padding: 4rem 1.5rem 3rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  
  .section-subtitle {
    text-align: left;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .article-detail-content {
    padding: 1.75rem;
  }
  
  .article-detail-content h2 {
    font-size: 1.8rem;
  }
}

/* Brand logo hover effect */
.logo-wrapper:hover .brand-logo-img {
  transform: scale(1.03);
}

/* Eyebrow Hero Tagline Top styling */
.hero-tagline-top {
  display: inline-block;
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  font-family: var(--font-hi);
  text-transform: uppercase;
  transition: all var(--transition-normal);
}

.hero-tagline-top:hover {
  color: var(--brand-blue);
}

body.lang-en .hero-tagline-top {
  font-family: var(--font-en);
  letter-spacing: 2px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Skeleton Loading Animation --- */
.skeleton {
  background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--border-light) 50%, var(--bg-secondary) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.6s infinite linear;
}

.skeleton-text {
  height: 12px;
  border-radius: var(--radius-xs);
  width: 100%;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-title {
  height: 20px;
  border-radius: var(--radius-xs);
  width: 80%;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* --- Contact Form Section Styles --- */
#contact-section {
  background-color: var(--bg-primary);
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form-container {
  width: 100%;
  max-width: 680px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.contact-form-container:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.premium-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--brand-blue);
  font-size: 1rem;
  font-family: var(--font-hi);
  transition: color var(--transition-fast);
}

body.lang-en .form-group label {
  font-family: var(--font-en);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  font-size: 1rem;
  color: var(--navy-text);
  background-color: var(--bg-primary);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 4px var(--brand-accent-light);
}

.submit-form-btn {
  background-color: var(--brand-blue);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.submit-form-btn:hover {
  background-color: var(--brand-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.submit-form-btn:active {
  transform: translateY(0);
}

.form-success-alert {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background-color: #d1fae5;
  border: 1px solid #10b981;
  border-radius: var(--radius-sm);
  color: #065f46;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(10px);
}

.form-success-alert.hidden {
  display: none;
}

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}
