/* ============================================================
   POLITICIAN WEBSITE – RAJENDRA SINGH CHAUHAN
   Theme: Navy + Gold | Authority + Trust
   ============================================================ */

:root {
  /* Indian Flag Theme */

  --navy:       #FFFFFF;   /* Ashoka Chakra Blue */
  --navy-mid:   #001f5c;
  --navy-light: #003399;

  --gold:       #FF9933;   /* Saffron */
  --gold-light: #ffb366;

  --white:      #FFFFFF;
  --off-white:  #FFFDF7;

  --text-dark:  #1A1A2E;
  --text-mid:   #4A5568;
  --text-light: #718096;

  --radius:     12px;
  --shadow:     0 8px 32px rgba(0,0,128,0.15);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.75;
}

.gold-text {
  color: var(--gold);
  font-style: italic;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
    background: #FF9933;;
  transition: var(--transition);
}

#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.logo-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 0.55rem 1.4rem !important;
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 4px;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 1rem 2rem 1.5rem;
  gap: 1rem;
}
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%; height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.55) 60%,
    rgba(10,22,40,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 80px;
  max-width: 680px;
  margin-left: max(2rem, calc((100vw - 1280px)/2 + 2rem));
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 2px;
}

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

/* Gold animated underline on gold-text in hero */
.hero-heading .gold-text {
  position: relative;
  font-style: italic;
}
.hero-heading .gold-text::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  animation: underlineSlide 0.8s ease 0.4s both;
}
@keyframes underlineSlide {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.slider-arrow.left  { left: 2rem; }
.slider-arrow.right { right: 2rem; }

/* Stats Bar */
.stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 2rem;
  gap: 0;
  border-top: 1px solid rgba(201,168,76,0.25);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   INITIATIVES / CARDS SECTION
   ============================================================ */
.initiatives-section {
  padding: 6rem 2rem;
  background: var(--off-white);
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.section-header .section-sub { margin: 0 auto; }

.cards-wrapper {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.cards-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 60px 10px 50px 50px;

}

.initiative-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.initiative-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.initiative-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(10,22,40,0.18);
}
.initiative-card:hover::before { transform: scaleX(1); }

.card-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.initiative-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.initiative-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}












/* PREMIUM CARDS */

.initiative-card-new{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.4s ease;
    display:flex;
    flex-direction:column;
    height:100%;
    border:1px solid rgba(0,0,0,0.06);
}

.initiative-card-new:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

.initiative-img{
    height:260px;
    overflow:hidden;
    position:relative;
}

.initiative-img::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
      to top,
      rgba(0,0,0,0.35),
      transparent
    );
}

.initiative-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

.initiative-card-new:hover img{
    transform:scale(1.1);
}

.initiative-content{
    padding:25px;
    flex:1;
    display:flex;
    flex-direction:column;
}

.initiative-content h3{
    color:#FFFFFF;
    font-size:1.5rem;
    margin-bottom:15px;
    font-weight:700;
}

.initiative-content p{
    color:#555;
    line-height:1.9;
    font-size:15px;
    flex:1;
}

.initiative-card-new .card-tag{
    align-self:flex-start;
    margin-top:20px;
    padding:10px 20px;
    border-radius:50px;
    background:linear-gradient(
      90deg,
      #FF9933,
    
    );
    color:#fff;
    font-weight:600;
    letter-spacing:1px;
}

.card-tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: rgba(201,168,76,0.12);
  color: #9A7A2C;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--navy);
  border: none;
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(10,22,40,0.25);
}
.card-arrow:hover { background: var(--gold); color: var(--navy); }
.card-arrow.left  { left: -18px; }
.card-arrow.right { right: -18px; }

.card-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}
.card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(10,22,40,0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.card-dot.active { background: var(--gold); transform: scale(1.3); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--navy);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

.about-diagonal {
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--off-white);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
}

.about-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

.about-img-wrapper img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  height: 520px;
  filter: grayscale(20%);
  border: 4px solid rgba(201,168,76,0.3);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px; height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
  border: 4px solid var(--navy);
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.badge-text {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  line-height: 1.3;
}








.about-content-col .section-title {
  color: #111 !important;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: #111 !important;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  border-left: 4px solid #FF9933;
  padding-left: 1.25rem;
}

.about-body {
  font-size: 0.97rem;
  color: #222 !important;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.5);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: var(--transition);
}

