/* Import Google Fonts for Noto Sans Devanagari (Hindi) and Outfit / Inter (English/UI) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Sans+Devanagari:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --primary: #D32F2F;
  /* Madhepura News Red */
  --primary-hover: #B71C1C;
  --primary-light: #FFCDD2;
  --accent: #FF1744;
  /* Live indicator red */
  --dark-bg: #121212;
  /* Hero background */
  --dark-header: #1C1C1E;
  /* Header background */
  --light-bg: #F8F9FA;
  /* Section background */
  --white: #FFFFFF;
  --text-dark: #212529;
  --text-muted: #6C757D;
  --text-light: #F8F9FA;
  --border-color: #E9ECEF;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--light-bg);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography styles for Hindi */
.lang-hi {
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.lang-en {
  font-family: 'Outfit', sans-serif;
}

/* Header Styles */
header {
  background-color: var(--dark-header);
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid var(--primary);
}

/* Header Left - Hamburger Icon */
.menu-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border-radius: 4px;
}

.menu-btn:hover {
  color: var(--accent);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Header Center - Logo and Branding */
.brand-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-logo {
  height: 55px;
  width: 55px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-sm);
  background-color: var(--white);
  transition: var(--transition);
}

.header-logo:hover {
  transform: scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-hindi {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.brand-english {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #CCCCCC;
  font-size: 0.8rem;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Header Right - Dummy/Placeholder for Balance */
.header-right {
  width: 44px;
  /* Matches hamburger size for symmetry */
  display: flex;
  justify-content: flex-end;
}


.live-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(211, 47, 47, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

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

  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

/* Off-canvas Navigation Drawer */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background-color: var(--dark-header);
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border-right: 3px solid var(--primary);
}

.nav-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-logo-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.drawer-logo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--primary);
}

.drawer-title {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}

.drawer-title .lang-en {
  color: #CCCCCC;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  padding: 0.2rem;
  display: flex;
  align-items: center;
}

.close-btn:hover {
  color: var(--white);
}

.drawer-nav {
  padding: 2rem 0;
  flex-grow: 1;
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
  padding: 0 2rem 1.25rem;
}

.language-btn {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #CCCCCC;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.45rem 0.7rem;
  transition: var(--transition);
}

.language-btn.active,
.language-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.drawer-nav ul {
  list-style: none;
}

.drawer-nav li {
  margin-bottom: 0.5rem;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  color: #CCCCCC;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.drawer-nav a.active,
.drawer-nav a:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.03);
  border-left-color: var(--primary);
}

.drawer-nav a i {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  color: var(--primary);
}

.drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* SECTION: HERO / HOME PAGE (Fits exactly on one screen on load) */
.home-page-section {
  height: calc(100vh - var(--header-height));
  background-color: var(--dark-bg);
  display: flex;
  flex-direction: row;
  /* Desktop side-by-side */
  overflow: hidden;
  position: relative;
}

/* Left Column - Carousel */
.carousel-container {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.05);
}

/* Overlay content on slide */
.carousel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem 2rem 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  color: var(--white);
  z-index: 3;
}

