:root {
  --saffron: #ff8f00;
  --saffron-dark: #e06f00;
  --green: #138a43;
  --green-dark: #0b5f31;
  --navy: #071f3d;
  --navy-soft: #12365f;
  --gold: #d7a84b;
  --cream: #fffaf0;
  --ink: #152033;
  --muted: #6d7788;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(7, 31, 61, 0.14);
  --shadow-soft: 0 12px 30px rgba(7, 31, 61, 0.09);
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-heading: "Merriweather", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background: #f8fafc;
  overflow-x: hidden;
}

body.loader-active {
  overflow: hidden;
}

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

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.9rem;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 143, 0, 0.16), transparent 28%),
    linear-gradient(135deg, #fffaf0 0%, #ffffff 46%, #eef8f2 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-emblem {
  position: relative;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid rgba(255, 143, 0, 0.28);
  box-shadow: 0 18px 42px rgba(7, 31, 61, 0.14);
}

.loader-emblem::before,
.loader-emblem::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 3px solid transparent;
  border-top-color: var(--saffron);
  border-right-color: var(--green);
  animation: loaderSpin 1.35s linear infinite;
}

.loader-emblem::after {
  inset: -14px;
  border-top-color: rgba(7, 31, 61, 0.18);
  border-right-color: rgba(255, 143, 0, 0.34);
  animation-duration: 2s;
  animation-direction: reverse;
}

.loader-logo {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
  padding: 8px;
}

.loader-logo-main {
  width: 58px;
  height: 58px;
  animation: loaderLogoMain 2.6s ease-in-out infinite;
}

.loader-logo-yuva {
  width: 70px;
  height: 70px;
  padding: 4px;
  animation: loaderLogoYuva 2.6s ease-in-out infinite;
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.loader-text {
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

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

@keyframes loaderLogoMain {
  0%,
  42% {
    opacity: 1;
    filter: drop-shadow(0 0 0 rgba(255, 143, 0, 0));
    transform: scale(1);
  }
  22% {
    filter: drop-shadow(0 0 12px rgba(255, 143, 0, 0.52));
  }
  50%,
  100% {
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(255, 143, 0, 0));
    transform: scale(0.94);
  }
}

@keyframes loaderLogoYuva {
  0%,
  42% {
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(19, 138, 67, 0));
    transform: scale(0.94);
  }
  50%,
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 0 rgba(19, 138, 67, 0));
    transform: scale(1);
  }
  72% {
    filter: drop-shadow(0 0 12px rgba(19, 138, 67, 0.5));
  }
}
.site-navbar {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.94));
  border-top: 4px solid var(--saffron);
  border-bottom: 1px solid rgba(7, 31, 61, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 38px rgba(7, 31, 61, 0.08);
}

.site-navbar .navbar-brand {
  order: 1;
  min-width: 0;
}

.site-navbar .language-switcher {
  order: 2;
  flex: 0 0 auto;
}

.site-navbar .navbar-toggler {
  order: 3;
}

.site-navbar .navbar-collapse {
  order: 4;
}

.site-navbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), rgba(255, 255, 255, 0.8), var(--green));
}
/* .navbar-brand span{
      width: 35px;
    height: 35px;
} */
.brand-mark {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: transparent;
  font-weight: 800;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(255, 143, 0, 0.45);
  box-shadow: 0 10px 22px rgba(255, 143, 0, 0.28);
  overflow: hidden;
}

.brand-logo {
  position: absolute;
  inset: 0;
  margin: auto;
  object-fit: contain;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.brand-logo-main {
  width: 34px;
  height: 34px;
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.brand-logo-yuva {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.74) rotate(-7deg);
}

.brand-switch.show-yuva .brand-logo-main {
  opacity: 0;
  transform: scale(0.74) rotate(7deg);
}

.brand-switch.show-yuva .brand-logo-yuva {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.navbar-brand strong {
  color: var(--navy);
  font-size: 1.34rem;
  letter-spacing: 0.2px;
}

.navbar-brand .brand-copy {
  display: block;
}

.brand-switch {
  column-gap: 0.9rem !important;
}

.navbar-brand .brand-role {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.2;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: opacity 0.45s ease, transform 0.45s ease, max-height 0.45s ease;
}

.brand-switch.show-yuva .brand-role {
  max-height: 1.5rem;
  opacity: 1;
  transform: translateY(0);
}

.navbar .nav-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.75rem 0.65rem;
  position: relative;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.42rem;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--saffron-dark);
  /* background: rgba(255, 143, 0, 0.08); */
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.language-switcher {
  position: relative;
  display: inline-flex;
  width: fit-content;
  padding: 0;
  border: 1px solid rgba(7, 31, 61, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(7, 31, 61, 0.08);
}

.language-native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.language-current {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.92rem;
  color: var(--navy);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1;
}

.language-current i:first-child {
  display: inline-grid;
  place-items: center;
  color: var(--saffron-dark);
  font-size: 0.9rem;
}

.language-current i:last-child {
  color: var(--navy);
  font-size: 0.72rem;
  transition: transform 0.2s ease;
}

.language-switcher.open .language-current i:last-child {
  transform: rotate(180deg);
}

.language-options {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  z-index: 50;
  min-width: 168px;
  display: grid;
  gap: 0.28rem;
  border: 1px solid rgba(7, 31, 61, 0.1);
  border-radius: 18px;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 52px rgba(7, 31, 61, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.language-switcher.open .language-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 999px;
  padding: 0.68rem 0.82rem;
  color: var(--navy);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: left;
}

.language-option::after {
  content: "\f00c";
  color: var(--saffron-dark);
  font-family: "Font Awesome 6 Free";
  font-size: 0.72rem;
  font-weight: 900;
  opacity: 0;
}

.language-option:hover,
.language-option.active {
  background: rgba(255, 143, 0, 0.11);
}

.language-option.active::after {
  opacity: 1;
}

.navbar-drawer-social {
  display: none;
}

.btn-premium {
  border: 0;
  color: var(--white);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.82rem 1.35rem;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  box-shadow: 0 13px 30px rgba(224, 111, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-premium:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(224, 111, 0, 0.34);
}

.btn-outline-premium {
  color: var(--navy);
  font-weight: 700;
  border: 1px solid rgba(7, 31, 61, 0.18);
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  background: rgba(255, 255, 255, 0.86);
  transition: all 0.2s ease;
}

.btn-outline-premium:hover {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
  transform: translateY(-2px);
}

.hero .btn-outline-premium {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.hero .btn-outline-premium:hover {
  color: var(--navy);
  border-color: var(--white);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: block;
  padding: 0;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--saffron) 0 33%, var(--white) 33% 66%, var(--green) 66% 100%);
}

.hero-banner-slider,
.hero-banner-slider .slick-list,
.hero-banner-slider .slick-track,
.hero-banner-slider .slick-slide,
.hero-banner-slider .slick-slide > div {
  min-height: 92vh;
}

.hero-slide {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 8.4rem 0 5.6rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 9, 20, 0.9) 0%, rgba(4, 18, 36, 0.66) 42%, rgba(4, 12, 24, 0.48) 72%, rgba(4, 12, 24, 0.82) 100%),
    radial-gradient(circle at 22% 48%, rgba(255, 143, 0, 0.18), transparent 34%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  width: min(600px, 100%);
  margin-left: 0;
  margin-right: auto;
  text-align: left;
  padding-left: 1.35rem;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.35rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--saffron), var(--gold), var(--green));
  box-shadow: 0 0 28px rgba(255, 143, 0, 0.34);
}

.eyebrow,
.journey-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--section-label-color, var(--gold));
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.78rem;
}

.eyebrow::before,
.journey-label::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.page-hero h1 {
  /* font-family: var(--font-heading); */
  /* font-weight: 800; */
  line-height: 1.02;
      color: #fff;
}

.hero h1 {
  font-size: clamp(2.05rem, 4.1vw, 3.85rem);
  margin: 0.95rem 0 0.6rem;
  text-transform: capitalize;
  font-weight: 800;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}

.hero-subtitle {
  display: inline-flex;
  width: fit-content;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.42rem 0.82rem;
  font-size: clamp(0.84rem, 1.2vw, 0.98rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero h2 {
  color: #ff835c;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 0.9rem;
  text-transform: capitalize;
}

.hero-intro {
  max-width: 560px;
  margin-left: 0;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1.45rem;
}

.leadership-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.85rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.leadership-kicker img {
  width: 28px;
  height: 28px;
}

.hero-photo {
  aspect-ratio: 4 / 5;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 22px;
  background: var(--cream);
}

.banner-slider,
.banner-slider .slick-list,
.banner-slider .slick-track {
  border-radius: 0;
}

.banner-slider {
  overflow: visible;
}

.banner-slider .slick-slide {
  line-height: 0;
}

.hero-banner-slider .slick-slide {
  line-height: normal;
}

.banner-slider .slick-dots {
  right: 48px;
  bottom: 34px;
  width: auto;
  z-index: 8;
}

.banner-slider .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 4px;
}

.banner-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
}

.banner-slider .slick-dots li button::before {
  width: 10px;
  height: 10px;
  color: transparent;
  opacity: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
  content: "";
}

.banner-slider .slick-dots li.slick-active button::before {
  background: #ff835c;
  transform: scale(1.35);
}

.banner-slider .slick-prev,
.banner-slider .slick-next {
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 31, 61, 0.58);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.banner-slider .slick-prev {
  left: 28px;
}

.banner-slider .slick-next {
  right: 28px;
}

