:root {
  --ink: #211841;
  --muted: #6b657c;
  --brand: #321174;
  --brand-dark: #210852;
  --accent: #f36b13;
  --green: #128342;
  --line: #e8e5ef;
  --soft: #f8f7fb;
  --white: #ffffff;
  --shadow: 0 12px 32px rgba(28, 16, 70, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Noto Sans Devanagari", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  color: var(--white);
  background: linear-gradient(90deg, #22085b, #341078);
  font-weight: 700;
  font-size: 14px;
}

.topbar-inner,
.nav-inner,
.section-head,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar p {
  margin: 8px 0;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-inner {
  min-height: 104px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 290px;
}

.brand strong {
  display: block;
  color: var(--brand);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--green);
  font-weight: 800;
  margin-top: 3px;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  flex: 0 0 auto;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px #0b8d47;
}

.camera-shape {
  width: 120px;
  height: 42px;
  border-radius: 8px 8px 6px 6px;
  background: linear-gradient(135deg, #111, #555);
}

.camera-shape::before,
.camera-shape::after {
  content: "";
  position: absolute;
  background: #111;
}

.camera-shape::before {
  width: 48px;
  height: 26px;
  top: 17px;
  left: 15px;
  border-radius: 14px 14px 4px 4px;
}

.camera-shape::after {
  width: 12px;
  height: 12px;
  top: 27px;
  left: 30px;
  border: 3px solid #777;
  border-radius: 50%;
}

.brand-letters {
  position: absolute;
  right: -22px;
  color: #128342;
  font-weight: 900;
  line-height: 1.05;
  writing-mode: vertical-rl;
}

.brand-letters::first-letter {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 0;
  white-space: nowrap;
}

.nav-links .active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.member-btn,
.primary-btn,
.submit-btn {
  color: #fff;
  background: var(--brand);
  border-radius: 4px;
  font-weight: 800;
}

.member-btn {
  padding: 12px 18px !important;
  border-bottom: 0 !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--brand);
  border: 0;
  border-radius: 4px;
  font-size: 22px;
}

.breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 22px 0 14px;
  color: #403758;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.05));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 38px 42px;
  color: #fff;
}

.date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--brand);
  border-radius: 4px;
  font-weight: 800;
}

.hero h1 {
  margin: 18px 0 8px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-btn,
.outline-btn,
.submit-btn {
  min-height: 44px;
  padding: 12px 28px;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font: inherit;
}

.primary-btn {
  background: var(--accent);
}

.outline-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  padding-top: 24px;
}

.main-column {
  min-width: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(31, 17, 76, 0.05);
  padding: 22px;
}

.panel h2 {
  position: relative;
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 22px;
  line-height: 1.2;
}

.panel h2::after,
.similar-events h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 10px;
  background: var(--accent);
}

.detail-list {
  margin: 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list div:last-child {
  border-bottom: 0;
}

.detail-list dt {
  color: #4f4762;
  font-weight: 700;
}

.detail-list dd {
  margin: 0;
  color: #211841;
  font-weight: 600;
}

.check-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 8px 0;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 12px;
}

.speakers,
.gallery {
  margin-top: 18px;
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.speaker-grid article {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 12px 14px;
}

.speaker-grid img {
  width: 130px;
  height: 120px;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 10px;
  border-radius: 8px;
}

.speaker-grid h3,
.event-card h3 {
  margin: 0;
  color: var(--brand);
  font-size: 17px;
}

.speaker-grid p,
.event-card p {
  margin: 2px 0;
  color: #4f4762;
  font-weight: 600;
}

.tabs {
  display: inline-flex;
  padding: 3px;
  background: #eeeeee;
  border-radius: 5px;
}

.tabs button {
  min-width: 72px;
  padding: 8px 12px;
  border: 0;
  border-radius: 4px;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
}

.tabs .active {
  color: #fff;
  background: var(--brand);
}

.gallery-row {
  display: grid;
  grid-template-columns: 34px repeat(4, minmax(0, 1fr)) 34px;
  gap: 16px;
  align-items: center;
}

.gallery-row img {
  width: 100%;
  height: 94px;
  object-fit: cover;
  border-radius: 6px;
}

.round-control {
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--brand);
  border: 0;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}

.side-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.join-panel form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: #403758;
  font-weight: 800;
}

label span {
  color: #df2b2b;
}

input,
select {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}

.consent input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
}

.submit-btn {
  width: 100%;
  background: var(--green);
}

/*==============================
 Footer Social Icons
==============================*/

.footer-social{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
}

.footer-social a{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    width:42px;
    height:42px;

    text-decoration:none;
    border-radius:50%;
background-color: #043372;
    transition:.3s;
}

/* ICON */

.footer-social a i{
    font-size:26px !important;
    display:block;
    line-height:1;
}

/* Colors */