.carousel-tag {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.carousel-title {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-date {
  font-size: 0.8rem;
  color: #BBBBBB;
}

/* Navigation Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background-color: var(--primary);
  transform: scale(1.2);
  width: 20px;
  border-radius: 5px;
}

/* Right Column - YouTube Embed */
.youtube-container {
  flex: 1;
  height: 100%;
  background-color: #0d0d0d;
  display: flex;
  flex-direction: column;
  border-left: 2px solid rgba(255, 255, 255, 0.05);
}

.youtube-header {
  padding: 1rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.youtube-title-block {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.youtube-icon {
  color: #FF0000;
  font-size: 1.6rem;
}

.youtube-title {
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.youtube-live-tag {
  background-color: #FF0000;
  color: var(--white);
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.youtube-player-wrapper {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.youtube-iframe-holder {
  width: 100%;
  height: 100%;
  max-width: 800px;
  /* Maintain 16:9 aspect ratio but fit inside parent */
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #000;
}

.youtube-iframe-holder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-info-overlay {
  padding: 1rem 1.5rem;
  background-color: rgba(0, 0, 0, 0.4);
  color: #CCCCCC;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'Noto Sans Devanagari', sans-serif;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* SECTION COMMON STYLING */
.section-wrapper {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-dark {
  background-color: #121212;
  color: var(--white);
  max-width: none;
  width: 100%;
}

.section-dark .section-wrapper {
  color: var(--white);
}

.section-title-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
  position: relative;
}

.section-title {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-dark .section-title {
  color: var(--white);
}

.section-subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.25rem;
}

.section-title-container::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

/* SECTION: SEND MESSAGE / ISSUE REPORT FORM */
.issue-section {
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.issue-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.issue-info-pane h3 {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.issue-info-pane p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.issue-benefits {
  list-style: none;
}

.issue-benefits li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.issue-benefits li i {
  color: #25D366;
  /* WhatsApp Green */
  font-size: 1.1rem;
}

/* Form Styling */
.report-form {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #CED4DA;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background-color: #FCFDFD;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15);
  background-color: var(--white);
}

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

.form-error {
  color: var(--primary);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--primary);
  background-color: #FFF5F5;
}

.form-group.has-error .form-error {
  display: block;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: #25D366;
  /* WhatsApp Green */
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

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

/* Success Toast */
.toast-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 2rem;
  text-align: center;
}

.toast-success.active {
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #EAFDF2;
  color: #2ED573;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleUp {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

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

.toast-title {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
}

.toast-msg {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.toast-close-btn {
  padding: 0.6rem 1.5rem;
  background-color: #212529;
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.toast-close-btn:hover {
  background-color: #000;
}

/* SECTION: CHAIRMAN'S DESK */
.chairman-card {
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.chairman-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--primary);
}

.chairman-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.chairman-img-wrapper {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem auto;
  position: relative;
}

.chairman-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-color: #F1F3F5;
  transition: var(--transition);
}

.chairman-card:hover .chairman-img {
  transform: rotate(3deg) scale(1.03);
}

.chairman-name {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.chairman-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.chairman-message {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 550px;
  margin: 0 auto;
}

/* SECTION: CONTACT US (Dedicated styling, balanced circular icons & address) */
.social-icons-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Circular Social media buttons (Normal balanced scale) */
.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  font-size: 1.35rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-icon-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.social-icon-btn.btn-youtube {
  background-color: #FF0000;
}

.social-icon-btn.btn-youtube:hover {
  background-color: #CC0000;
}

.social-icon-btn.btn-facebook {
  background-color: #1877F2;
}

.social-icon-btn.btn-facebook:hover {
  background-color: #145DBF;
}

.social-icon-btn.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon-btn.btn-instagram:hover {
  filter: brightness(0.9);
}

.social-icon-btn.btn-whatsapp {
  background-color: #25D366;
}

.social-icon-btn.btn-whatsapp:hover {
  background-color: #128C7E;
}

/* Head office address layout styling */
.address-block {
  width: 100%;
  display: flex;
  justify-content: center;
}

.address-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: var(--shadow-sm);
  max-width: 500px;
  width: 100%;
}

.address-icon {
  font-size: 1.8rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
}

.address-details {
  text-align: left;
}

.address-details h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.address-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* FOOTER STYLING */
footer {
  background-color: var(--dark-header);
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-logo {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.footer-brand-title .lang-en {
  color: #AAAAAA;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  font-size: 0.8rem;
  color: #555555;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 1.5rem;
  width: 100%;
}

.footer-bottom strong {
  color: #888888;
}

/* RESPONSIVENESS AND DEVICE SCALING (CRITICAL RULES) */

/* Large screens and middle range (up to 1024px) */
@media (max-width: 1024px) {
  .issue-container {
    gap: 2.5rem;
  }
}

/* Tablets and Mobile landscape (max-width: 768px) */
@media (max-width: 768px) {
  header {
    padding: 0 1rem;
  }

  .brand-hindi {
    font-size: 1rem;
  }

  .brand-english {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }

  /* HOME PAGE HERO VIEWPORT CONSTRAINTS (Ensure everything fits in 100vh) */
  .home-page-section {
    flex-direction: column;
    /* Stacks vertically */
    height: calc(100vh - var(--header-height));
    /* Rigid height constraint */
  }

  .carousel-container {
    flex: 1;
    /* Automatically shares space equally */
    height: 50%;
    /* Takes exactly half of hero space */
  }

  .youtube-container {
    flex: 1;
    /* Automatically shares space equally */
    height: 50%;
    /* Takes exactly half of hero space */
    border-left: none;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
  }

  .youtube-header {
    padding: 0.5rem 1rem;
    /* Compact header on mobile */
  }

  .youtube-title {
    font-size: 0.9rem;
  }

  .youtube-player-wrapper {
    padding: 0.5rem 1rem;
    /* Compact padding */
  }

  .youtube-iframe-holder {
    width: 100%;
    height: 100%;
    max-width: none;
  }

  .video-info-overlay {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .carousel-content {
    padding: 1.5rem 1rem;
  }

  .carousel-title {
    font-size: 1.1rem;
  }

  .carousel-tag {
    font-size: 0.65rem;
    margin-bottom: 0.4rem;
  }

  .issue-container {
    grid-template-columns: 1fr;
    /* Stack info and form */
    gap: 2rem;
  }

  .address-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .address-details {
    text-align: center;
  }

  .report-form {
    padding: 1.5rem;
  }
}

/* Very Small Mobile Screens (max-width: 480px) */
@media (max-width: 480px) {
  :root {
    --header-height: 70px;
    /* Shorter header for more vertical viewport space */
  }

  .brand-container {
    gap: 0.5rem;
  }

  .header-logo {
    height: 40px;
    width: 40px;
  }

  .brand-hindi {
    font-size: 0.85rem;
  }

  .brand-english {
    font-size: 0.6rem;
    letter-spacing: 0.2px;
  }

  .live-badge {
    padding: 0.2rem 0.4rem;
    font-size: 0.65rem;
  }

  .carousel-title {
    font-size: 1rem;
  }

  .section-wrapper {
    padding: 3rem 1rem;
  }

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