.banner-slider .slick-prev:hover,
.banner-slider .slick-next:hover {
  background: var(--saffron);
  transform: scale(1.04);
}

.banner-slider .slick-prev::before,
.banner-slider .slick-next::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  opacity: 1;
}

.banner-slider .slick-prev::before {
  content: "\f053";
}

.banner-slider .slick-next::before {
  content: "\f054";
}

.action-strip {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 620px;
}

.action-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.action-pill i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy);
  border-radius: 50%;
  background: var(--gold);
}

.action-pill strong {
  display: block;
  font-size: 1.08rem;
}

.impact-row {
  margin-top: -3.2rem;
  position: relative;
  z-index: 4;
}

.impact-box {
  border: 1px solid rgba(7, 31, 61, 0.08);
  border-radius: 22px;
  padding: 1.35rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.impact-box strong {
  display: block;
  color: var(--saffron-dark);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
}

.impact-box span {
  color: var(--navy);
  font-weight: 700;
}

.section-padding {
  padding: 5.5rem 0;
}

.section-title {
  max-width: 780px;
  margin: 0 auto 2.7rem;
  text-align: center;
}

.section-title h2 {
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 0.75rem;
}

.section-title p,
.lead-muted {
  color: var(--muted);
  line-height: 1.75;
}

.premium-card {
  height: 100%;
  border: 1px solid rgba(7, 31, 61, 0.08);
  border-radius: 18px;
  padding: 1.45rem;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.premium-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 143, 0, 0.34);
  box-shadow: var(--shadow);
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 18px;
  font-size: 1.45rem;
  margin-bottom: 1.1rem;
  background: linear-gradient(135deg, var(--saffron), var(--green));
}

.premium-card h3,
.premium-card h4 {
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.premium-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.band {
  background:
    linear-gradient(135deg, rgba(255, 143, 0, 0.08), transparent 36%),
    linear-gradient(315deg, rgba(19, 138, 67, 0.09), transparent 36%),
    var(--white);
}

.about-premium-section {
  position: relative;
  overflow: hidden;
}

.about-premium-section::before {
  content: none;
}

.about-premium-section::after {
  content: none;
}

.about-premium-section .container {
  position: relative;
  z-index: 1;
}

.about-image-wrap {
  position: relative;
  max-width: 570px;
  padding: 1.15rem;
  border-radius: 24px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--saffron), var(--gold), var(--green)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 30px 80px rgba(7, 31, 61, 0.16);
}

.about-image-wrap::before {
  content: none;
  position: absolute;
  inset: 2rem -1.15rem -1.15rem 2rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 143, 0, 0.18), rgba(19, 138, 67, 0.18));
  z-index: -1;
}

.about-image-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream);
}

.about-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.02);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

.about-main-img.active {
  opacity: 1;
  transform: scale(1);
}

.about-logo-card,
.about-experience-card {
  position: absolute;
  color: var(--navy);
  border: 1px solid rgba(7, 31, 61, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.about-logo-card {
  left: -18px;
  top: 34px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 18px;
  padding: 0.7rem 1rem;
  z-index: 2;
}

.about-logo-card img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
}

.about-logo-card strong,
.about-logo-card span {
  display: block;
}

.about-logo-card strong {
  font-weight: 800;
}

.about-logo-card span {
  color: var(--green);
  font-weight: 700;
  font-size: 0.86rem;
}

.about-experience-card {
  right: -22px;
  bottom: 30px;
  width: min(250px, 74%);
  border-radius: 18px;
  padding: 1.1rem;
  z-index: 2;
}

.about-experience-card strong {
  display: block;
  color: var(--saffron-dark);
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.about-experience-card span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.about-content-card {
  border: 1px solid rgba(7, 31, 61, 0.08);
  border-radius: 22px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9)),
    linear-gradient(135deg, rgba(255, 143, 0, 0.08), rgba(19, 138, 67, 0.08));
  box-shadow: 0 22px 60px rgba(7, 31, 61, 0.1);
  backdrop-filter: blur(12px);
}

.about-content-card h2 {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
}

.about-points {
  display: grid;
  gap: 0.8rem;
  margin: 1.35rem 0;
}

.about-points div {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--navy);
  font-weight: 700;
}

.about-points i {
  color: var(--green);
  margin-top: 0.2rem;
}

.about-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.about-mini-stats div {
  border-radius: 16px;
  padding: 1rem 0.8rem;
  background: linear-gradient(135deg, rgba(255, 143, 0, 0.1), rgba(19, 138, 67, 0.09));
  border: 1px solid rgba(7, 31, 61, 0.08);
}

.about-mini-stats strong,
.about-mini-stats span {
  display: block;
}

.about-mini-stats strong {
  color: var(--saffron-dark);
  font-size: 1.22rem;
  font-weight: 800;
}

.about-mini-stats span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.journey-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff7ed, #ffffff 42%, #f3f7fb);
}

.journey-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 143, 0, 0.14), transparent 26%),
    radial-gradient(circle at 92% 90%, rgba(19, 138, 67, 0.1), transparent 28%);
  pointer-events: none;
}

.journey-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));
}

.journey-section .container {
  position: relative;
  z-index: 1;
}

.journey-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto 3rem;
  text-align: center;
}

.journey-label::after {
  display: none;
}

.journey-header h2 {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 800;
  margin: 1rem 0 0.75rem;
}

.journey-header p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
}

.journey-controls {
  display: flex;
  gap: 0.75rem;
  position: absolute;
  right: 0;
  top: 0;
}

.journey-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #ff744e;
  border: 1px solid rgba(255, 112, 67, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(7, 31, 61, 0.08);
  backdrop-filter: blur(12px);
  transition: all 0.2s ease;
}

.journey-controls button:hover {
  color: var(--white);
  border-color: #ff744e;
  background: #ff744e;
  transform: translateY(-2px);
}

.journey-year-nav {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.8rem 1.25rem 3rem;
  border: 1px solid rgba(255, 112, 67, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(7, 31, 61, 0.09);
  backdrop-filter: blur(14px);
  margin-bottom: 50px;
}

.journey-year-nav::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 66px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 112, 67, 0.2), rgba(215, 168, 75, 0.65), rgba(19, 138, 67, 0.2));
}

.journey-year-nav button {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 1rem;
  color: #7f8793;
  border: 0;
  background: transparent;
  font-size: 1.02rem;
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

.journey-year-nav button span {
  width: 14px;
  height: 14px;
  display: block;
  border-radius: 50%;
  background: #c7c9ce;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.92);
  transition: all 0.2s ease;
}

.journey-year-nav button.active,
.journey-year-nav button:hover {
  color: #ff744e;
  transform: translateY(-2px);
}

.journey-year-nav button.active span,
.journey-year-nav button:hover span {
  width: 18px;
  height: 18px;
  background: #ff744e;
  box-shadow: 0 0 0 9px rgba(255, 112, 67, 0.15), 0 10px 22px rgba(255, 112, 67, 0.3);
}

.journey-display {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 430px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(7, 31, 61, 0.08);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(255, 112, 67, 0.62), rgba(215, 168, 75, 0.36), rgba(19, 138, 67, 0.45)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 34px 90px rgba(7, 31, 61, 0.14);
}

.journey-display::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  pointer-events: none;
  z-index: 2;
}

.journey-image-panel {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.journey-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 31, 61, 0.06), rgba(7, 31, 61, 0));
}

.journey-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: opacity 0.18s ease, transform 0.35s ease;
}

.journey-display:hover .journey-image-panel img {
  transform: scale(1.04);
}

.journey-content-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 4vw, 3.5rem);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 112, 67, 0.16), transparent 30%),
    radial-gradient(circle at 0 100%, rgba(19, 138, 67, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
}

.journey-year-badge {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 900;
  padding: 1rem 1.35rem;
  background: linear-gradient(135deg, #ff744e, var(--saffron));
  box-shadow: 0 16px 34px rgba(255, 112, 67, 0.24);
}

.journey-content-panel span {
  color: #ff744e;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.journey-content-panel h3 {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.journey-content-panel p {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.journey-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.journey-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  border: 1px solid rgba(7, 31, 61, 0.14);
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  font-weight: 800;
  background: var(--white);
  transition: all 0.2s ease;
}

.journey-actions a:hover {
  color: var(--white);
  border-color: #ff744e;
  background: #ff744e;
  transform: translateY(-2px);
}

.dark-band {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 143, 0, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy), #0b2e4f);
}

.dark-band .section-title h2,
.dark-band h3,
.dark-band h4 {
  color: var(--white);
}

.dark-band .section-title p,
.dark-band p {
  color: rgba(255, 255, 255, 0.74);
}

.dark-band .premium-card h3,
.dark-band .premium-card h4 {
  color: var(--navy);
}

.dark-band .premium-card p {
  color: var(--muted);
}

.social-premium-section {
  --section-label-color: #ffd166;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #e4643b;
}

.social-premium-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(228, 100, 59, 0.92), rgba(228, 100, 59, 0.5)),
    url("../images/hero-bg.svg") center/cover no-repeat;
  background-blend-mode: color, normal;
  opacity: 0.62;
  pointer-events: none;
}

.social-premium-section .container {
  position: relative;
  z-index: 1;
}

.social-premium-section .section-title h2 {
  color: var(--white);
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
}

.social-premium-section .section-title p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.62;
}

.social-feature-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.26);
}

.social-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 0.45s ease;
}

.social-feature-card:hover img {
  transform: scale(1.05);
}