.footer-social a:nth-child(1) i{
    color:#1877F2;
}

.footer-social a:nth-child(2) i{
    color:#ffffff;
}

.footer-social a:nth-child(3) i{
    color:#ff0000;
}

.footer-social a:nth-child(4) i{
    color:#E1306C;
}

.footer-social a:hover{
    transform:scale(1.15);
}
/* Mobile */
@media(max-width:576px){

.footer-social{
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    font-size:18px;
}

.footer-social a i{
    font-size:18px;
}

}

.map-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid #cfd7d4;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.78) 0 1px, transparent 1px 62px),
    linear-gradient(0deg, rgba(255,255,255,0.78) 0 1px, transparent 1px 54px),
    linear-gradient(135deg, #dff1ec, #f3ede1 48%, #ddeaf5);
  background-size: 62px 100%, 100% 54px, 100% 100%;
}

.map-card strong,
.map-card span {
  position: relative;
  z-index: 1;
  display: block;
}

.map-pin {
  position: absolute;
  left: 54%;
  top: 48%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: #ef3d2f;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  font-size: 22px;
}

.map-pin::first-letter {
  transform: rotate(45deg);
}

.similar-events {
  padding: 26px 0 30px;
}

.similar-events h2 {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 22px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.event-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(31, 17, 76, 0.05);
}

.event-card img {
  width: 100%;
  height: 138px;
  object-fit: cover;
}

.event-card h3,
.event-card p,
.event-card a {
  margin-left: 16px;
  margin-right: 16px;
}

.event-card h3 {
  margin-top: 14px;
}

.event-card a {
  display: inline-flex;
  margin-top: 12px;
  margin-bottom: 16px;
  padding: 7px 13px;
  color: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 4px;
  font-weight: 800;
}

.event-date {
  position: absolute;
  left: 14px;
  top: 0;
  display: grid;
  place-items: center;
  width: 54px;
  min-height: 78px;
  color: #fff;
  background: var(--brand);
  border-radius: 0 0 6px 6px;
  text-align: center;
  font-weight: 900;
  line-height: 1.05;
}

.site-footer {
  color: #fff;
  background: linear-gradient(120deg, #210852, #351179);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 1fr 1fr;
  gap: 32px;
  padding: 32px 0;
}

.footer-brand strong {
  color: #fff;
  font-size: 21px;
}

.footer-brand small {
  color: #77dc91;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
}

.about-page {
  background: #fff;
}

.about-hero {
  position: relative;
  min-height: 330px;
  overflow: hidden;
}

.about-hero img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center;
}

.about-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(40, 10, 92, 0.94) 0%, rgba(48, 14, 104, 0.78) 38%, rgba(241, 101, 14, 0.62) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
}

.about-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}

.about-hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1.05;
  letter-spacing: 0;
}

.about-hero-content p {
  width: min(610px, 100%);
  margin: 0;
  font-size: clamp(19px, 2.4vw, 27px);
  line-height: 1.6;
  font-weight: 500;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.75fr;
  gap: 34px;
  padding: 28px 0 20px;
}

.about-copy {
  padding-right: 34px;
  border-right: 1px solid var(--line);
}

.about-copy h2,
.principles h2 {
  margin: 0 0 20px;
  color: var(--brand);
  font-size: 27px;
  line-height: 1.18;
}

.about-copy h2::after,
.principles h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 10px;
  background: var(--accent);
}

.about-copy p {
  margin: 0 0 17px;
  color: #1f1830;
  font-size: 17px;
  font-weight: 600;
}

.about-cta {
  display: inline-flex;
  margin-top: 8px;
  background: var(--brand);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.principle-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 116px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(31, 17, 76, 0.04);
}

.principle-icon,
.stat-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 900;
}

.principle-icon.purple,
.stat-icon.purple {
  background: radial-gradient(circle at 34% 28%, #6841a7, var(--brand-dark));
}

.principle-icon.green,
.stat-icon.green {
  background: radial-gradient(circle at 34% 28%, #20a45a, #086d35);
}

.principle-icon.orange,
.stat-icon.orange {
  background: radial-gradient(circle at 34% 28%, #ff861f, #ef5d09);
}

.principle-card h3 {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 19px;
  line-height: 1.2;
}

.principle-card:nth-child(3n) h3,
.principle-card:nth-child(5) h3 {
  color: var(--accent);
}

.principle-card:nth-child(1) h3,
.principle-card:nth-child(6) h3 {
  color: var(--brand);
}

.principle-card p {
  margin: 0;
  color: #292139;
  font-weight: 600;
  line-height: 1.5;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  margin-bottom: 12px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(31, 17, 76, 0.04);
}

.stats-strip article {
  display: grid;
  grid-template-columns: 68px 1fr;
  column-gap: 16px;
  align-items: center;
  min-height: 70px;
  padding: 0 20px;
  border-right: 1px solid var(--line);
}

.stats-strip article:last-child {
  border-right: 0;
}

.stats-strip strong {
  display: block;
  color: var(--brand);
  font-size: 24px;
  line-height: 1.1;
}

.stats-strip article:nth-child(2) strong,
.stats-strip article:nth-child(5) strong {
  color: var(--green);
}

.stats-strip article:nth-child(3) strong {
  color: var(--accent);
}

.stats-strip small {
  display: block;
  color: #1f1830;
  font-size: 15px;
  font-weight: 700;
}

.leadership-page {
  background: #fff;
}

.leadership-hero {
  position: relative;
  min-height: 285px;
  overflow: hidden;
}

.leadership-hero img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  object-position: center;
}

.leadership-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}

.leadership-hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: 0;
}