.highlight-item:hover {
  background: rgba(255,255,255,0.7);
  border-color: rgba(0,0,0,0.15);
}

.highlight-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111 !important;
  margin-bottom: 2px;
}

.highlight-item span {
  font-size: 0.85rem;
  color: #333 !important;
}



.about-content-col .section-title { color: var(--white); }

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
}

.about-body {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-highlights {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.highlight-item:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.25); }

.highlight-icon { font-size: 1.5rem; line-height: 1; }

.highlight-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.highlight-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   CONTACT / JOIN SECTION
   ============================================================ */
.contact-section {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.contact-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.contact-inner .section-title { color: var(--white); }

.contact-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form select { color: rgba(255,255,255,0.4); }
.contact-form select option { color: var(--text-dark); background: var(--white); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-btn {
  align-self: center;
  padding: 1rem 3rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.form-success {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 8px;
  color: #4ade80;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050d1a;
  color: var(--white);
  padding: 4rem 2rem 0;
}

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

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
}
.footer-links a {
  color:white;
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.3rem 0;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-container { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrapper img { height: 380px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .initiative-card { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    padding: 0 1.5rem;
    margin-left: 0;
    padding-top: 80px;
  }

  .hero-heading { font-size: clamp(2rem, 7vw, 3rem); }

  .stats-bar {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
  }
  .stat-divider { display: none; }
  .stat-item { padding: 0 1rem; }

  .form-row { grid-template-columns: 1fr; }

  .initiative-card { flex: 0 0 calc(100% - 0); min-width: unset; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .card-arrow.left  { left: 4px; }
  .card-arrow.right { right: 4px; }

  .slider-arrow.left  { left: 0.75rem; }
  .slider-arrow.right { right: 0.75rem; }

  .about-section { padding: 5rem 1.5rem; }
  .about-diagonal { height: 50px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


























/* =========================
   INDIAN FLAG THEME
   ========================= */

.hero-overlay{
  background: linear-gradient(
    90deg,
    rgba(255,153,51,0.85) 0%,
    rgba(255,255,255,0.15) 50%,
       rgba(255,153,51,0.95),
  );
}

#navbar.scrolled{
 background: #FF9933;
}

.stats-bar{
  background: #FF9933;
}

.about-section{
  background: #FF9933;
}

.contact-section{
   background: #FF9933;
}

.footer{
   background: #FF9933;
}

.initiative-card::before{
   background: #FF9933;
}

.btn-primary{
  background:#FF9933;
  border-color:#FF9933;
  color:#fff;
}

.btn-primary:hover{
  background:#FF9933;
  border-color:#FF9933;
  color:#fff;
}

.section-title,
.hero-heading .gold-text{
    background:#FF9933;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}





















/* ===== FIX TEXT VISIBILITY ===== */

.footer-brand p,
.footer-links a,
.footer-contact p,
.footer-bottom p,
.social-links a {
    color: #1a1a1a !important;
}

.footer-links h4,
.footer-contact h4,
.logo-name,
.logo-title {
    color: #FFFFFF !important;
    font-weight: 700;
}

.nav-links a{
    color: #FFFFFF !important;
    font-weight: 600;
}

.nav-links a:hover{
    color: #FF6600 !important;
}

.contact-inner .section-title,
.contact-inner .section-sub{
    color: #FFFFFF !important;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
    color: #000 !important;
    background: rgba(255,255,255,0.85) !important;
    border: 1px solid #ccc !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color: #555 !important;
}

.footer{
    color:#111 !important;
}

.footer-bottom{
    border-top:1px solid rgba(0,0,0,0.15);
}

























.highlight-item{
  background: transparent !important;
  border: none !important;
  padding: 0.5rem 0 !important;
  box-shadow: none !important;
}

.highlight-item:hover{
  background: transparent !important;
  transform: none !important;
}

.highlight-icon{
  font-size: 1.4rem;
}

.about-section{
  background: linear-gradient(
    to right,
    rgba(255,153,51,0.08),
    #ffffff,
    rgba(19,136,8,0.08)
  ) !important;
}


















/* ===== NEW IMAGE CARDS ===== */

.initiative-card-new{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    padding:0 !important;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.initiative-img{
    width:100%;
    height:220px;
    overflow:hidden;
}

.initiative-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.5s;
}

.initiative-card-new:hover .initiative-img img{
    transform:scale(1.08);
}

.initiative-content{
    padding:22px;
}

.initiative-content h3{
    color:#FFFFFF;
    font-size:1.3rem;
    margin-bottom:12px;
    font-weight:700;
}

.initiative-content p{
    color:#444;
    line-height:1.8;
    font-size:15px;
    margin-bottom:18px;
}

.initiative-card-new .card-tag{
    background: #FF9933;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

@media(max-width:768px){

    .initiative-img{
        height:180px;
    }

    .initiative-content{
        padding:18px;
    }

    .initiative-content h3{
        font-size:1.1rem;
    }

    .initiative-content p{
        font-size:14px;
    }
}












.cards-track{
    display:flex;
    gap:30px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.cards-track::-webkit-scrollbar{
    display:none;
}

.initiative-card{
    min-width:380px;
}




















/* ===========================
   POLITICAL CARD SLIDER
=========================== */

.achievement-section{
    padding:80px 0;
    background:#f8fafc;
    overflow:hidden;
}

.achievement-slider{
    width:100%;
    overflow:hidden;
}

.achievement-track{
    display:flex;
    gap:25px;
    width:max-content;
    animation:slideCards 30s linear infinite;
}

.achievement-slider:hover .achievement-track{
    animation-play-state:paused;
}

@keyframes slideCards{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

.achievement-card{
    width:380px;
    min-height:460px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    flex-shrink:0;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.4s;
    border:1px solid rgba(255,153,51,.15);
}

.achievement-card:hover{
    transform:translateY(-10px);
}

.achievement-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.achievement-content{
    padding:25px;
}

.achievement-content h3{
    font-size:24px;
    margin-bottom:12px;
    color:#1f2937;
    font-weight:700;
}

.achievement-content p{
    color:#6b7280;
    line-height:1.8;
    font-size:15px;
}

/* Tablet */

@media(max-width:992px){

    .achievement-card{
        width:320px;
        min-height:430px;
    }

    .achievement-card img{
        height:220px;
    }
}

/* Mobile */

@media(max-width:768px){

    .achievement-track{
        gap:15px;
    }

    .achievement-card{
        width:280px;
        min-height:400px;
    }

    .achievement-card img{
        height:180px;
    }

    .achievement-content{
        padding:18px;
    }

    .achievement-content h3{
        font-size:20px;
    }

    .achievement-content p{
        font-size:14px;
    }
}




















/* =========================
   POLITICAL FOOTER
========================= */

.political-footer{
    background:#f7931e;
    color:#fff;
    margin-top:80px;
}

.political-footer-top{
    max-width:1200px;
    margin:auto;
    padding:20px 20px;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
    flex-wrap:wrap;
}

/* Logo */

.political-logo{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}

.political-logo-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#fff;
    color:#f7931e;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.political-logo-text{
    display:flex;
    flex-direction:column;
}

.political-name,
.political-title{
    color:#fff;
    font-size:24px;
    font-weight:700;
    line-height:1.1;
}

.political-desc{
    max-width:500px;
    line-height:1.8;
    font-size:17px;
    margin-bottom:25px;
}

/* Social */

.political-socials{
    display:flex;
    gap:12px;
}

.political-socials a{
    width:45px;
    height:45px;
    border:1px solid rgba(255,255,255,.4);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    border-radius:10px;
    transition:.3s;
}

.political-socials a:hover{
    background:#fff;
    color:#f7931e;
}

/* Contact */

.political-contact h4{
    font-size:28px;
    margin-bottom:25px;
    color:#fff;
}

.political-contact-row{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.political-contact-box{
    padding:15px 22px;
    border:1px solid rgba(255,255,255,.35);
    border-radius:12px;
    font-size:16px;
    font-weight:500;
}

/* Bottom */

.political-footer-bottom{
    border-top:1px solid rgba(255,255,255,.3);
    max-width:1200px;
    margin:auto;
    padding:20px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}

/* Mobile */

@media(max-width:768px){

    .political-footer-top{
        flex-direction:column;
        gap:40px;
    }

    .political-contact-row{
        flex-direction:column;
        width:100%;
    }

    .political-contact-box{
        width:100%;
    }

    .political-footer-bottom{
        flex-direction:column;
        text-align:center;
    }
}