.social-feature-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(6, 26, 51, 0.08), rgba(6, 26, 51, 0.42) 38%, rgba(6, 26, 51, 0.96)),
    linear-gradient(90deg, rgba(255, 143, 0, 0.16), transparent);
}

.social-feature-overlay span {
  width: fit-content;
  display: inline-flex;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: var(--gold);
  margin-bottom: 0.9rem;
}

.social-feature-overlay h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.45vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 0.8rem;
}

.social-feature-overlay p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.social-service-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.105);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.17);
  backdrop-filter: blur(14px);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.social-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 143, 0, 0.18), transparent 45%, rgba(19, 138, 67, 0.14));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.social-service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(215, 168, 75, 0.52);
  background: rgba(255, 255, 255, 0.13);
}

.social-service-card:hover::before {
  opacity: 1;
}

.social-icon,
.social-service-card h4,
.social-service-card p {
  position: relative;
  z-index: 1;
}

.social-icon {
 width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #fe7304;
    border-radius: 16px;
    font-size: 1.25rem;
    background: linear-gradient(135deg, #ffffff, #e77652);
    box-shadow: 0 12px 26px rgba(255, 143, 0, 0.22);
    margin-bottom: 1rem;
}

.social-service-card h4 {
  color: var(--white);
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 0.65rem;
}

.social-service-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.56;
  margin-bottom: 0;
}

.social-work-hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 8.8rem 0 4.2rem;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(7, 31, 61, 0.96) 0%, rgba(7, 31, 61, 0.9) 45%, rgba(228, 100, 59, 0.86) 100%),
    url("../images/hero-bg.svg") center/cover no-repeat;
}

.social-work-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));
}

.social-work-hero .container {
  position: relative;
  z-index: 1;
}

.social-work-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.social-work-hero-copy h1 {
  max-width: 760px;
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.7vw, 3.45rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0.85rem 0 0.9rem;
}

.social-work-hero-copy p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.9rem, 1.25vw, 1rem);
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

.social-work-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.social-work-hero .btn-outline-premium {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.social-work-hero .btn-outline-premium:hover {
  color: var(--navy);
  border-color: var(--white);
  background: var(--white);
}

.social-work-hero .btn {
  padding: 0.78rem 1.35rem;
  font-size: 0.9rem;
}

.social-work-visual {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.social-work-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
}

.social-work-badge {
  position: absolute;
  left: -24px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: min(320px, 86%);
  padding: 0.95rem 1rem;
  color: var(--navy);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.social-work-badge i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  color: var(--white);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--saffron), var(--green));
}

.social-work-badge strong,
.social-work-badge span {
  display: block;
}

.social-work-badge strong {
  font-weight: 800;
}

.social-work-badge span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.social-work-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.social-work-stats div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(14px);
}

.social-work-stats strong,
.social-work-stats span {
  display: block;
}

.social-work-stats strong {
  color: var(--gold);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.social-work-stats span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.social-impact-section {
  background:
    linear-gradient(135deg, rgba(255, 143, 0, 0.07), transparent 34%),
    linear-gradient(315deg, rgba(19, 138, 67, 0.08), transparent 34%),
    #ffffff;
}

.social-impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.social-process {
  height: 100%;
  border: 1px solid rgba(7, 31, 61, 0.08);
  border-radius: 28px;
  padding: clamp(1.35rem, 3vw, 2.35rem);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.social-process h2 {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0.9rem 0 1.35rem;
}

.social-process-list {
  display: grid;
  gap: 0.85rem;
}

.social-process-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.35rem 0.85rem;
  align-items: start;
  border: 1px solid rgba(7, 31, 61, 0.08);
  border-radius: 18px;
  padding: 0.95rem;
  background: #fbfcfe;
}

.social-process-list i {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 15px;
  background: linear-gradient(135deg, var(--saffron), var(--green));
}

.social-process-list strong {
  color: var(--navy);
  font-weight: 800;
}

.social-process-list span {
  color: var(--muted);
  line-height: 1.55;
}

.social-gallery-band {
  background: #f8fafc;
}

.social-gallery-band .gallery-tabs-wrap {
  margin-top: -0.7rem;
}

.social-work-gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1fr;
  grid-auto-rows: 240px;
  gap: 1rem;
}

.social-work-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(7, 31, 61, 0.08);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.social-work-gallery img:first-child {
  grid-row: span 2;
}

.social-work-gallery img:last-child {
  grid-column: span 2;
}

.premium-page-hero {
  overflow: hidden;
  isolation: isolate;
}

.premium-page-hero::before {
  content: none;
}

.premium-page-hero::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 0;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 118, 0.72), transparent);
}

.premium-page-hero .container {
  position: relative;
  z-index: 2;
}

.premium-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 100%;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.5rem 0.72rem;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.premium-breadcrumb a,
.premium-breadcrumb strong,
.premium-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-width: 0;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.premium-breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
}

.premium-breadcrumb a:hover {
  color: var(--gold);
}

.premium-breadcrumb strong {
  color: var(--gold);
}

.premium-breadcrumb span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
}

.premium-breadcrumb i {
  font-size: 0.78rem;
}

.premium-page-hero .eyebrow::before {
  display: none;
}

.gallery-page-hero {
  background: url("../images/banner-3.jpg") center 42% / cover no-repeat;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.gallery-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(7, 31, 61, 0.72), rgba(7, 31, 61, 0.42) 48%, rgba(7, 31, 61, 0.18));
  pointer-events: none;
}

.gallery-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
      font-size: 40px;
    color: #fff;
}

.gallery-page-hero p {
  max-width: 640px;
  font-size: 0.96rem;
  line-height: 1.55;
}

.gallery-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.gallery-tabs {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.42rem;
  border: 1px solid rgba(7, 31, 61, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(7, 31, 61, 0.1);
}

.gallery-tabs .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  min-width: 128px;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
  background: transparent;
}

.gallery-tabs .nav-link i {
  color: var(--saffron-dark);
}

.gallery-tabs .nav-link.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--saffron), var(--green));
  box-shadow: 0 12px 28px rgba(19, 138, 67, 0.2);
}

.gallery-tabs .nav-link.active i {
  color: var(--white);
}

.gallery-tab-content {
  min-height: 320px;
}

.gallery-video-empty {
  display: grid;
  place-items: center;
  min-height: 340px;
  padding: 2rem;
  text-align: center;
  border: 1px dashed rgba(7, 31, 61, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 143, 0, 0.08), rgba(19, 138, 67, 0.08)),
    rgba(255, 255, 255, 0.86);
}

.gallery-video-empty i {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--white);
  border-radius: 50%;
  font-size: 1.45rem;
  background: linear-gradient(135deg, var(--saffron), var(--green));
  box-shadow: 0 16px 34px rgba(19, 138, 67, 0.18);
}

.gallery-video-empty h2 {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 850;
  margin-bottom: 0.45rem;
}

.gallery-video-empty p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.gallery-preview-section .gallery-item span {
  font-size: 0.9rem;
  font-weight: 700;
}

.press-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.press-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(228, 100, 59, 0.08), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(19, 138, 67, 0.06), transparent 30%),
    linear-gradient(90deg, rgba(228, 100, 59, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 31, 61, 0.025) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  opacity: 1;
  pointer-events: none;
}

.press-section::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 100, 59, 0.34), transparent);
}

.press-section .container {
  position: relative;
  z-index: 1;
}

.press-page-hero {
  background:
    linear-gradient(120deg, rgba(7, 31, 61, 0.9), rgba(7, 31, 61, 0.76)),
    linear-gradient(135deg, rgba(228, 100, 59, 0.42), rgba(19, 138, 67, 0.16)),
    url("../images/abhik-02.jpg") center 28% / cover;
}

.contact-page-hero {
  background:
    linear-gradient(100deg, rgba(7, 31, 61, 0.92) 0%, rgba(7, 31, 61, 0.76) 48%, rgba(7, 31, 61, 0.32) 100%),
    linear-gradient(135deg, rgba(255, 143, 0, 0.28), rgba(19, 138, 67, 0.2)),
    url("../images/abhik-04.jpg") center 34% / cover no-repeat;
}

.contact-page-hero h1 {
  max-width: 720px;
}

.contact-page-hero p {
  max-width: 620px;
}

.contact-details-section {
  background:
    linear-gradient(135deg, rgba(255, 143, 0, 0.07), transparent 34%),
    linear-gradient(315deg, rgba(19, 138, 67, 0.08), transparent 34%),
    #f8fafc;
}