.leadership-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
}

.leadership-breadcrumb span:nth-child(2) {
  color: var(--accent);
  font-size: 28px;
}

.leadership-section {
  padding: 24px 0 6px;
}

.leadership-section h2,
.leadership-tools h2 {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 28px;
  line-height: 1.15;
}

.leadership-section h2::after,
.leadership-tools h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 10px;
  background: var(--accent);
}

.national-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.1fr 1.1fr 1.1fr;
  gap: 24px;
}

.national-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 150px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(31, 17, 76, 0.05);
}

.national-card img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  background: #f1f1f1;
}

.national-card h3,
.state-card h3 {
  margin: 0 0 4px;
  color: var(--brand);
  font-size: 20px;
  line-height: 1.2;
}

.national-card strong,
.state-card p {
  display: block;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
}

.national-card p {
  margin: 12px 0 0;
  color: #2f293d;
  font-weight: 600;
  line-height: 1.6;
}

.leadership-tools {
  display: grid;
  grid-template-columns: 1fr minmax(420px, 0.55fr);
  align-items: end;
  gap: 24px;
}

.leader-filters {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.leader-search {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 0;
}

.leader-search input {
  border-radius: 6px 0 0 6px;
}

.leader-search button {
  min-height: 42px;
  color: #fff;
  background: var(--brand);
  border: 0;
  border-radius: 0 6px 6px 0;
  font-size: 22px;
  cursor: pointer;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.state-card {
  display: grid;
  justify-items: center;
  min-height: 154px;
  padding: 14px 16px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(31, 17, 76, 0.05);
}

.state-card img {
  width: 86px;
  height: 86px;
  margin-bottom: 10px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  background: #e9e9e9;
}

.state-card h3 {
  font-size: 18px;
}

.state-card p {
  margin: 0;
}

.center-action {
  display: flex;
  justify-content: center;
  padding: 12px 0 20px;
}

.vision-page {
  background: #fff;
}

.manifesto-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  padding: 26px 0 32px;
}

.pledges h2,
.manifesto-points h2 {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 27px;
  line-height: 1.15;
}

.pledges h2::after,
.manifesto-points h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 10px;
  background: var(--accent);
}

.pledge-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.pledge-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 168px;
  padding: 18px 14px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(31, 17, 76, 0.05);
}

.pledge-card .principle-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 10px;
}

.pledge-card h3 {
  margin: 0 0 6px;
  color: var(--brand);
  font-size: 19px;
  line-height: 1.2;
}

.pledge-card:nth-child(2) h3,
.pledge-card:nth-child(5) h3,
.pledge-card:nth-child(7) h3,
.pledge-card:nth-child(10) h3 {
  color: var(--green);
}

.pledge-card:nth-child(3) h3,
.pledge-card:nth-child(6) h3,
.pledge-card:nth-child(9) h3 {
  color: var(--accent);
}

.pledge-card p {
  margin: 0;
  color: #1f1830;
  font-weight: 600;
  line-height: 1.45;
}

.manifesto-download {
  display: flex;
  justify-content: center;
  padding-top: 16px;
}

.manifesto-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.manifesto-points ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.manifesto-points li {
  position: relative;
  min-height: 34px;
  padding: 8px 14px 8px 46px;
  background: linear-gradient(90deg, #f2f2f2, #fafafa);
  border-radius: 4px;
  color: #221a31;
  font-weight: 700;
}

.manifesto-points li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 8px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.manifesto-card {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 22px;
  background: #f6f6f6;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(31, 17, 76, 0.08);
}

.book-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 190px;
  padding: 20px 14px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 8%, #fff 0 34px, transparent 35px),
    linear-gradient(145deg, #ff7d14 0 30%, #fff 30% 72%, #0a8d45 72% 100%);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
}

.book-cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.25) 25%, transparent 25% 50%, rgba(0, 0, 0, 0.18) 50% 75%, transparent 75%);
  background-size: 18px 18px;
  opacity: 0.55;
}