.contact-details-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.contact-details-panel,
.contact-visual-panel {
  border: 1px solid rgba(7, 31, 61, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.contact-details-panel {
  padding: clamp(1.35rem, 3vw, 2.4rem);
}

.contact-details-panel h2 {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 800;
  line-height: 1.16;
  margin: 0.85rem 0 0.75rem;
}

.contact-details-panel p {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 1.45rem;
}

.contact-detail-list {
  display: grid;
  gap: 0.95rem;
}

.contact-detail-card {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-height: 92px;
  padding: 1rem;
  color: var(--navy);
  border: 1px solid rgba(7, 31, 61, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 143, 0, 0.08), rgba(19, 138, 67, 0.06)),
    #ffffff;
  box-shadow: 0 14px 34px rgba(7, 31, 61, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.contact-detail-card:hover {
  color: var(--navy);
  border-color: rgba(255, 143, 0, 0.28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.contact-detail-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  color: var(--white);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--saffron), var(--green));
  box-shadow: 0 12px 28px rgba(19, 138, 67, 0.18);
}

.contact-detail-card strong,
.contact-detail-card span {
  display: block;
}

.contact-detail-card strong {
  font-size: 0.9rem;
  font-weight: 850;
  margin-bottom: 0.24rem;
}

.contact-detail-card span {
  color: var(--muted);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-social-box {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(7, 31, 61, 0.08);
}

.contact-social-box h3 {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 850;
  margin-bottom: 0.85rem;
}

.contact-details-panel .social-icons a {
  color: var(--white);
  background: var(--navy);
}

.contact-details-panel .social-icons a:hover {
  background: var(--saffron);
}

.contact-visual-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 0.85rem;
}

.contact-visual-panel > img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.contact-visual-card {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(7, 31, 61, 0.18);
  backdrop-filter: blur(14px);
}

.contact-visual-card img {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 143, 0, 0.34);
}

.contact-visual-card strong,
.contact-visual-card span {
  display: block;
}

.contact-visual-card strong {
  font-weight: 850;
}

.contact-visual-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.sos-section {
  background:
    linear-gradient(135deg, rgba(143, 21, 21, 0.1), transparent 32%),
    linear-gradient(315deg, rgba(215, 168, 75, 0.12), transparent 34%),
    #fbfcff;
}

.home-sos-section {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}

.sos-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.64fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(1rem, 2.4vw, 1.55rem);
  border: 1px solid rgba(143, 21, 21, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.94)),
    #ffffff;
  box-shadow: 0 18px 46px rgba(7, 31, 61, 0.11);
  position: relative;
  overflow: hidden;
}

.sos-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #c51616, var(--gold), var(--green));
}

.sos-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.sos-content h2 {
  color: #8f1515;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  font-weight: 900;
  margin: 0.42rem 0 0.65rem;
}

.sos-content p {
  max-width: 620px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.62;
  margin-bottom: 1rem;
}

.sos-primary-actions,
.sos-action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sos-call-btn,
.sos-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 42px;
  border-radius: 999px;
  font-weight: 850;
  padding: 0.66rem 1rem;
  font-size: 0.9rem;
}

.sos-call-btn {
  color: #ffffff;
  background: linear-gradient(135deg, #c51616, #7f1010);
  box-shadow: 0 16px 34px rgba(197, 22, 22, 0.26);
}

.sos-call-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.sos-outline-btn {
  color: #8f1515;
  border: 1px solid rgba(143, 21, 21, 0.28);
  background: rgba(191, 22, 22, 0.06);
}

.sos-outline-btn:hover {
  color: #ffffff;
  background: #8f1515;
}

.sos-tool {
  display: grid;
  gap: 0.68rem;
  padding: clamp(0.85rem, 2vw, 1.05rem);
  border: 1px solid rgba(7, 31, 61, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

.sos-panic-button {
  display: grid;
  place-items: center;
  gap: 0.35rem;
  width: 108px;
  height: 108px;
  margin: 0 auto;
  color: #ffffff;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(145deg, #df1f1f, #8f1515);
  box-shadow: 0 14px 34px rgba(191, 22, 22, 0.3);
}

.sos-panic-button i {
  font-size: 1.75rem;
}

.sos-panic-button span {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.sos-panic-button:hover {
  transform: translateY(-2px);
}

#sosStatus {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

#sosMessage {
  resize: vertical;
  min-height: 96px;
  max-height: 130px;
  padding: 0.75rem 0.85rem;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.48;
}

.sos-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sos-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 40px;
  color: var(--navy);
  border: 1px solid rgba(7, 31, 61, 0.1);
  border-radius: 12px;
  background: #ffffff;
  font-size: 0.84rem;
  font-weight: 850;
  padding: 0.58rem 0.7rem;
}

.sos-action:hover {
  color: #ffffff;
  background: var(--navy);
}

.sos-action[aria-disabled="true"] {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.64;
}

.sos-tool small {
  color: var(--muted);
  line-height: 1.55;
}

.sos-advice {
  border: 1px solid rgba(7, 31, 61, 0.08);
  border-radius: 14px;
  background: #ffffff;
  padding: 0.78rem;
}

.sos-advice strong {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
  margin-bottom: 0.45rem;
}

.sos-advice ul {
  display: grid;
  gap: 0.32rem;
  padding-left: 1.15rem;
  margin: 0;
}

.sos-advice li {
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.42;
}



.press-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.press-page-section {
  padding-top: 5rem;
}

.press-archive-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.press-archive-section .section-title {
  max-width: 780px;
  margin: 0 auto 2.4rem;
}

.press-archive-section .section-title p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.press-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 1.35rem;
  align-items: stretch;
}

.press-feature-card,
.press-mini-card {
  border: 1px solid rgba(228, 100, 59, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(7, 31, 61, 0.1);
  backdrop-filter: blur(18px);
}

.press-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  min-height: 500px;
  overflow: hidden;
  border-radius: 30px;
  isolation: isolate;
}

.press-feature-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background:
    linear-gradient(135deg, rgba(228, 100, 59, 0.1), transparent 36%),
    linear-gradient(315deg, rgba(215, 168, 75, 0.14), transparent 34%);
  pointer-events: none;
  z-index: -1;
}

.press-feature-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--cream);
}

.press-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.press-feature-card:hover .press-feature-image img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.055);
}

.press-feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 31, 61, 0.03), rgba(7, 31, 61, 0.72)),
    linear-gradient(135deg, rgba(228, 100, 59, 0.28), transparent 52%);
}

.press-feature-image span {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: linear-gradient(135deg, var(--gold), #ffe1a1);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.press-feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 3vw, 3rem);
}

.press-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  border: 1px solid rgba(228, 100, 59, 0.12);
  border-radius: 18px;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 248, 243, 0.82);
  margin-bottom: 1rem;
}

.press-source span {
  color: #c5522f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.press-source strong {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.press-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.press-meta span,
.press-mini-card small {
  width: fit-content;
  color: #c5522f;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.press-meta span {
  border: 1px solid rgba(228, 100, 59, 0.2);
  border-radius: 999px;
  padding: 0.44rem 0.76rem;
  background: rgba(228, 100, 59, 0.095);
}

.press-feature-content h3,
.press-mini-card h4 {
  color: var(--navy);
  font-weight: 800;
}

.press-feature-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
  line-height: 1.14;
  margin-bottom: 1rem;
}

.press-feature-content p,
.press-mini-card p {
  color: var(--muted);
  line-height: 1.72;
}

.press-feature-content p {
  margin-bottom: 1.45rem;
}

.press-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.press-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.press-link i {
  color: #e4643b;
  transition: transform 0.2s ease;
}

.press-link:hover {
  color: #c5522f;
}

.press-link:hover i {
  transform: translateX(4px);
}

.press-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  border-top: 1px solid rgba(7, 31, 61, 0.08);
  padding-top: 1rem;
}

.press-stats div {
  border-radius: 16px;
  padding: 0.85rem 0.75rem;
  background: linear-gradient(135deg, rgba(228, 100, 59, 0.1), rgba(215, 168, 75, 0.1));
}

.press-stats strong,
.press-stats span {
  display: block;
}

.press-stats strong {
  color: #c5522f;
  font-size: 1.18rem;
  font-weight: 800;
}

.press-stats span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.press-card-list {
  display: grid;
  gap: 0.95rem;
}

.press-mini-card {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-radius: 22px;
  padding: 1.2rem;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.press-mini-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #e4643b, var(--gold), var(--green));
  opacity: 0.82;
}

.press-mini-card > * {
  position: relative;
  z-index: 1;
}

.press-mini-card:hover {
  transform: translateY(-6px);
  border-color: rgba(228, 100, 59, 0.28);
  box-shadow: var(--shadow);
}

.press-date {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  color: var(--white);
  border-radius: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  background: linear-gradient(135deg, #e4643b, var(--gold));
  box-shadow: 0 13px 28px rgba(228, 100, 59, 0.24);
}

.press-mini-card h4 {
  font-size: 1.06rem;
  line-height: 1.35;
  margin: 0.35rem 0 0.45rem;
}

.press-mini-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.press-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 1.5rem;
  align-items: start;
}

.press-grid {
  min-width: 0;
}

.press-grid:not(.slick-initialized) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.press-slider {
  position: relative;
}

.press-slider .slick-list {
  margin: 0 -0.65rem;
  padding: 0.4rem 0.1rem 4.25rem;
}

.press-slider .slick-slide {
  padding: 0 0.65rem;
  height: auto;
}

.press-slider .slick-track {
  display: flex;
}

.press-slider .slick-slide > div {
  height: 100%;
}

.press-slider .slick-prev,
.press-slider .slick-next {
  top: auto;
  bottom: 0.6rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3f3f3;
  box-shadow: 0 12px 26px rgba(7, 31, 61, 0.12);
  transition: background 0.2s ease, transform 0.2s ease;
}

.press-slider .slick-prev {
  left: 0.65rem;
}

.press-slider .slick-next {
  left: 3.7rem;
  right: auto;
}

.press-slider .slick-prev:hover,
.press-slider .slick-next:hover {
  background: #e4643b;
  transform: translateY(-2px);
}

.press-slider .slick-prev::before,
.press-slider .slick-next::before {
  color: var(--navy);
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 900;
  opacity: 1;
}

.press-slider .slick-prev:hover::before,
.press-slider .slick-next:hover::before {
  color: var(--white);
}

.press-slider .slick-prev::before {
  content: "\f053";
}

.press-slider .slick-next::before {
  content: "\f054";
}

.press-slider .slick-dots {
  right: 0.65rem;
  bottom: 1.55rem;
  width: auto;
}