.book-logo {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: var(--green);
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.book-cover strong {
  color: var(--brand);
  font-size: 21px;
  line-height: 1.1;
}

.book-cover small {
  margin-top: 10px;
  color: var(--green);
  font-weight: 800;
}

.manifesto-card h2 {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 26px;
  line-height: 1.18;
}

.manifesto-card h2::first-line {
  color: var(--green);
}

.manifesto-card p {
  margin: 0 0 18px;
  color: #211841;
  font-weight: 700;
}

.news-page {
  background: #fff;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 42px;
  padding: 22px 0 28px;
}

.news-main h2,
.news-widget h2 {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 25px;
  line-height: 1.15;
}

.news-main h2::after,
.news-widget h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 10px;
  background: var(--accent);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.news-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(31, 17, 76, 0.05);
}

.news-image {
  position: relative;
}

.news-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.news-image span {
  position: absolute;
  left: 8px;
  top: 8px;
  padding: 5px 9px;
  color: #fff;
  background: var(--brand);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

.news-body {
  padding: 12px 14px 14px;
}

.news-body h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.news-body p {
  margin: 0 0 10px;
  color: #51495f;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.news-body a {
  display: flex;
  justify-content: flex-end;
  color: var(--brand);
  font-weight: 800;
  font-size: 14px;
}

.news-more {
  padding-bottom: 0;
}

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.news-widget {
  min-width: 0;
}

.category-list {
  overflow: hidden;
  background: #f9f9fb;
  border: 1px solid #efedf5;
  border-radius: 5px;
}

.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  padding: 8px 14px;
  border-bottom: 1px solid #e8e5ef;
  color: #292139;
  font-weight: 700;
}

.category-list a:last-child {
  border-bottom: 0;
}

.category-list strong {
  min-width: 28px;
  padding: 2px 7px;
  color: #fff;
  background: var(--brand);
  border-radius: 9px;
  text-align: center;
  font-size: 12px;
}

.events-page {
  background: #fff;
}

.events-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  padding: 22px 0 28px;
}

.events-main h2,
.events-widget h2 {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 25px;
  line-height: 1.15;
}

.events-main h2::after,
.events-widget h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 10px;
  background: var(--accent);
}

.event-list {
  display: grid;
  gap: 18px;
}

.event-list-card {
  display: grid;
  grid-template-columns: 250px 58px minmax(0, 1fr) 112px;
  gap: 26px;
  align-items: center;
  min-height: 120px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(31, 17, 76, 0.05);
}

.event-list-card > img {
  width: 250px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
}

.event-list-card time {
  display: grid;
  overflow: hidden;
  width: 58px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
  font-weight: 900;
}

.event-list-card time strong {
  display: block;
  padding: 6px 0;
  color: #fff;
  background: var(--brand);
  font-size: 25px;
  line-height: 1;
}

.event-list-card time span {
  display: block;
  padding: 8px 0;
  color: #1f1830;
  background: #fff;
  font-size: 13px;
  line-height: 1.25;
}

.event-list-content h3 {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 20px;
  line-height: 1.2;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 8px;
  color: #2f2549;
  font-size: 13px;
  font-weight: 800;
}

.event-list-content p:last-child {
  margin: 0;
  color: #41394e;
  font-size: 14px;
  font-weight: 600;
}

.event-detail-btn {
  justify-self: end;
  padding: 9px 16px;
  color: #fff;
  background: var(--brand);
  border-radius: 4px;
  font-weight: 800;
  white-space: nowrap;
}

.events-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.events-widget {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(31, 17, 76, 0.05);
}

.search-widget {
  display: grid;
  gap: 12px;
}

.event-filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.month-list {
  display: grid;
  gap: 9px;
}

.month-list a {
  display: grid;
  grid-template-columns: 1fr auto 16px;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #2a223a;
  font-weight: 700;
}

.month-list strong {
  font-size: 13px;
}