.press-slider .slick-dots li {
  width: 9px;
  height: 9px;
  margin: 0 3px;
}

.press-slider .slick-dots li button,
.press-slider .slick-dots li button::before {
  width: 9px;
  height: 9px;
}

.press-slider .slick-dots li button::before {
  content: "";
  opacity: 1;
  border-radius: 50%;
  background: #d7d7d7;
}

.press-slider .slick-dots li.slick-active button::before {
  background: #e4643b;
}

.press-news-card {
  position: relative;
  min-height: 430px;
  height: 430px;
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(7, 31, 61, 0.09);
  border-radius: 22px;
  padding: 0;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(7, 31, 61, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.press-news-card:hover {
  border-color: rgba(228, 100, 59, 0.28);
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(7, 31, 61, 0.15);
}

.press-paper-preview {
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 22px 22px 0 0;
  background: #f5f7fa;
  box-shadow: none;
}

.press-paper-head {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  top: 0.9rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  margin-bottom: 0;
  background: rgba(7, 31, 61, 0.64);
  backdrop-filter: blur(10px);
}

.press-paper-head strong {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 850;
}

.press-paper-head span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.56rem;
  font-weight: 800;
  text-transform: uppercase;
}

.press-paper-title {
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.85rem;
  z-index: 2;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  min-height: 0;
  margin-bottom: 0;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.press-paper-preview img {
  width: 100%;
  height: 218px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  filter: saturate(1.04) contrast(1.03);
}

.press-paper-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 31, 61, 0.08) 0%, rgba(7, 31, 61, 0.24) 45%, rgba(7, 31, 61, 0.76) 100%);
  pointer-events: none;
}

.press-news-card h3 {
  color: #111111;
  font-size: clamp(1.05rem, 1.15vw, 1.22rem);
  font-weight: 850;
  line-height: 1.22;
  letter-spacing: 0;
  margin: 1rem 1rem 0.55rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.press-excerpt {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0 1rem 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.press-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #252525;
  margin-top: auto;
  border-top: 1px solid rgba(7, 31, 61, 0.08);
  padding: 0.8rem 1rem 0.95rem;
}

.press-card-foot span {
  font-size: 0.92rem;
  font-weight: 500;
}

.press-card-foot i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(7, 31, 61, 0.06);
  box-shadow: 0 10px 24px rgba(7, 31, 61, 0.08);
}

.popular-press {
  position: sticky;
  top: 104px;
  border: 1px solid rgba(7, 31, 61, 0.08);
  border-radius: 24px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(7, 31, 61, 0.1);
  backdrop-filter: blur(16px);
}

.popular-press h3 {
  color: #2a2a2a;
  font-size: 1.3rem;
  font-weight: 850;
  text-align: left;
  border-bottom: 1px solid rgba(7, 31, 61, 0.08);
  margin: 0 0 0.95rem;
  padding-bottom: 0.8rem;
}

.popular-press article {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 0.9rem;
  min-height: 92px;
  border: 1px solid rgba(7, 31, 61, 0.06);
  border-radius: 18px;
  padding: 0.68rem;
  background: linear-gradient(135deg, #ffffff, #f5f7fa);
  margin-bottom: 0.78rem;
  box-shadow: 0 10px 24px rgba(7, 31, 61, 0.055);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.popular-press article:last-child {
  margin-bottom: 0;
}

.popular-press article:hover {
  border-color: rgba(228, 100, 59, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(7, 31, 61, 0.1);
}

.popular-press img {
  width: 76px;
  height: 76px;
  border: 4px solid #ffffff;
  border-radius: 16px;
  object-fit: cover;
  margin-left: 0;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(7, 31, 61, 0.1);
}

.popular-press h4 {
  color: #2d2d2d;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.18;
  text-align: left;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.popular-press span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: #333333;
  font-size: 0.82rem;
  text-align: left;
}

.popular-press span i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  color: var(--navy);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 18px rgba(7, 31, 61, 0.08);
}

.facebook-updates-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(24, 119, 242, 0.12), transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(19, 138, 67, 0.08), transparent 30%),
    #ffffff;
}

.facebook-updates-section::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24, 119, 242, 0.3), transparent);
}

.facebook-updates-section .container {
  position: relative;
  z-index: 1;
}

.social-updates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.social-update-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(7, 31, 61, 0.08);
  border-radius: 22px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 58px rgba(7, 31, 61, 0.1);
}

.social-update-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.social-update-head span,
.social-update-head a {
  display: inline-flex;
  align-items: center;
}

.social-update-head span {
  gap: 0.5rem;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 850;
}

.social-update-head a {
  width: 34px;
  height: 34px;
  justify-content: center;
  color: var(--navy);
  border-radius: 50%;
  background: #f4f7fb;
}

.facebook-update-card .social-update-head i {
  color: #1877f2;
}

.instagram-update-card .social-update-head i {
  color: #e1306c;
}

.x-update-card .social-update-head i {
  color: #111111;
}

.facebook-plugin-wrap {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(7, 31, 61, 0.07);
  border-radius: 18px;
  padding: 0.55rem;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.facebook-plugin-wrap::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border-radius: 22px;
  border: 1px solid rgba(7, 31, 61, 0.06);
  pointer-events: none;
}

.facebook-plugin-wrap .fb-page {
  width: 100% !important;
  text-align: center;
}

.facebook-plugin-wrap .fb-page span {
  width: 100% !important;
  max-width: 100% !important;
}

.facebook-plugin-wrap iframe {
  max-width: 100% !important;
  border-radius: 16px !important;
}

.social-post-preview {
  flex: 1;
  overflow: hidden;
  border: 1px solid rgba(7, 31, 61, 0.07);
  border-radius: 18px;
  background: #ffffff;
}

.social-post-preview > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.social-post-body {
  padding: 1rem;
}

.social-post-author {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 0.9rem;
}

.social-post-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
}

.social-post-author strong,
.social-post-author span {
  display: block;
}

.social-post-author strong {
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.1;
}

.social-post-author span {
  color: var(--muted);
  font-size: 0.78rem;
}

.social-post-body p {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.social-post-actions {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-size: 1rem;
}

.event-card,
.news-card {
  overflow: hidden;
  padding: 0;
}

.event-date {
  width: 76px;
  min-width: 76px;
  color: var(--white);
  text-align: center;
  border-radius: 16px;
  padding: 0.8rem 0.55rem;
  background: linear-gradient(135deg, var(--saffron), var(--green));
}

.event-date strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

.event-date span {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--cream);
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 20px 54px rgba(7, 31, 61, 0.14);
  background: var(--white);
  isolation: isolate;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 31, 61, 0.02), rgba(7, 31, 61, 0.78)),
    linear-gradient(135deg, rgba(255, 143, 0, 0.2), transparent 48%);
  opacity: 0.9;
  transition: opacity 0.25s ease;
  z-index: 1;
}

.gallery-item::before {
  content: "\f00e";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-8px);
  opacity: 0;
  transition: all 0.25s ease;
  z-index: 2;
}

.gallery-item span {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  z-index: 2;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 800;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

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

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

.gallery-item:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  position: relative;
  padding: 9rem 0 4.8rem;
  /* color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(215, 168, 75, 0.25), transparent 26%),
    linear-gradient(135deg, rgba(7, 31, 61, 0.98), rgba(10, 55, 96, 0.94) 58%, rgba(19, 138, 67, 0.92)),
    url("../images/hero-bg.svg") center/cover no-repeat; */
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 3.8rem);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.stat-panel {
  border-radius: 22px;
  padding: 2rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--saffron), var(--green));
  box-shadow: var(--shadow);
}

.stat-panel strong {
  display: block;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}

.timeline {
  position: relative;
  padding-left: 1.2rem;
  border-left: 3px solid rgba(255, 143, 0, 0.25);
}

.timeline-item {
  position: relative;
  margin-bottom: 1.35rem;
  padding-left: 1.1rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.62rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 5px rgba(255, 143, 0, 0.16);
}

.about-page {
  background: #fbfcff;
}

.about-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 9.5rem 0 5.5rem;
  color: var(--white);
  isolation: isolate;
}

.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(1.05) contrast(1.04);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 31, 61, 0.92) 0%, rgba(7, 31, 61, 0.72) 42%, rgba(7, 31, 61, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 31, 61, 0.08) 0%, rgba(7, 31, 61, 0.78) 100%);
}

.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));
}

.about-hero-content {
  width: min(680px, 100%);
}

.about-hero h1,
.about-profile-copy h2,
.about-values-section h2,
.about-journey-copy h2,
.about-cta-card h2 {
  /* font-family: var(--font-heading); */
  font-weight: 600;
  letter-spacing: 0;
}

.about-hero h1 {
  font-size: clamp(2.25rem, 5.6vw, 3.7rem);
  line-height: 1.03;
  margin: 1rem 0 0.85rem;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.about-hero-role {
  width: fit-content;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: linear-gradient(135deg, var(--gold), #ffe1a1);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.18);
  margin-bottom: 1rem;
}

.about-hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.68;
  margin-bottom: 1.5rem;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.about-profile-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 143, 0, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 31, 61, 0.035) 1px, transparent 1px),
    #ffffff;
  background-size: 76px 76px;
}

.about-profile-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-profile-visual {
  position: relative;
  min-height: 560px;
  border-radius: 28px;
  padding: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 143, 0, 0.34), rgba(19, 138, 67, 0.24));
  box-shadow: 0 26px 70px rgba(7, 31, 61, 0.16);
}

.about-profile-main {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
}

.about-profile-badge {
  position: absolute;
  left: 1.8rem;
  right: 1.8rem;
  bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 0.9rem 1rem;
  color: var(--white);
  background: rgba(7, 31, 61, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.about-profile-badge img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
  padding: 0.2rem;
}

.about-profile-badge strong,
.about-profile-badge span {
  display: block;
}

.about-profile-badge strong {
  font-weight: 700;
}

.about-profile-badge span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
}

.about-profile-copy {
  border: 1px solid rgba(7, 31, 61, 0.08);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 60px rgba(7, 31, 61, 0.09);
  backdrop-filter: blur(14px);
}

.about-profile-copy h2 {
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 1.18;
  margin: 1rem 0 1rem;
}

.about-signature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.about-signature-row div {
  border: 1px solid rgba(228, 100, 59, 0.12);
  border-radius: 18px;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(228, 100, 59, 0.08), rgba(215, 168, 75, 0.08));
}

.about-signature-row strong,
.about-signature-row span {
  display: block;
}

.about-signature-row strong {
  color: #c5522f;
  font-size: 1rem;
  font-weight: 700;
}

.about-signature-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.political-details-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 143, 0, 0.11), transparent 28%),
    radial-gradient(circle at 90% 88%, rgba(19, 138, 67, 0.1), transparent 30%),
    #f8fafc;
}

.political-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.political-info-card,
.political-panel,
.political-story-card {
  border: 1px solid rgba(7, 31, 61, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(7, 31, 61, 0.08);
  backdrop-filter: blur(14px);
}

.political-info-card {
  min-height: 210px;
  border-radius: 22px;
  padding: 1.25rem;
}

.political-info-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 15px;
  background: linear-gradient(135deg, #e4643b, var(--gold));
  box-shadow: 0 14px 28px rgba(228, 100, 59, 0.2);
  margin-bottom: 1rem;
}

.political-info-card span,
.political-panel-head .eyebrow,
.political-story-card .eyebrow {
  font-size: 0.72rem;
}

.political-info-card h3 {
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0.45rem 0 0.55rem;
}

.political-info-card p,
.political-story-card p,
.service-list li,
.achievement-list li {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.political-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.political-panel,
.political-story-card {
  border-radius: 24px;
  padding: clamp(1.25rem, 2.4vw, 2rem);
}

.political-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(7, 31, 61, 0.08);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.political-panel h3,
.political-story-card h3 {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0.4rem 0 0;
}

.political-table {
  display: grid;
  gap: 0.6rem;
}

.political-table > div {
  display: grid;
  grid-template-columns: 0.55fr 1.1fr 0.85fr;
  gap: 0.75rem;
  align-items: center;
  border-radius: 16px;
  padding: 0.85rem 1rem;
  background: #f8fafc;
}

.political-table > div:first-child {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
}

.political-table strong,
.political-table span {
  font-size: 0.9rem;
  line-height: 1.45;
}

.political-table span:first-child {
  color: #c5522f;
  font-weight: 700;
}

.achievement-list,
.service-list {
  padding-left: 1.15rem;
  margin: 0;
}

.achievement-list {
  display: grid;
  gap: 0.45rem;
  counter-reset: achievement;
}

.achievement-list li::marker {
  color: #c5522f;
  font-weight: 700;
}

.service-list {
  display: grid;
  gap: 0.55rem;
}

.service-list li::marker {
  color: var(--green);
}

.political-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.political-story-card p:last-child {
  margin-bottom: 0;
}

.political-vision-card {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 31, 61, 0.95), rgba(19, 138, 67, 0.86)),
    url("../images/abhik-05.jpg") center/cover no-repeat;
}

.political-vision-card h3,
.political-vision-card p {
  color: var(--white);
}

.political-vision-card p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.about-values-section {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-value-card {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  border: 1px solid rgba(7, 31, 61, 0.08);
  border-radius: 22px;
  padding: 1.35rem;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(7, 31, 61, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.about-value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 143, 0, 0.1), transparent 42%), linear-gradient(315deg, rgba(19, 138, 67, 0.1), transparent 38%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.about-value-card:hover {
  border-color: rgba(228, 100, 59, 0.22);
  transform: translateY(-6px);
  box-shadow: 0 24px 62px rgba(7, 31, 61, 0.13);
}

.about-value-card:hover::before {
  opacity: 1;
}

.about-value-card > * {
  position: relative;
  z-index: 1;
}

.about-value-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 16px;
  background: linear-gradient(135deg, #e4643b, var(--gold));
  box-shadow: 0 14px 30px rgba(228, 100, 59, 0.22);
  margin-bottom: 1rem;
}

.about-value-card h3 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.about-value-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
  margin-bottom: 0;
}

.about-journey-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 31, 61, 0.96), rgba(12, 61, 105, 0.93) 58%, rgba(19, 138, 67, 0.84)),
    url("../images/hero-bg.svg") center/cover no-repeat;
  color: var(--white);
}

.about-journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-journey-copy h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.85rem);
  line-height: 1.18;
  margin: 1rem 0;
}

.about-journey-copy .lead-muted {
  color: rgba(255, 255, 255, 0.76);
}

.about-timeline {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.about-timeline div {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1rem 1rem 1rem 3.1rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.about-timeline div::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(215, 168, 75, 0.14);
}

.about-timeline strong,
.about-timeline span {
  display: block;
}

.about-timeline strong {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.about-timeline span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.55;
}

.about-journey-gallery {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}

.about-journey-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
}

.about-journey-gallery img:first-child {
  grid-row: span 2;
}

.about-cta-section {
  padding: 0 0 5rem;
  background: #ffffff;
}

.about-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 3rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(228, 100, 59, 0.94), rgba(228, 100, 59, 0.72)),
    url("../images/abhik-01.jpg") center/cover no-repeat;
  box-shadow: 0 24px 70px rgba(228, 100, 59, 0.26);
  overflow: hidden;
}

.about-cta-card h2 {
  max-width: 760px;
  font-size: clamp(1.45rem, 2.8vw, 2.45rem);
  line-height: 1.2;
  margin: 0.8rem 0 0;
}

.contact-info {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(7, 31, 61, 0.08);
}

.contact-info i {
  color: var(--saffron-dark);
  font-size: 1.25rem;
}

.form-control,
.form-select {
  border-radius: 14px;
  border: 1px solid rgba(7, 31, 61, 0.12);
  padding: 0.86rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 0.22rem rgba(255, 143, 0, 0.16);
}

.map-placeholder {
  min-height: 310px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 20px;
  color: var(--navy);
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    url("../images/map-placeholder.svg") center/cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.social-icons {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.social-icons a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-icons a:hover {
  color: var(--white);
  background: var(--saffron);
  transform: translateY(-3px);
}

.premium-card .social-icons a {
  background: var(--navy);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background: #e4643b;
  padding: 5rem 0 1.4rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(228, 100, 59, 0.94), rgba(228, 100, 59, 0.54)),
    url("../images/hero-bg.svg") center/cover no-repeat;
  background-blend-mode: color, normal;
  opacity: 0.58;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer h5,
.site-footer strong {
  color: var(--white);
  font-weight: 800;
}

.site-footer h5 {
  margin-bottom: 1.1rem;
}

.footer-brand-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  margin-bottom: 1.2rem;
}

.footer-brand-card img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 0.25rem;
}

.footer-brand-card h5 {
  margin-bottom: 0.25rem;
}

.footer-brand-card p,
.footer-about {
  margin-bottom: 0;
}

.footer-about {
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.footer-links a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(215, 168, 75, 0.12);
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact-list {
  display: grid;
  gap: 0.9rem;
}

.footer-contact-list div {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.07);
}

.footer-contact-list i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
}

.footer-contact-list span {
  line-height: 1.55;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  font-size: 0.9rem;
}

.mobile-bottom-tabs {
  display: none;
}