.month-list em {
  color: var(--brand);
  font-style: normal;
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 1040px) {
  .nav-inner {
    min-height: 86px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .page-grid,
  .info-grid,
  .event-grid,
  .footer-grid,
  .about-intro-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stats-strip article {
    border: 1px solid var(--line);
    border-radius: 8px;
  }

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

  .state-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .leadership-tools {
    grid-template-columns: 1fr;
  }

  .manifesto-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pledge-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .event-list-card {
    grid-template-columns: 220px 58px minmax(0, 1fr);
  }

  .event-detail-btn {
    grid-column: 3;
  }

  .side-column {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .join-panel {
    grid-row: span 2;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .topbar-inner,
  .section-head,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .top-actions {
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    font-size: 12px;
  }

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

  .hero,
  .hero img {
    min-height: 360px;
  }

  .hero-content {
    padding: 24px;
  }

  .hero p {
    font-size: 17px;
  }

  .page-grid,
  .info-grid,
  .speaker-grid,
  .event-grid,
  .footer-grid,
  .side-column,
  .about-intro-grid,
  .principle-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .about-hero img {
    min-height: 420px;
  }

  .about-copy {
    padding-right: 0;
    border-right: 0;
  }

  .principle-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .principle-icon,
  .stat-icon {
    width: 58px;
    height: 58px;
    font-size: 28px;
  }

  .leadership-hero,
  .leadership-hero img {
    min-height: 310px;
  }

  .national-grid,
  .state-grid,
  .leader-filters,
  .pledge-grid,
  .news-grid,
  .event-list-card,
  .event-filter-row {
    grid-template-columns: 1fr;
  }

  .event-list-card > img {
    width: 100%;
    height: 180px;
  }

  .event-list-card time,
  .event-detail-btn {
    justify-self: start;
  }

  .event-detail-btn {
    grid-column: auto;
  }

  .manifesto-card {
    grid-template-columns: 1fr;
  }

  .book-cover {
    max-width: 180px;
  }

  .national-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .national-card img {
    width: 112px;
    height: 112px;
  }

  .gallery-row {
    grid-template-columns: 34px 1fr 34px;
  }

  .gallery-row img:nth-of-type(n+2) {
    display: none;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
/* HOME PAGE */

/* Brand Logo Styling */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 290px;
}

.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  flex-shrink: 0;
}

.brand-logo-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid var(--accent); /* Orange */
  background: #fff;
  box-shadow: 0 0 0 1.5px #128342; /* Green */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
}

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

.brand-letters-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.05;
  font-family: 'Noto Sans Devanagari', Arial, sans-serif;
  margin-left: 2px;
}

.brand-letters-vertical .j {
  color: #f36b13; /* Orange */
}

.brand-letters-vertical .p {
  color: #128342; /* Green */
}

.brand-letters-vertical .i {
  color: #321174; /* Purple/Indigo */
}

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

.brand-name-group strong {
  display: block;
  color: var(--brand);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.15;
  font-weight: 800;
}

.brand-name-group small {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  margin-top: 2px;
}

/* Active Nav Link Custom Color */
.nav-links a.active {
  color: var(--accent) !important;
  border-bottom: 2px solid var(--accent);
}

.nav-links a:hover {
  color: var(--accent);
}

/* Hero Section / Flag Banner */
.hero-slider {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #fff;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #f36b13 0%,
    #f36b13 28%,
    #ffffff 28%,
    #ffffff 56%,
    #128342 56%,
    #128342 80%,
    #321174 80%,
    #321174 100%
  );
}

/* Leader Styles */
.hero-leader-container {
  position: absolute;
  left: 3%;
  bottom: 0;
  height: 92%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.hero-leader {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.hero-leader-info {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: max-content;
  z-index: 4;
}

.leader-name {
  color: #e02424; /* Red */
  font-size: 25px;
  font-weight: 900;
  text-shadow:
    -2px -2px 0 #fff,
     2px -2px 0 #fff,
    -2px  2px 0 #fff,
     2px  2px 0 #fff;
  margin-bottom: 2px;
  white-space: nowrap;
}

.leader-title {
  color: #0b8d47; /* Green */
  font-size: 17px;
  font-weight: 800;
  text-shadow:
    -1.5px -1.5px 0 #fff,
     1.5px -1.5px 0 #fff,
    -1.5px  1.5px 0 #fff,
     1.5px  1.5px 0 #fff;
  white-space: nowrap;
}

/* Slogan Center Text */
.hero-center-text {
  position: absolute;
  left: 45%;
  top: 35px;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-center-text h1 {
  color: #fff;
  font-size: 68px;
  line-height: 0.95;
  font-weight: 900;
  margin: 0;
  text-shadow:
    3px 3px 0 #000,
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000;
}

/* Right Side Tyre & JPI */
.hero-symbol {
  position: absolute;
  right: 16%;
  top: 35px;
  z-index: 2;
}

.hero-symbol img {
  width: 250px;
  height: auto;
  display: block;
}

.hero-jpi {
  position: absolute;
  right: 6%;
  top: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 55px;
  font-weight: 900;
  line-height: 1.05;
  font-family: Arial, sans-serif;
  z-index: 2;
  text-shadow:
    2.5px 2.5px 0 #000,
    -1px -1px 0 #000;
}

.hero-jpi .j {
  color: #f36b13; /* Orange */
}

.hero-jpi .p {
  color: #128342; /* Green */
}

.hero-jpi .i {
  color: #fff; /* White */
}

/* Bottom Purple Bar */
.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #321174; /* Purple */
  padding: 8px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.hero-title {
  color: #ffe600; /* Yellow */
  font-size: 44px;
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
  text-shadow:
    2.5px 2.5px 0 #000,
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000;
  letter-spacing: 1px;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  background: transparent;
  cursor: pointer;
  display: inline-block;
}

.slider-dots .dot.active {
  background: #fff;
}

/* Side Arrows */
.slider-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.05);
}

.left-arrow {
  left: 20px;
}

.right-arrow {
  right: 20px;
}

/* 4-Column Grid Styling */
.home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid #ddd;
}

.home-box {
  background: #fff;
  padding: 24px;
  border: 1px solid #e5e5e5;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.box-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ddd;
}

.box-title.orange {
  color: #f36b13;
  border-bottom-color: #f36b13;
}

.box-title.green {
  color: #128342;
  border-bottom-color: #128342;
}

.box-title.purple {
  color: #321174;
  border-bottom-color: #321174;
}

/* Column 1: About Us Circle icon */
.about-icon-circle {
  width: 76px;
  height: 76px;
  background: #321174;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto 20px;
}

.about-icon-circle i {
  color: #fff;
  font-size: 30px;
}

.home-box p {
  color: #211841;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: auto; /* Push buttons to the bottom */
}

/* Column 2: News items */
.news-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  border-bottom: 1px dashed #eee;
  padding-bottom: 12px;
}

.news-item:last-of-type {
  border-bottom: none;
  margin-bottom: auto;
}

.news-item img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.news-item-content {
  flex: 1;
}

.news-item-content h5 {
  font-size: 13.5px;
  font-weight: 700;
  margin: 0 0 3px;
  color: #211841;
  line-height: 1.35;
}

.news-item-content small {
  color: #6b657c;
  font-size: 11px;
  display: block;
}

.news-read-more {
  color: #128342;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  align-self: center;
}

.news-read-more:hover {
  text-decoration: underline;
}

/* Column 3: Event items */
.event-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  border-bottom: 1px dashed #eee;
  padding-bottom: 12px;
}

.event-item:last-of-type {
  border-bottom: none;
  margin-bottom: auto;
}

.event-date {
  width: 54px;
  background: #f1f3f5;
  border-radius: 6px;
  text-align: center;
  padding: 6px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.event-date span {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #211841;
}

.event-date {
  font-size: 9.5px;
  font-weight: 700;
  color: #321174;
}

.event-details {
  flex: 1;
}

.event-details h5 {
  font-size: 13.5px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #211841;
}

.event-details p {
  margin: 0;
  font-size: 11.5px;
  color: #51495f;
  line-height: 1.35;
}

.event-venue {
  font-weight: 600;
}

.event-time {
  color: #f36b13 !important;
  font-weight: 700;
  margin-top: 1px;
}

/* Column 4: Form Input Groups with Icons */
.home-box form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.input-group {
  position: relative;
  margin-bottom: 12px;
  width: 100%;
}

.input-group:last-of-type {
  margin-bottom: auto; /* Push submit button to the bottom */
}

.input-group input,
.input-group select {
  width: 100%;
  height: 40px;
  padding: 8px 12px 8px 36px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13.5px;
  outline: none;
  background-color: #fff;
  box-sizing: border-box;
  color: #211841;
  font-family: inherit;
}

.input-group select {
  padding-left: 12px; /* Dropdowns don't require user icons inside */
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b657c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 13px;
  pointer-events: none;
}

/* Color Buttons Styling */
.purple-btn,
.green-btn,
.orange-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px 16px;
  border-radius: 4px;
  color: #fff !important;
  font-weight: 700;
  font-size: 13.5px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  box-sizing: border-box;
  margin-top: 12px;
}

.purple-btn {
  background: #321174;
}

.green-btn {
  background: #128342;
}

.orange-btn {
  background: #f36b13;
}

.purple-btn:hover,
.green-btn:hover,
.orange-btn:hover {
  opacity: 0.9;
}



.facebook-link {
  background: #3b5998 !important;
}

.twitter-link {
  background: #1da1f2 !important;
}

.youtube-link {
  background: #cd201f !important;
}

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

.footer-grid i {
  margin-right: 8px;
  color: var(--accent);
}

.footer-grid p {
  display: flex;
  align-items: center;
}

/* Media Queries for Grid Layouts */
@media (max-width: 1040px) {
  .home-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-slider {
    height: 420px;
  }
  
  .hero-center-text h1 {
    font-size: 52px;
  }
  
  .hero-symbol img {
    width: 180px;
  }
  
  .hero-jpi {
    font-size: 42px;
  }
  
  .hero-title {
    font-size: 32px;
  }
}

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

  .hero-slider {
    height: 360px;
  }

  .hero-leader-container {
    left: 2px;
    height: 85%;
  }

  .leader-name {
    font-size: 18px;
  }

  .leader-title {
    font-size: 13px;
  }

  .hero-center-text {
    left: 55%;
    top: 25px;
  }

  .hero-center-text h1 {
    font-size: 40px;
  }

  .hero-symbol {
    display: none; /* Hide complex symbols on very small screens */
  }

  .hero-jpi {
    right: 15px;
    font-size: 34px;
  }

  .hero-title {
    font-size: 24px;
  }
}