.mobile-sos-float {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.home-page p,
.home-page .lead-muted,
.home-page .hero-intro,
.home-page .premium-card p,
.home-page .social-service-card p,
.home-page .journey-content-panel p,
.home-page .about-experience-card span {
  font-weight: 400;
}

.home-page .navbar .nav-link,
.home-page .btn-premium,
.home-page .btn-outline-premium,
.home-page .journey-actions a,
.home-page .hero-subtitle,
.home-page .about-points div,
.home-page .gallery-item span,
.home-page .event-date span,
.home-page .leadership-kicker,
.home-page .eyebrow {
  font-weight: 600;
}

.home-page .journey-year-nav button,
.home-page .about-mini-stats span,
.home-page .impact-box span,
.home-page .action-pill small {
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .site-navbar {
    z-index: 1060;
  }

  body.nav-drawer-open {
    overflow: hidden;
  }

  body.nav-drawer-open::before {
    content: "";
    position: fixed;
    inset: 74px 0 0;
    z-index: 1040;
    background: rgba(7, 31, 61, 0.36);
    backdrop-filter: blur(5px);
    animation: drawerOverlayIn 0.24s ease both;
  }

  .site-navbar .container {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.52rem;
  }

  .site-navbar .navbar-toggler {
    order: 1;
  }

  .site-navbar .navbar-brand {
    order: 2;
  }

  .site-navbar .language-switcher {
    order: 3;
  }

  .site-navbar .navbar-collapse {
    order: 4;
  }

  .navbar-brand {
    min-width: 0;
  }

  .navbar-brand .brand-copy {
    min-width: 0;
  }

  .navbar-brand strong {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    line-height: 1.1;
  }

  .navbar-brand .brand-role {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .navbar-collapse {
    position: fixed;
    top: 74px;
    left: 0;
    z-index: 1050;
    width: min(84vw, 320px);
    height: calc(100vh - 74px);
    padding: 1.25rem 1rem 8rem;
    border-right: 1px solid rgba(7, 31, 61, 0.08);
    border-bottom: 1px solid rgba(19, 138, 67, 0.18);
    border-radius: 0 26px 26px 0;
    background:
      radial-gradient(circle at 10% 0%, rgba(255, 143, 0, 0.18), transparent 28%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 250, 240, 0.97));
    box-shadow: 28px 34px 76px rgba(7, 31, 61, 0.22);
    transform: translateX(-108%);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.34s ease;
    overflow-y: auto;
  }

  .navbar-drawer-social {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1.2rem;
    display: block;
    padding-top: 1.05rem;
    border-top: 1px solid rgba(7, 31, 61, 0.08);
  }

  .navbar-drawer-social > span {
    display: block;
    margin-bottom: 0.72rem;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }

  .navbar-drawer-social > div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .navbar-drawer-social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--navy);
    border: 1px solid rgba(7, 31, 61, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 26px rgba(7, 31, 61, 0.08);
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  }

  .navbar-drawer-social a:hover {
    color: var(--white);
    border-color: transparent;
    background: linear-gradient(135deg, var(--saffron), var(--green));
    transform: translateY(-3px);
  }

  .navbar-collapse::before {
    content: "";
    display: block;
    width: 58px;
    height: 4px;
    margin: 0 0 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--saffron), var(--green));
    box-shadow: 0 8px 18px rgba(255, 143, 0, 0.22);
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    transform: translateX(0);
  }

  .navbar-collapse.drawer-closing {
    transform: translateX(-108%);
  }

  .navbar-collapse.collapsing {
    height: calc(100vh - 74px) !important;
  }

  .language-switcher {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .language-current {
    min-height: 36px;
    gap: 0.34rem;
    padding: 0.42rem 0.58rem;
    font-size: 0.78rem;
  }

  .language-current i:first-child {
    font-size: 0.82rem;
  }

  .language-current i:last-child {
    font-size: 0.62rem;
  }

  .language-options {
    right: 0;
    min-width: 138px;
    border-radius: 14px;
  }

  .language-option {
    padding: 0.56rem 0.68rem;
    font-size: 0.78rem;
  }

  .site-navbar .navbar-collapse {
    flex-basis: auto;
  }

  .navbar-nav {
    align-items: stretch !important;
    gap: 0.42rem;
  }

  .navbar .nav-link {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    min-height: 48px;
    padding: 0.78rem 0.92rem;
    border: 1px solid rgba(7, 31, 61, 0.06);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 10px 24px rgba(7, 31, 61, 0.06);
    opacity: 0;
    transform: translateX(-12px);
    transition:
      opacity 0.24s ease,
      transform 0.28s ease,
      color 0.2s ease,
      background 0.2s ease,
      border-color 0.2s ease;
  }

  .navbar .nav-link::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--green));
    box-shadow: 0 0 0 5px rgba(255, 143, 0, 0.08);
  }

  .navbar-collapse.show .nav-link,
  .navbar-collapse.collapsing .nav-link {
    opacity: 1;
    transform: translateX(0);
  }

  .navbar-collapse.show .nav-item:nth-child(1) .nav-link { transition-delay: 0.04s; }
  .navbar-collapse.show .nav-item:nth-child(2) .nav-link { transition-delay: 0.08s; }
  .navbar-collapse.show .nav-item:nth-child(3) .nav-link { transition-delay: 0.12s; }
  .navbar-collapse.show .nav-item:nth-child(4) .nav-link { transition-delay: 0.16s; }
  .navbar-collapse.show .nav-item:nth-child(5) .nav-link { transition-delay: 0.2s; }
  .navbar-collapse.show .nav-item:nth-child(6) .nav-link { transition-delay: 0.24s; }

  .navbar .nav-link:hover,
  .navbar .nav-link.active {
    border-color: rgba(255, 143, 0, 0.22);
    background: linear-gradient(90deg, rgba(255, 143, 0, 0.13), rgba(19, 138, 67, 0.09));
  }

  .navbar .nav-link::after {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.45rem;
  }

  .site-navbar .navbar-toggler {
    width: 28px;
    height: 22px;
    margin-left: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-navbar .navbar-toggler:focus {
    box-shadow: none;
  }

  .site-navbar .navbar-toggler-icon {
    width: 28px;
    height: 22px;
    background-image: linear-gradient(var(--navy), var(--navy));
    background-position: center;
    background-size: 28px 2px;
    background-repeat: no-repeat;
    position: relative;
    transition: background-size 0.18s ease;
  }

  .site-navbar .navbar-toggler-icon::before,
  .site-navbar .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
    transition: top 0.2s ease, bottom 0.2s ease, transform 0.2s ease;
  }

  .site-navbar .navbar-toggler-icon::before {
    top: 2px;
  }

  .site-navbar .navbar-toggler-icon::after {
    bottom: 2px;
  }

  .site-navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-size: 0 2px;
  }

  .site-navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 10px;
    transform: rotate(45deg);
  }

  .site-navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    bottom: 10px;
    transform: rotate(-45deg);
  }

  .hero {
    min-height: 84vh;
    padding-top: 0;
    text-align: center;
  }

  .hero-banner-slider,
  .hero-banner-slider .slick-list,
  .hero-banner-slider .slick-track,
  .hero-banner-slider .slick-slide,
  .hero-banner-slider .slick-slide > div,
  .hero-slide {
    min-height: 84vh;
  }

  .hero-slide {
    padding: 7.5rem 0 5rem;
  }

  .hero-content {
    margin: 0 auto;
    text-align: left;
  }

  .action-strip {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-intro {
    margin-left: 0;
    margin-right: auto;
  }

  .about-image-wrap {
    margin: 0 auto;
  }

  .social-feature-card img {
    min-height: 420px;
  }

  .social-work-hero {
    min-height: auto;
    padding: 8rem 0 4rem;
  }

  .social-work-hero-grid,
  .social-impact-grid {
    grid-template-columns: 1fr;
  }

  .social-work-visual {
    max-width: 560px;
    margin: 0 auto;
  }

  .social-work-stats {
    grid-template-columns: 1fr;
  }

  .social-work-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-work-gallery img:first-child,
  .social-work-gallery img:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .journey-header {
    align-items: center;
    flex-direction: column;
    margin-bottom: 2.2rem;
  }

  .journey-label {
    min-width: auto;
  }

  .journey-controls {
    position: static;
  }

  .journey-year-nav {
    grid-template-columns: repeat(6, 110px);
    overflow-x: auto;
    padding-bottom: 3rem;
    scrollbar-width: none;
  }

  .journey-year-nav::-webkit-scrollbar {
    display: none;
  }

  .journey-year-nav::before {
    left: 55px;
    right: auto;
    width: 610px;
  }

  .journey-display {
    grid-template-columns: 1fr;
  }

  .journey-image-panel img {
    min-height: 330px;
  }

  .journey-year-badge {
    font-size: 1.25rem;
  }

  .about-hero {
    min-height: 680px;
    padding: 8.5rem 0 4.5rem;
  }

  .about-hero::before {
    background:
      linear-gradient(90deg, rgba(7, 31, 61, 0.9), rgba(7, 31, 61, 0.62)),
      linear-gradient(180deg, rgba(7, 31, 61, 0.12), rgba(7, 31, 61, 0.84));
  }

  .about-profile-grid,
  .about-journey-layout {
    grid-template-columns: 1fr;
  }

  .about-profile-visual {
    min-height: auto;
  }

  .about-profile-main {
    min-height: 460px;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .political-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .political-content-grid,
  .political-story-grid {
    grid-template-columns: 1fr;
  }

  .political-vision-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-journey-gallery {
    grid-template-rows: repeat(2, 190px);
  }

  .about-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-updates-grid {
    grid-template-columns: 1fr;
  }

  .facebook-plugin-wrap {
    min-height: 620px;
  }

  .press-layout,
  .press-feature-card {
    grid-template-columns: 1fr;
  }

  .contact-details-layout {
    grid-template-columns: 1fr;
  }

  .sos-panel {
    grid-template-columns: 1fr;
  }

  .contact-visual-panel {
    min-height: auto;
  }

  .contact-visual-panel > img {
    min-height: 420px;
  }

  .press-board {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .popular-press {
    position: static;
    top: 96px;
    padding: 0.9rem;
  }

  .popular-press h3 {
    text-align: left;
    font-size: 1.1rem;
  }

  .press-feature-image img {
    min-height: 360px;
  }

  .press-stats {
    grid-template-columns: 1fr;
  }
}

@keyframes drawerOverlayIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .site-navbar .navbar-collapse {
    order: 2;
  }

  .site-navbar .language-switcher {
    order: 3;
  }
}

@media (max-width: 575.98px) {
  body {
    padding-bottom: 90px;
  }

  .section-padding {
    padding: 4rem 0;
  }

  .premium-breadcrumb {
    gap: 0.48rem;
    border-radius: 18px;
    padding: 0.62rem 0.7rem;
  }

  .premium-breadcrumb a,
  .premium-breadcrumb strong,
  .premium-breadcrumb span {
    font-size: 0.72rem;
  }

  .gallery-page-hero h1 {
    font-size: 1.85rem;
  }

  .gallery-page-hero p {
    font-size: 0.88rem;
  }

  .gallery-tabs-wrap {
    margin-bottom: 1.35rem;
  }

  .gallery-tabs {
    width: 100%;
  }

  .gallery-tabs .nav-item {
    flex: 1 1 0;
  }

  .gallery-tabs .nav-link {
    width: 100%;
    min-width: 0;
    padding: 0.72rem 0.78rem;
    font-size: 0.84rem;
  }

  .gallery-video-empty {
    min-height: 260px;
    border-radius: 18px;
    padding: 1.35rem;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-content {
    padding-left: 1rem;
  }

  .hero-content::before {
    width: 3px;
  }

  .hero h2 {
    font-size: 1.28rem;
  }

  .hero-subtitle,
  .hero-intro {
    font-size: 0.9rem;
  }

  .hero-slide {
    padding: 7rem 0 4.5rem;
  }

  .banner-slider .slick-prev,
  .banner-slider .slick-next {
    display: none !important;
  }

  .banner-slider .slick-dots {
    right: 50%;
    transform: translateX(50%);
    bottom: 24px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-logo-yuva {
    width: 40px;
    height: 40px;
  }

  .brand-logo-main {
    width: 27px;
    height: 27px;
  }

  .action-strip {
    grid-template-columns: 1fr;
  }

  .impact-row {
    margin-top: 0;
  }

  .navbar-brand strong {
    font-size: 1rem;
  }

  .navbar-brand .brand-role {
    font-size: 0.7rem;
  }

  .language-switcher {
    margin-right: 0;
  }

  .language-current {
    min-height: 34px;
    gap: 0.34rem;
    padding: 0.38rem 0.56rem;
    font-size: 0.76rem;
  }

  .language-current i:first-child {
    font-size: 0.78rem;
  }

  .language-current span {
    display: inline;
  }

  .language-current {
    width: auto;
    min-width: 54px;
    justify-content: center;
  }

  .premium-card {
    padding: 1.2rem;
  }

  .about-image-wrap {
    padding: 0.75rem;
    border-radius: 22px;
  }

  .about-image-slider,
  .about-main-img {
    border-radius: 16px;
  }

  .about-logo-card,
  .about-experience-card {
    position: static;
    width: 100%;
    margin-top: 0.8rem;
  }

  .about-logo-card {
    justify-content: center;
  }

  .about-content-card {
    padding: 1.25rem;
    border-radius: 20px;
  }

  .about-mini-stats {
    grid-template-columns: 1fr;
  }

  .social-feature-card {
    border-radius: 22px;
  }

  .social-feature-card img {
    min-height: 380px;
  }

  .social-feature-overlay {
    padding: 1.25rem;
  }

  .social-service-card {
    padding: 1.15rem;
  }

  .social-work-hero {
    padding: 7rem 0 3.5rem;
  }

  .social-work-hero-copy h1 {
    font-size: 1.65rem;
  }

  .social-work-hero-copy p {
    font-size: 0.86rem;
  }

  .social-work-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .social-work-hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .social-work-visual {
    padding: 0.65rem;
    border-radius: 22px;
  }

  .social-work-visual img {
    border-radius: 16px;
  }

  .social-work-badge {
    position: static;
    width: 100%;
    margin-top: 0.75rem;
  }

  .social-work-stats div,
  .social-process {
    border-radius: 20px;
  }

  .social-process-list div {
    grid-template-columns: 42px 1fr;
  }

  .social-process-list i {
    width: 42px;
    height: 42px;
  }

  .social-work-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .press-feature-card {
    border-radius: 22px;
  }

  .contact-details-panel,
  .contact-visual-panel {
    border-radius: 22px;
  }

  .contact-detail-card {
    align-items: flex-start;
    min-height: auto;
    padding: 0.9rem;
    border-radius: 18px;
  }

  .contact-detail-card i {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 15px;
  }

  .sos-panel,
  .sos-tool {
    border-radius: 22px;
  }

  .sos-action-grid {
    grid-template-columns: 1fr;
  }

  .sos-panic-button {
    width: 104px;
    height: 104px;
  }

  .contact-visual-panel {
    padding: 0.65rem;
  }

  .contact-visual-panel > img {
    min-height: 320px;
    border-radius: 16px;
  }

  .contact-visual-card {
    position: static;
    margin-top: 0.75rem;
    border-radius: 16px;
  }

  .press-feature-image img {
    min-height: 300px;
  }

  .press-feature-content {
    padding: 1.25rem;
  }

  .press-source {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .press-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .press-mini-card {
    border-radius: 18px;
    padding: 1rem;
  }

  .press-date {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 15px;
  }

  .about-hero {
    min-height: 620px;
    padding: 7.8rem 0 3.6rem;
  }

  .about-hero-media img {
    object-position: 62% center;
  }

  .about-hero-text {
    font-size: 0.96rem;
  }

  .about-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-profile-copy,
  .about-profile-visual {
    border-radius: 22px;
  }

  .about-profile-main {
    min-height: 390px;
    border-radius: 16px;
  }

  .about-profile-badge {
    position: static;
    margin: 0.8rem 0 0;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.92);
  }

  .about-profile-badge span {
    color: var(--muted);
  }

  .about-signature-row,
  .about-values-grid,
  .political-info-grid,
  .about-journey-gallery {
    grid-template-columns: 1fr;
  }

  .political-info-card {
    min-height: auto;
  }

  .political-panel-head {
    display: block;
  }

  .political-table > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .political-table > div:first-child {
    display: none;
  }

  .political-table span {
    display: block;
  }

  .about-journey-gallery {
    grid-template-rows: none;
  }

  .about-journey-gallery img,
  .about-journey-gallery img:first-child {
    grid-row: auto;
    min-height: 250px;
  }

  .about-value-card {
    min-height: auto;
  }

  .about-cta-section {
    padding-bottom: 4rem;
  }

  .social-update-card {
    border-radius: 18px;
    padding: 0.75rem;
  }

  .facebook-plugin-wrap {
    border-radius: 18px;
  }

  .facebook-plugin-wrap {
    width: 100%;
    min-height: 620px;
    padding: 0.55rem;
  }

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

  .press-board {
    grid-template-columns: 1fr;
  }

  .popular-press {
    position: static;
  }

  .press-news-card h3 {
    font-size: 1.22rem;
  }

  .popular-press article {
    grid-template-columns: 86px 1fr;
    border-radius: 16px;
    padding-right: 0.8rem;
  }

  .popular-press img {
    width: 86px;
    height: 86px;
    margin-left: 0;
  }

  .popular-press h4,
  .popular-press span {
    text-align: left;
  }

  .journey-label {
    font-size: 0.9rem;
  }

  .journey-header h2 {
    font-size: 1.7rem;
  }

  .journey-controls button {
    width: 40px;
    height: 40px;
  }

  .journey-year-nav {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .journey-display {
    border-radius: 22px;
  }

  .journey-image-panel img {
    min-height: 250px;
  }

  .journey-content-panel {
    padding: 4.4rem 1.25rem 1.35rem;
  }

  .journey-year-badge {
    font-size: 1.05rem;
    padding: 0.8rem 1rem;
  }

  .mobile-bottom-tabs {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 1050;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.12rem;
    min-height: 72px;
    padding: 0.46rem 0.45rem 0.4rem;
    border: 1px solid rgba(7, 31, 61, 0.06);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
      0 18px 42px rgba(7, 31, 61, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(22px);
  }

  .mobile-sos-float {
    position: fixed;
    right: 14px;
    bottom: 104px;
    z-index: 1060;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background:
      radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.28), transparent 30%),
      linear-gradient(145deg, #df1f1f, #8f1515);
    box-shadow: 0 16px 34px rgba(143, 21, 21, 0.36);
  }

  .mobile-sos-float img {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  .mobile-sos-float:hover,
  .mobile-sos-float:focus {
    color: #ffffff;
    transform: translateY(-2px);
  }

  .mobile-bottom-tabs a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.22rem;
    min-height: 58px;
    color: #a4a6ad;
    border-radius: 18px;
    font-size: 0.64rem;
    font-weight: 800;
    line-height: 1.1;
    background: transparent;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  }

  .mobile-bottom-tabs i {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    color: #bec1c9;
    border-radius: 13px;
    font-size: 0.95rem;
    background: linear-gradient(145deg, #f4f5f8, #e3e5eb);
    box-shadow:
      8px 10px 22px rgba(7, 31, 61, 0.08),
      inset 0 -8px 16px rgba(7, 31, 61, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  }

  .mobile-bottom-tabs a.active,
  .mobile-bottom-tabs a:hover {
    color: var(--saffron-dark);
    background: transparent;
    box-shadow: none;
    transform: translateY(-4px);
  }

  .mobile-bottom-tabs a.active i,
  .mobile-bottom-tabs a:hover i {
    color: var(--white);
    background: var(--white);
    background:
      radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.45), transparent 24%),
      linear-gradient(135deg, var(--saffron), var(--gold) 48%, var(--green));
    box-shadow:
      0 10px 22px rgba(255, 143, 0, 0.3),
      7px 7px 0 rgba(19, 138, 67, 0.08),
      -6px -6px 0 rgba(255, 143, 0, 0.1);
    transform: scale(1.08) rotate(-4deg);
  }

  .mobile-bottom-tabs span {
    white-space: nowrap;
    letter-spacing: -0.2px;
  }

  .site-footer {
    padding-bottom: 6.5rem;
  }

  .footer-brand-card {
    width: 100%;
  }

  .copyright {
    display: grid;
    text-align: center;
  }
}