.heroButtons a{

transition:.3s;

}

.heroButtons a:hover{

transform:translateY(-3px);

}

.dot{

width:12px;

height:12px;

border-radius:50%;

background:#ffffff66;

cursor:pointer;

transition:.3s;

display:block;

}

.dot.active{

background:#ff7a00;

transform:scale(1.3);

}

/* Tablet */

@media(max-width:991px){

#heroContainer{

flex-direction:column;

text-align:center;

}

.heroButtons{

justify-content:center !important;

}

.heroStats{

justify-content:center !important;

}

#heroSection{

padding:60px 25px !important;

}

}

/* Mobile */

@media(max-width:768px){

#heroSection{

padding:40px 18px !important;

min-height:auto !important;

}

h1{

font-size:42px !important;

line-height:48px !important;

}

p{

font-size:16px !important;

}

.heroStats{

display:grid !important;

grid-template-columns:repeat(2,1fr);

gap:12px !important;

}

#prevBtn,#nextBtn{

display:none;

}

#heroDots{

bottom:25px !important;

}

}

/* Small Mobile */

@media(max-width:480px){

.heroStats{

grid-template-columns:1fr;

}

h1{

font-size:34px !important;

}

}

}

/*==========================
 NEWS SECTION
==========================*/

.news-section{
    width:100%;
    padding:60px 5%;
    background:#2f3151;
    box-sizing:border-box;
}

.news-container{
    display:grid;
    grid-template-columns:1.1fr 1fr .9fr;
    gap:30px;
    align-items:start;
}

/* Cards */

.news-box,
.news-center,
.social-box{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.title{
    background:#17356f;
    color:#fff;
    padding:14px 18px;
    font-size:18px;
    font-weight:700;
}

/* LEFT */

.news-header{
    display:flex;
}

.news-header button{
    flex:1;
    border:0;
    background:#2954a4;
    color:#fff;
    padding:15px;
    cursor:pointer;
    font-weight:600;
}

.news-header button.active,
.news-header button:hover{
    background:#17356f;
}

.news-body{
    padding:18px;
    max-height:650px;
    overflow-y:auto;
}

.news-image{
    width:100%;
    display:block;
    border-radius:6px;
}

.news-content h3{
    font-size:26px;
    margin:18px 0 10px;
}

.news-content p{
    line-height:28px;
}

.news-list{
    padding:18px 0;
    border-top:1px solid #ddd;
}

/* CENTER */

.event-box,
.live-box{
    width:100%;
    overflow:hidden;
}

.event-box img,
.live-box img{
    width:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    max-width:100%;
}

/* REMOVE ALL IMAGE SCROLL */

.event-box img,
.live-box img,
.social-scroll img{
    overflow:hidden;
    vertical-align:middle;
}

/* RIGHT */

.social-scroll{

    max-height:650px;

    overflow-y:auto;

    overflow-x:hidden;

    padding:15px;

}

.social-scroll img{

    width:100%;

    display:block;

    margin-bottom:18px;

    border-radius:6px;

    object-fit:cover;

    max-width:100%;

}

/* IMPORTANT */

.social-scroll *{

    max-width:100% !important;

    overflow:hidden;

}

/* View More */

.view-more{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
 
}

.view-more a{
    display:inline-block;
    padding:10px 28px;
    background:#ff4b4b;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    border-radius:30px;
    transition:.3s ease;
}

.view-more a:hover{
    background:#17356f;
    transform:translateY(-2px);
}
/* Hover */

.news-box,
.news-center,
.social-box{

transition:.3s;

}

.news-box:hover,
.news-center:hover,
.social-box:hover{

transform:translateY(-5px);

}

/* Scrollbar */

.news-body::-webkit-scrollbar,
.social-scroll::-webkit-scrollbar{

width:7px;

}

.news-body::-webkit-scrollbar-thumb,
.social-scroll::-webkit-scrollbar-thumb{

background:#17356f;

border-radius:30px;

}

/* Responsive */

@media(max-width:1200px){

.news-container{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.news-section{

padding:30px 15px;

}

.news-header{

flex-direction:column;

}

.news-content h3{

font-size:22px;

}

}

/*=============================
JPI CONTACT PAGE
==============================*/

.jpi-contact-main{

padding:70px 5%;

background:#f5f6fb;

}

.jpi-contact-section{

max-width:1300px;

margin:auto;

}

.jpi-contact-heading{

text-align:center;

margin-bottom:50px;

}

.jpi-contact-heading h1{

font-size:42px;

color:#2d0d63;

margin-bottom:15px;

}

.jpi-contact-heading p{

font-size:18px;

color:#666;

max-width:700px;

margin:auto;

line-height:30px;

}

.jpi-contact-wrapper{

display:grid;

grid-template-columns:380px 1fr;

gap:40px;

}

.jpi-contact-left{

display:flex;

flex-direction:column;

gap:20px;

}

.jpi-contact-card{

background:#fff;

padding:25px;

border-radius:12px;

display:flex;

align-items:flex-start;

gap:18px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.35s;

}

.jpi-contact-card:hover{

transform:translateY(-5px);

}

.jpi-contact-card i{

width:55px;

height:55px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#2d0d63;

color:#fff;

font-size:22px;

}

.jpi-contact-card h3{

margin:0 0 8px;

color:#2d0d63;

}

.jpi-contact-card p{

margin:0;

color:#666;

line-height:28px;

}

.jpi-contact-right{

background:#fff;

padding:35px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.jpi-input-group{

margin-bottom:20px;

}

.jpi-input-group input,

.jpi-input-group textarea{

width:100%;

padding:15px 18px;

border:1px solid #ddd;

border-radius:8px;

font-size:15px;

outline:none;

transition:.3s;

box-sizing:border-box;

}

.jpi-input-group input:focus,

.jpi-input-group textarea:focus{

border-color:#2d0d63;

}

.jpi-contact-btn{

padding:15px 40px;

background:#ff7300;

color:#fff;

border:none;

border-radius:50px;

font-size:17px;

font-weight:600;

cursor:pointer;

transition:.3s;

}

.jpi-contact-btn:hover{

background:#2d0d63;

}

.jpi-map-box{

margin-top:50px;

border-radius:15px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.1);

}

.jpi-map-box iframe{

width:100%;

height:450px;

border:none;

display:block;

}

/* Responsive */

@media(max-width:992px){

.jpi-contact-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.jpi-contact-main{

padding:40px 15px;

}

.jpi-contact-heading h1{

font-size:32px;

}

.jpi-contact-right{

padding:20px;

}

.jpi-map-box iframe{

height:320px;

}

}
/*====================================
JPI GALLERY
====================================*/

.jpi-gallery-main{
    background:#f5f6fb;
    padding-bottom:70px;
}

/* Banner */

.jpi-gallery-banner{
    background:linear-gradient(135deg,#2d0d63,#4b1d8b);
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.jpi-gallery-banner h1{
    font-size:46px;
    margin-bottom:15px;
    font-weight:700;
}

.jpi-gallery-banner p{
    max-width:850px;
    margin:auto;
    font-size:18px;
    line-height:30px;
    color:#ececec;
}

/* Album */

.jpi-gallery-album{
    width:92%;
    max-width:1350px;
    margin:55px auto;
}

.jpi-album-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    border-left:6px solid #ff7300;
    padding-left:18px;
}

.jpi-album-title h2{
    margin:0;
    color:#2d0d63;
    font-size:30px;
}

.jpi-album-title span{
    background:#ff7300;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
}

/* Grid */

.jpi-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

/* Images */

.jpi-gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.jpi-gallery-grid img:hover{
    transform:scale(1.05);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}

/* Lightbox */

.jpi-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.jpi-lightbox img{
    max-width:90%;
    max-height:85vh;
    border-radius:12px;
    box-shadow:0 15px 35px rgba(0,0,0,.45);
}

/* Close */

.close-btn{
    position:absolute;
    top:25px;
    right:35px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
    user-select:none;
}

/* Prev Next */

.prev-btn,
.next-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:55px;
    color:#fff;
    cursor:pointer;
    padding:10px;
    user-select:none;
    transition:.3s;
}

.prev-btn:hover,
.next-btn:hover{
    color:#ff7300;
}

.prev-btn{
    left:25px;
}

.next-btn{
    right:25px;
}

/* Scroll Animation */

.jpi-gallery-album{
    animation:fadeUp .6s ease;
}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(35px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* Tablet */

@media(max-width:1100px){

.jpi-gallery-grid{

grid-template-columns:repeat(3,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.jpi-gallery-banner{

padding:50px 15px;

}

.jpi-gallery-banner h1{

font-size:34px;

}

.jpi-gallery-banner p{

font-size:16px;

line-height:28px;

}

.jpi-album-title{

flex-direction:column;
align-items:flex-start;
gap:10px;

}

.jpi-album-title h2{

font-size:24px;

}

.jpi-gallery-grid{

grid-template-columns:repeat(2,1fr);

gap:15px;

}

.jpi-gallery-grid img{

height:190px;

}

.prev-btn,
.next-btn{

font-size:40px;

}

.close-btn{

font-size:35px;

right:20px;

}

}

/* Small Mobile */

@media(max-width:500px){

.jpi-gallery-grid{

grid-template-columns:1fr;

}

.jpi-gallery-grid img{

height:240px;

}

}