*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Montserrat', sans-serif;
}

/* html, body{
  overflow-x: hidden;
} */

/* ===== NAVBAR BASE ===== */
.navbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: 0.4s ease;
}

/* Scroll effect */
.navbar-wrap.scrolled {
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.55);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

/* ================== NAVBAR INNER ================== */
.navbar-inner {
  max-width: 1300px;
  margin: auto;
  padding: 0 28px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center; /* center all items horizontally */
  position: relative;
}

/* ================== LOGO ================== */
.logo img {
  height: 127px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4));
  object-fit: contain;
  transition: height 0.3s ease;
}
.logo {
  position: absolute;
  left: 28px;
  display: flex;
  align-items: center;
  top: -22px;
}

/* ================== MENU ================== */
.nav-menu{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:60px;
  align-items:center;
}


.nav-menu a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 6px 0;
  transition: 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #fdd835);
  border-radius: 10px;
  transition: 0.4s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #fdd835;
}
.nav-right{
  position:absolute;
  right:28px;     /* bilkul right chipka */
  display:flex;
  align-items:center;
  gap:16px;
}

.nav-donate-btn{
  padding:11px 24px;
  border:2px solid #facc15;
  color:#facc15;
  text-decoration:none;
  border-radius:30px;
  font-weight:700;
  font-size:14px;
  transition:0.35s ease;
}

.nav-donate-btn:hover{
  background:#facc15;
  color:#000;
}
@media(max-width:900px){
  .nav-right{
    position:absolute;
    right:70px;
  }

  .nav-menu{
    position:fixed;
    left:auto;
    transform:none;
  }
}

.floating-donate-btn {
  position: fixed;
  right: 20px;      /* screen ke right se distance */
  bottom: 40px;     /* screen ke bottom se distance */
  padding: 14px 28px;
  background: linear-gradient(135deg, #fdd835, #facc15);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(250, 204, 21, 0.45);
  z-index: 10000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatBtn 3s ease-in-out infinite;
}

/* Hover effect */
.floating-donate-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 45px rgba(250, 204, 21, 0.65);
  background: linear-gradient(135deg, #facc15, #fdd835);
}

/* Floating animation */
@keyframes floatBtn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Mobile hide or reposition */


/* ===== JOIN DJP BUTTON ===== */
.nav-join-btn{
  margin-left:24px;
  padding:12px 28px;
  background:linear-gradient(135deg,#e53935,#c62828);
  color:#fff;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  border-radius:30px;
  letter-spacing:1px;
  box-shadow:0 12px 30px rgba(229,57,53,0.45);
  transition:0.35s ease;
  white-space:nowrap;
}
.nav-close{
    display: none;
}

/* Hover effect */
.nav-join-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 45px rgba(229,57,53,0.65);
}

/* Scroll ke baad thoda compact */
.navbar-wrap.scrolled .nav-join-btn{
  padding:10px 24px;
  font-size:13px;
}

.nav-right{
    display:flex;
    align-items:center;
}


/* ================== MOBILE MENU ================== */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10001;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
}

/* Mobile menu off-canvas */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%; /* hidden off-screen */
    width: 260px;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s ease;
    padding: 60px 20px 20px; /* space for close button */
    z-index: 10000;
  }

  .nav-menu.active {
    right: 0;
  }

  /* Close button */
  .nav-close {
    position: absolute;
    top: 60px;
    right: 20px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    display: block;
  }

  /* Shrink logo for mobile */
  .logo img {
    height: 127px;
  }

  /* Mobile menu links */
  .nav-menu a {
    font-size: 18px;
  }

  .logo{
    left: 10px;
  }
}

.logo{
  position:absolute;
  left:28px;
  top:-22px;
  display:flex;
  align-items:center;
  gap:14px;
}

/* TEXT BLOCK */
.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.logo-text span{
  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
  color:#2d3093;
  text-transform:uppercase;
  text-shadow:0 4px 12px rgba(0,0,0,0.6);
}

/* PARTY NAME */
.party-name{
  font-size:20px;
  font-weight:600;
  letter-spacing:1px;
  color:#fff;
  text-transform:uppercase;
  text-shadow:0 4px 12px rgba(0,0,0,0.6);
}

/* TAGLINE */
.party-tagline{
  font-size:12px;
  font-weight:600;
  letter-spacing:2px;
  color:#facc15;
  margin-top:4px;
}

/* Scroll ke baad thoda compact */
.navbar-wrap.scrolled .party-name{
  font-size:18px;
}

.navbar-wrap.scrolled .party-tagline{
  font-size:11px;
}

/* Mobile optimization */
@media(max-width:900px){
  .party-name{
    font-size:16px;
  }

  .party-tagline{
    font-size:10px;
  }
}





.hero-slider{
  position:relative;
  height:100vh;
  width:100%;
  overflow:hidden;
}

/* SLIDE */
.slide{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.08);
  transition:1s ease;
}

.slide.active{
  opacity:1;
  transform:scale(1);
  z-index:1;
}

/* OVERLAY */
.slide-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      120deg,
      rgba(229,57,53,0.55),
      rgba(253, 216, 53, 0.5)
    ),
    rgba(0,0,0,0.45);
}

/* CONTENT */
.slide-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:#fff;
  max-width:900px;
  padding:0 20px;
}

.slide-content h1{
  font-size:56px;
  font-weight:800;
  line-height:1.2;
  margin-bottom:20px;
}

.slide-content h1 span{
  background:linear-gradient(90deg,#fdd835,#43a047);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.slide-content p{
  font-size:18px;
  opacity:0.95;
  margin-bottom:35px;
}

/* BUTTON */
.hero-btn{
  display:inline-block;
  padding:14px 36px;
  border-radius:50px;
  color:#111;
  font-weight:600;
  text-decoration:none;
  background:linear-gradient(90deg,#fdd835,#43a047);
  transition:0.4s;
}

.hero-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 40px rgba(0,0,0,0.35);
}

/* ARROWS */
.slider-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:34px;
  color:#fff;
  width:55px;
  height:55px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0.4);
  border-radius:50%;
  cursor:pointer;
  z-index:5;
  transition:0.3s;
}

.slider-nav:hover{
  background:linear-gradient(135deg,#e53935,#fdd835,#43a047);
  color:#111;
}

.slider-nav.prev{ left:30px; }
.slider-nav.next{ right:30px; }

/* MOBILE */
@media(max-width:768px){
  .slide-content h1{ font-size:36px; }
  .slider-nav{ display:none; }
}
/* ================= ABOUT POWER : SOLID PREMIUM ================= */

.about-power{
  position:relative;
  padding:170px 0 150px;
  background:#f6f6f4; /* solid light political tone */
  overflow:hidden;
}

/* LEFT ACCENT STRIP (SOLID) */
/*  */

/* DIAGONAL STRUCTURE (NO GRADIENT) */
.about-power::after{
  content:'';
  position:absolute;
  right:-30%;
  top:-15%;
  width:65%;
  height:150%;
  background:rgba(0,0,0,0.04);
  transform:rotate(12deg);
}

/* ================= WRAP ================= */

.about-power-wrap{
  position:relative;
  z-index:2;
  max-width:1450px;
  margin:auto;
  padding:0 40px;
  display:grid;
  grid-template-columns:1.3fr 0.7fr;
  gap:110px;
  align-items:center;
}

/* ================= LEFT CONTENT ================= */

.power-tag{
  display:inline-block;
  font-size:12px;
  letter-spacing:3px;
  font-weight:800;
  color:#e53935;
  margin-bottom:22px;
  text-transform:uppercase;
}

.about-power-content h2{
  font-size:56px;
  font-weight:900;
  line-height:1.12;
  color:#111;
  margin-bottom:30px;
}

.about-power-content h2 span{
  color:#e53935;
}

.about-btn a{
    margin-top:40px;
    margin-left: 50px;
    background: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    color: #e53935;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid #e53935;

  }

  .about-btn a:hover{
    background: #e53935;
    color: #ffffff;
    border: 1px solid #c52121;
}

.power-desc{
  font-size:18px;
  line-height:1.85;
  color:#2b2b2b;
  max-width:620px;
  margin-bottom:52px;
}
/* ================= POWER POINTS WITH ICONS ================= */

.power-lines{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.line{
  display:flex;
  align-items:flex-start;
  gap:20px;
}

.line i{
  font-size:18px;
  color:#e53935;           /* solid political red */
  background:#fff;
  border:1px solid rgba(0,0,0,0.15);
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  box-shadow:0 8px 22px rgba(0,0,0,0.12);
  flex-shrink:0;
}

.line p{
  font-size:16px;
  font-weight:600;
  color:#111;
  letter-spacing:0.4px;
  line-height:1.6;
}

/* ================= POWER POINTS (NO GRADIENT) ================= */

.power-lines{
  display:flex;
  flex-direction:column;
  gap:26px;
}

.line{
  display:flex;
  align-items:center;
  gap:22px;
}



.line p{
  font-size:16px;
  font-weight:600;
  color:#111;
  letter-spacing:0.4px;
}

/* ================= RIGHT VISUAL ================= */

.about-power-visual{
  display:flex;
  justify-content:flex-end;
}

.power-glass{
  position:relative;
  width:360px;
  height:420px;
  background:#ffffff; /* SOLID */
  border-radius:22px;
  border:1px solid rgba(0,0,0,0.12);
  box-shadow:0 40px 90px rgba(0,0,0,0.18);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.power-glass img.power-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}


/* INNER FRAME – NOT GRADIENT */
.power-glass::before{
  content:'';
  position:absolute;
  inset:20px;
  border:2px solid rgba(0,0,0,0.08);
  border-radius:16px;
}

/* LOGO / TEXT */
.power-glass h3{
  position:relative;
  z-index:2;
  font-size:82px;
  font-weight:900;
  letter-spacing:10px;
  color:#111;
}

.power-glass p{
  position:relative;
  z-index:2;
  margin-top:14px;
  font-size:13px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#444;
  font-weight:700;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){
  .about-power-wrap{
    grid-template-columns:1fr;
    gap:80px;
  }

  .about-power-visual{
    justify-content:center;
  }
}

@media(max-width:600px){
  .about-power{
    padding:130px 0;
  }

  .about-power-content h2{
    font-size:38px;
  }

  .power-glass{
    width:280px;
    height:340px;
  }
}

.achievements-section {
  padding: 100px 20px;
  background:#0b1d2d;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head h2 {
  font-size: clamp(28px, 5vw, 46px); /* min 28px, max 46px, scale with viewport */
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}


.section-head h2 span {
  color: #e53935;
}

.section-head p {
  font-size: 16px;
  color: #afafaf;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.achievement-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.achievement-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.achievement-card:hover img {
  transform: scale(1.05);
}

.achievement-content {
  padding: 25px;
}

.achievement-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #c1121f; /* Red for heading, you can customize per card */
}

.achievement-content ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #333;
  line-height: 1.6;
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 900px) {
  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .achievement-card img {
    height: 200px;
  }
}

/* ================= MEDIA POWER ================= */

/* ================= MEDIA POWER : PREMIUM ================= */

.media-power{
  position:relative;
  padding:160px 0;
  background:#f6f6f4;
  color:#000;
  overflow:hidden;
}
/* FAINT BACKGROUND IMAGE */
.media-power::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    url("images/bg-videos.webp") center / cover no-repeat;
  opacity:0.09;          /* control faintness here */
  z-index:0;
}


/* LEFT SOLID ACCENT */
/* .media-power::before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:6px;
  height:100%;
  background:#e53935;
} */

/* SOFT GEOMETRIC STRUCTURE */
.media-power::after{
  content:'';
  position:absolute;
  right:-25%;
  top:-20%;
  width:60%;
  height:160%;
  background:rgba(0,0,0,0.04);
  transform:rotate(12deg);
}

/* ================= WRAP ================= */

.media-wrap{
  position:relative;
  z-index:2;
  max-width:1450px;
  margin:auto;
  padding:0 40px;
}

/* ================= HEADER ================= */

.media-head{
  position:relative;
  max-width:620px;
  margin-bottom:90px;
}

.media-tag{
  font-size:12px;
  letter-spacing:4px;
  font-weight:800;
  color:#fdd835;
  display:inline-block;
  margin-bottom:18px;
  text-transform:uppercase;
}

.media-head h2{
  font-size:54px;
  font-weight:900;
  line-height:1.1;
  margin-bottom:20px;
  color:#111;
}

.media-head h2 span{
  color:#e53935;
}

.media-head p{
  font-size:18px;
  color:#6f6f6f;
  line-height:1.7;
}

/* HEADER DIVIDER */
.media-head::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-32px;
  width:90px;
  height:3px;
  background:#e53935;
}

/* ================= SLIDER ================= */

.media-slider{
  position:relative;
  overflow:hidden;
  padding-bottom:70px;
}

/* shadow base */
.media-slider::after{
  content:'';
  position:absolute;
  left:50%;
  bottom:10px;
  transform:translateX(-50%);
  width:70%;
  height:40px;
  background:rgba(0,0,0,0.1);
  filter:blur(28px);
  z-index:0;
}

.media-track{
  position:relative;
  z-index:2;
  display:flex;
  gap:40px;
  animation: scrollMedia 35s linear infinite;
}

/* pause on hover */
.media-slider:hover .media-track{
  animation-play-state:paused;
}

/* ================= CARD ================= */

.media-card{
  min-width:420px;
  height:260px;
  border-radius:22px;
  overflow:hidden;
  position:relative;
  background:#000;
  box-shadow:0 35px 70px rgba(0,0,0,0.45);
  transition:transform 0.4s ease;
}

.media-card:hover{
  transform:translateY(-6px);
}

/* subtle frame */
.media-card::before{
  content:'';
  position:absolute;
  inset:0;
  border:1px solid rgba(255,255,255,0.15);
  border-radius:22px;
  z-index:2;
  pointer-events:none;
}

.media-card iframe{
  width:100%;
  height:100%;
  border:none;
  filter:saturate(1.1) contrast(1.05);
}

/* ================= AUTO SCROLL ================= */

@keyframes scrollMedia{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-60%); }
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){
  .media-head h2{
    font-size:38px;
  }

  .media-card{
    min-width:300px;
    height:200px;
  }
}


.leaders-solid{
  padding:150px 0 130px;
  background:#0b1d2d; /* strong political blue */
  color:#fff;
}

.leaders-wrap{
  max-width:1300px;
  margin:auto;
  padding:0 30px;
}

/* TITLE */
.leaders-title {
  text-align: center;
  font-size: clamp(30px, 6vw, 52px); /* min 30px, max 52px, scale with viewport */
  font-weight: 900;
}

.leaders-title span{
  color:#e53935;
}

.leaders-sub{
  max-width:760px;
  margin:20px auto 110px;
  text-align:center;
  font-size:18px;
  line-height:1.7;
  color:#e53935;
  font-weight:400;
  letter-spacing:.4px;
}


/* GRID */
.leaders-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:80px;
}

/* CARD */
.leader-card{
  position:relative;
  background:#ffffff;
  color:#000;
  border-radius:18px;
  padding-top:140px;
  box-shadow:0 35px 80px rgba(0,0,0,0.45);
  transition:.35s ease;
}

.leader-card:hover{
  transform:translateY(-8px);
}

/* IMAGE – AAP STYLE OUTSIDE */
.leader-img{
  position:absolute;
  top:-80px;
  left:50%;
  transform:translateX(-50%);
  width:260px;
  height:260px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}

.leader-img img{
  width:100%;
  height:100%;
  object-fit:contain; /* 🔥 MOST IMPORTANT */
  filter:drop-shadow(0 30px 40px rgba(0,0,0,0.6));
}


/* INFO */
.leader-info{
  text-align:center;
  padding:40px 20px 45px;
}

.leader-info h3{
  font-size:22px;
  font-weight:800;
  margin-bottom:8px;
}

.leader-info p{
  font-size:13px;
  letter-spacing:1.5px;
  color:#555;
}

/* HIGHLIGHT */
.leader-card.highlight{
  background:#fbc02d;
}

.leader-card.highlight p{
  color:#000;
}

.designation{
  display:block;
  font-size:12px;
  letter-spacing:2px;
  font-weight:700;
  color:#c1121f;
  margin-bottom:14px;
}

blockquote{
  font-size:15px;
  font-weight:600;
  color:#111;
  margin:0 0 18px;
  position:relative;
}

.short-bio{
  font-size:14px;
  line-height:1.6;
  color:#444;
  margin-bottom:22px;
}

.leader-btn{
  display:inline-block;
  padding:10px 22px;
  border-radius:30px;
  background:#111;
  color:#fff;
  font-size:13px;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}

.leader-btn:hover{
  background:#c1121f;
}

/* RESPONSIVE */
@media(max-width:900px){
  .leaders-grid{
    grid-template-columns:1fr;
    gap:120px;
  }

  .leader-card{
    max-width:380px;
    margin:auto;
  }
}


.journey-section{
  padding:160px 0;
  background:#f6f6f4;
}

.journey-wrap{
  max-width:1300px;
  margin:auto;
  padding:0 30px;
  position:relative;
}

/* TITLE */
.journey-title{
  text-align:center;
  font-size:52px;
  font-weight:900;
  margin-bottom:15px;
}

.journey-title span{
  color:#e53935;
}

.journey-sub{
  text-align:center;
  max-width:700px;
  margin:0 auto 100px;
  font-size:18px;
  color:#666;
}

/* MAIN BOX */
.journey-box{
  position:relative;
  background: #fdd835;
  border-radius:22px;
  padding:80px 70px;
  box-shadow:0 40px 90px rgba(0,0,0,0.25);
  display:flex;
  align-items:center;
  max-width: 920px;
}

/* CONTENT */
.journey-content{
  width:55%;
}

.journey-content h3{
  font-size:34px;
  font-weight:800;
  margin-bottom:20px;
}


.journey-content p{
  font-size:17px;
  line-height:1.8;
  color:#555;
}

/* OVERLAP MEDIA BOX */
.journey-media{
  position:absolute;
  right:-195px;
  top:10%;
  transform:translateY(-50%);
  width:320px;
  height:240px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,0.45);
  background:#000;
}

.journey-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* TIMELINE */
.journey-timeline {
  margin-top: 90px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;       /* small screens pe wrap ho jaaye */
  gap: clamp(15px, 4vw, 30px); /* responsive gap */
}

.year {
  background: none;
  border: none;
  font-size: clamp(14px, 2vw, 18px); /* responsive font size */
  font-weight: 700;
  cursor: pointer;
  color: #999;
  position: relative;
  padding-bottom: 8px;
  transition: color 0.3s;
}

.year.active,
.year:hover {
  color: #e53935;
}

.year.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #e53935;
  border-radius: 10px;
}


/* RESPONSIVE */
@media(max-width:900px){
  .journey-box{
    flex-direction:column;
    padding:60px 30px;
  }

  .journey-content{
    width:100%;
  }

  .journey-media{
    position:relative;
    right:auto;
    top:auto;
    transform:none;
    width:100%;
    height:240px;
    margin-top:40px;
  }
}
@media (max-width:1200px){
  .journey-box{
    max-width: 100%;
  }

  .journey-media{
    right:-10px;   /* pehle -195px tha */
    width:280px;
    height:210px;
  }
}


.footer {
  background: #111;
  color: #fff;
  padding: 80px 20px 40px;
  font-family: 'Poppins', sans-serif;
}

.footer h3 {
  font-size: 20px;
  color: #fdd835; /* Yellow accent */
  margin-bottom: 20px;
}

.footer p, 
.footer li, 
.footer a {
  color: #ccc;
  font-size: 14px;
}

.footer a:hover {
  color: #fdd835;
  transition: 0.3s ease;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Social Icons */
.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  width: 36px;
  height: 36px;
  background: #c1121f; /* Red accent */
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 36px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #fdd835; /* Yellow accent */
  color: #111;
  transform: scale(1.1);
}

/* Quick Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-contact p {
margin-bottom: 10px;}
/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  padding-top: 20px;
  margin-top: 40px;
  font-size: 13px;
  color: #777;
}

/* Responsive */
@media(max-width:900px){
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-social a {
    margin-right: 8px;
  }
}
.hero-djp{
  position:relative;
  min-height:40vh;
  background:url("images/float-banner-image.webp") center/cover no-repeat;
  display:flex;
  align-items:center;
  overflow:hidden;
}

/* DARK OVERLAY */
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.85) 35%,
    rgba(0,0,0,0.45) 100%,
    rgba(0,0,0,0.15)
  );
  z-index:1;
}

.hero-wrap{
  position:relative;
  z-index:2;
  max-width:1400px;
  margin:auto;
  padding:0 40px;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  align-items:center;
}

/* LEFT CONTENT */
.hero-tag{
  display:inline-block;
  background:#fbc02d;
  color:#000;
  padding:8px 18px;
  border-radius:30px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:20px;
}

.hero-content h1{
  font-size:58px;
  font-weight:900;
  color:#fff;
  line-height:1.15;
  margin-bottom:25px;
}

.hero-content h1 span{
  color:#fbc02d;
}

.hero-content p{
  font-size:18px;
  color:#ddd;
  max-width:520px;
  line-height:1.7;
  margin-bottom:40px;
}

/* BUTTONS */
.hero-actions{
  display:flex;
  gap:22px;
}

.btn-join{
  background:#e53935;
  color:#fff;
  padding:16px 34px;
  font-weight:700;
  text-decoration:none;
  border-radius:40px;
  box-shadow:0 15px 40px rgba(229,57,53,0.45);
  transition:.35s ease;
}

.btn-join:hover{
  transform:translateY(-4px);
  box-shadow:0 25px 60px rgba(229,57,53,0.7);
}

.btn-donate{
  background:transparent;
  border:2px solid #fbc02d;
  color:#fbc02d;
  padding:16px 34px;
  font-weight:700;
  text-decoration:none;
  border-radius:40px;
  transition:.35s ease;
}

.btn-donate:hover{
  background:#fbc02d;
  color:#000;
}

/* RIGHT LEADER IMAGE */
.hero-leader{
  position:relative;
  text-align:right;
}

.hero-leader img{
  width:520px;
  max-width:100%;
  filter:drop-shadow(0 40px 70px rgba(0,0,0,0.75));
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-wrap{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-content{
    margin-bottom:60px;
  }

  .hero-actions{
    justify-content:center;
    flex-wrap:wrap;
  }

  .hero-leader{
    text-align:center;
  }

  .hero-leader img{
    width:360px;
  }
}


.djp-form-section{
  min-height:100vh;
  background:
    linear-gradient(135deg,rgba(229,57,53,.9),rgba(251,192,45,.85)),
    url("images/rally-bg.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 20px;
}

.djp-form-card{
  background:rgba(255,255,255,0.96);
  max-width:520px;
  width:100%;
  border-radius:18px;
  box-shadow:0 40px 90px rgba(0,0,0,0.35);
  overflow:hidden;
}

/* HEADER */
.form-header{
  text-align:center;
  padding:35px 30px;
  background:linear-gradient(135deg,#000,#222);
  color:#fff;
}

.form-header img{
  width:70px;
  margin-bottom:15px;
}

.form-header h2{
  font-size:26px;
  font-weight:800;
}

.form-header p{
  font-size:14px;
  opacity:.85;
  margin-top:6px;
}

/* FORM BODY */
.djp-form{
  padding:35px 32px;
}

.form-group{
  margin-bottom:22px;
}

.form-group label{
  font-weight:600;
  font-size:14px;
  margin-bottom:6px;
  display:block;
}

.form-group input,
.form-group select{
  width:100%;
  padding:14px 15px;
  border-radius:10px;
  border:1px solid #ccc;
  font-size:15px;
  transition:.3s;
}

.form-group input:focus,
.form-group select:focus{
  border-color:#e53935;
  outline:none;
  box-shadow:0 0 0 3px rgba(229,57,53,.15);
}

/* CHECKBOX */
.form-check{
  display:flex;
  gap:10px;
  font-size:13px;
  color:#444;
  margin-bottom:14px;
}

/* BUTTON */
.form-btn{
  width:100%;
  margin-top:15px;
  padding:16px;
  background:linear-gradient(135deg,#e53935,#c62828);
  color:#fff;
  font-weight:700;
  border:none;
  border-radius:40px;
  font-size:15px;
  cursor:pointer;
  box-shadow:0 15px 35px rgba(229,57,53,.45);
  transition:.35s;
}

.form-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 25px 55px rgba(229,57,53,.65);
}

/* RESPONSIVE */
@media(max-width:520px){
  .djp-form-card{
    border-radius:12px;
  }
}


.contact-section{
  padding:80px 20px;
  background:#0f172a;
  color:#fff;
}

.contact-title{
  font-size:36px;
  font-weight:700;
  text-align:center;
  color:#fdd835;
}

.contact-sub{
  text-align:center;
  font-size:18px;
  opacity:0.8;
  margin-bottom:50px;
}

.contact-info-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin-bottom:50px;
}

/* INFO CARDS */
.info-cards{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.info-card{
  background:linear-gradient(135deg,#e11d48,#be123c);
  padding:20px 25px;
  border-radius:16px;
  display:flex;
  align-items:center;
  gap:15px;
  box-shadow:0 15px 40px rgba(0,0,0,0.6);
  transition:0.3s;
}

.info-card i{
  font-size:28px;
  color:#fff;
}

.info-card h4{
  margin:0;
  color:#fff;
  font-size:16px;
  font-weight:700;
}

.info-card p{
  margin:0;
  color:#fff;
  opacity:0.9;
}

.contact-power{
  padding:100px 20px;
  background:radial-gradient(circle at top,#0b1d2d,#0b1d2d);
  color:#fff;
}

/* TOP GRID */
.contact-top{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.contact-left{
    padding: 0 50px;
}
/* LEFT CONTENT */
.contact-left h2{
  font-size:48px;
  color:#fdd835;
}

.contact-left h3{
  font-size:22px;
  margin:15px 0;
  color:#e11d48;
}

.contact-left p{
  opacity:0.85;
  line-height:1.8;
  max-width:480px;
}

.contact-points{
  list-style:none;
  padding:0;
  margin-top:30px;
}

.contact-points li{
  margin-bottom:12px;
  font-size:16px;
}

.contact-points i{
  color:#22c55e;
  margin-right:10px;
}

/* FORM CARD */
.contact-right{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(18px);
  padding:40px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:0 40px 80px rgba(0,0,0,0.7);
  position:relative;
}

/* FLOATING INPUTS */
.input-box{
  position:relative;
  margin-bottom:30px;
}

.input-box input,
.input-box textarea{
  width:100%;
  padding:14px;
  background:transparent;
  border:none;
  border-bottom:2px solid rgba(255,255,255,0.3);
  color:#fff;
  font-size:15px;
}

.input-box span{
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  pointer-events:none;
  color:#aaa;
  transition:0.3s;
}

.input-box textarea{
  resize:none;
  height:90px;
}

.input-box input:focus ~ span,
.input-box input:valid ~ span,
.input-box textarea:focus ~ span,
.input-box textarea:valid ~ span{
  top:-10px;
  font-size:12px;
  color:#fdd835;
}

.input-box input:focus,
.input-box textarea:focus{
  outline:none;
  border-color:#fdd835;
}

/* BUTTON */
.power-btn{
  width:100%;
  padding:15px;
  border:none;
  border-radius:50px;
  font-weight:700;
  font-size:16px;
  cursor:pointer;
  background:linear-gradient(135deg,#e11d48,#be123c);
  color:#fff;
  transition:0.4s;
}

.power-btn:hover{
  background:linear-gradient(135deg,#fdd835,#fde047);
  color:#111;
  letter-spacing:1px;
}

/* MAP */
.contact-map{
  margin-top:80px;
  height:420px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,0.7);
}

.contact-map iframe{
  width:100%;
  height:100%;
  border:none;
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-top{
    grid-template-columns:1fr;
  }
  .contact-left h2{
    font-size:36px;
  }
}


/* ================= VISION MISSION ================= */

.vision-mission{
  background:linear-gradient(135deg,#0b1d2d,#020617);
  padding:90px 0;
  color:#fff;
}

.vm-wrap{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

.vm-head{
  text-align:center;
  margin-bottom:90px;
}

.vm-tag{
  display:inline-block;
  background:#e11d48;
  padding:6px 16px;
  font-size:13px;
  letter-spacing:2px;
  font-weight:700;
  border-radius:20px;
  margin-bottom:18px;
}

.vm-head h2{
  font-size:56px;
  font-weight:900;
  margin-bottom:14px;
}

.vm-head h2 span{
  color:#facc15;
}

.vm-head p{
  max-width:640px;
  margin:auto;
  font-size:18px;
  color:#cbd5f5;
}

/* GRID */
.vm-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}

/* CARD */
.vm-card{
  position:relative;
  padding:60px 50px;
  border-radius:26px;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:0 30px 80px rgba(0,0,0,0.6);
  transition:all 0.4s ease;
  overflow:hidden;
}

.vm-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top left,
    rgba(250,204,21,0.18),
    transparent 60%);
  opacity:0;
  transition:0.4s;
}

.vm-card:hover::before{
  opacity:1;
}

.vm-card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 50px 120px rgba(225,29,72,0.45);
}

/* ICON */
.vm-icon{
  width:70px;
  height:70px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:26px;
  background:linear-gradient(135deg,#facc15);
  color:#020617;
}

/* TEXT */
.vm-card h3{
  font-size:30px;
  font-weight:800;
  margin-bottom:18px;
}

.vm-card p{
  font-size:17px;
  line-height:1.9;
  color:#e5e7eb;
}

/* RESPONSIVE */
@media(max-width:900px){
  .vm-grid{
    grid-template-columns:1fr;
  }

  .vm-head h2{
    font-size:40px;
  }
}


.djp-different {
  padding: 140px 0;
  background: #f6f6f4;
  color: #000000;
  position: relative;
  /* overflow:hidden;  <-- remove this */
}

/* Wrap pseudo-element in a separate div */
/* .djp-different::after {
  content: '';
  position: absolute;
  right: 10%;
  top: -15%;
  width: 55%;
  height: 150%;
  background: rgba(0, 0, 0, 0.04);
  transform: rotate(10deg);
  z-index: 0;
} */


.djp-different-wrap{
  max-width:1300px;
  margin:auto;
  padding:0 28px;
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:80px;
}

/* ================= LEFT ================= */
.different-tag{
  display:inline-block;
  font-size:12px;
  letter-spacing:3px;
  color:#facc15;
  margin-bottom:18px;
  font-weight:700;
}

.different-left{
  position:sticky;
  top:120px;
  align-self:flex-start;
}

.different-left h2{
  font-size:56px;
  font-weight:900;
  line-height:1.15;
  margin-bottom:26px;
  position:relative;
}

/* underline animation */
.different-left h2::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-12px;
  width:80px;
  height:5px;
  background:#e53935;
  border-radius:10px;
  transform:scaleX(0);
  transform-origin:left;
  transition:0.6s ease;
}

.aos-animate .different-left h2::after{
  transform:scaleX(1);
}

.different-left h2 span{
  color:#e53935;
}

.different-left p{
  font-size:18px;
  line-height:1.8;
  color:#414141;
  max-width:480px;
}

/* ================= RIGHT STRIPS ================= */
.different-right{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.diff-strip{
  position:relative;
  padding:26px 30px 26px 90px;
  background:rgba(0,0,0,0.32);
  border-left:50px solid #e53935;
  backdrop-filter:blur(8px);
  border-radius:50px;
  transition:transform 0.45s ease, box-shadow 0.45s ease, background 0.45s ease;
  overflow:hidden;
}

/* shine animation */
.diff-strip::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
  transition:0.6s ease;
}

.diff-strip:hover{
  transform:translateX(14px) scale(1.02);
  box-shadow:0 18px 40px rgba(0,0,0,0.35);
}

.diff-strip:hover::before{
  left:100%;
}

/* number animation */
.diff-strip span{
  position:absolute;
  left:24px;
  top:22px;
  font-size:32px;
  font-weight:900;
  color:#facc15;
  opacity:0.85;
  transition:transform 0.4s ease;
}

.diff-strip:hover span{
  transform:scale(1.25) rotate(-5deg);
}

.diff-strip h4{
  font-size:20px;
  font-weight:800;
  margin-bottom:6px;
}

.diff-strip p{
  font-size:15px;
  line-height:1.6;
  color:#e5e7eb;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1000px){
  .djp-different-wrap{
    grid-template-columns:1fr;
  }

  .different-left{
    position:relative;
    top:auto;
    margin-bottom:40px;
  }

  .different-left h2{
    font-size:42px;
  }
}


.company-name{
  font-size: 20px;
  font-weight: 600;
  color: #facc15;
  text-decoration: none;
}

.footer-logo{
  width:150px;
  height:auto;
}
@media (max-width: 768px) {
  .footer-about{
    text-align: center;   /* ⭐ image + text center */
  }

  .footer-logo{
    display:block;
    margin: 15px auto;    /* ⭐ image center */
  }
}
.particle{
  position: fixed;
  width: 6px;
  height: 6px;
  background: #e53935;
  pointer-events: none;
  border-radius: 50%;
  animation: particleAnim 0.8s ease-out forwards;
  z-index: 99999;
}

@keyframes particleAnim{
  from{
    transform: translate(0,0) scale(1);
    opacity: 1;
  }
  to{
    transform: translate(var(--x), var(--y)) scale(0);
    opacity: 0;
  }
}


.footer-no{
  text-decoration: none!important;
}


/* ================= DONATE PAGE ================= */

.donate-section{
  background:#f6f6f4;
}

/* QR CARD */
.donate-card{
  padding:28px;
}

.donate-badge{
  background:#e53935;
  color:#fff;
  font-size:12px;
  padding:6px 16px;
  border-radius:20px;
  letter-spacing:1px;
  margin-bottom:16px;
  display:inline-block;
  font-weight:700;
}

.donate-qr{
  width:260px;
  height:260px;
  object-fit:contain;
  margin:20px 0;
}

.donate-card h4{
  font-size:18px;
  margin-top:10px;
  color:#111;
}

.upi-id{
  margin-top:8px;
  font-size:15px;
  color:#333;
}

/* NOTE STRIP */
.donate-note{
  padding:26px 20px;
  background:#fff;
  border-top:1px solid rgba(0,0,0,0.1);
  text-align:center;
}

.donate-note p{
  font-size:15px;
  font-weight:600;
  color:#111;
}


.djp-candidates{
  background:#0b1d2d;
  color:#fff;
  padding-bottom:140px;
}

/* HERO */
.candidate-hero{
  min-height:60vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;
}

.candidate-hero h1{
  font-size:54px;
  font-weight:900;
}

.candidate-hero p{
  font-size:20px;
  opacity:.85;
}

/* ELECTION INFO */
.election-info{
  text-align:center;
  margin-bottom:100px;
}

.election-info h2{
  font-size:34px;
  font-weight:800;
}

.election-info span{
  color:#facc15;
  letter-spacing:2px;
}

/* CARD */
.candidate-card{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:420px 1fr;
  gap:80px;
  align-items:center;
  padding:80px;
  background:rgba(255,255,255,0.04);
  border-radius:30px;
}
.candidate-hero span{
  color:#e53935;
  letter-spacing:2px;
}

/* IMAGE */
.candidate-image{
  position:relative;
}

.candidate-image img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:0 40px 90px rgba(0,0,0,.6);
}

.winner-badge{
  position:absolute;
  top:20px;
  left:20px;
  background:#22c55e;
  color:#000;
  font-weight:900;
  padding:8px 16px;
  border-radius:20px;
  letter-spacing:1px;
}

/* DETAILS */
.candidate-details h3{
  font-size:42px;
  font-weight:900;
}

.candidate-details ul{
  margin:30px 0;
  list-style:none;
  padding:0;
}

.candidate-details li{
  font-size:18px;
  margin-bottom:12px;
}

.candidate-details strong{
  color:#facc15;
}

.candidate-quote{
  font-size:20px;
  line-height:1.8;
  font-style:italic;
  opacity:.9;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .candidate-card{
    grid-template-columns:1fr;
    padding:50px;
  }
}

.membership-section{
  padding:120px 20px;
  background:#0b1d2d;
  display:flex;
  justify-content:center;
}

.membership-box{
  width:100%;
  max-width:720px;
  background:#fff;
  padding:45px;
  border-radius:18px;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.membership-box h2{
  text-align:center;
  font-size:30px;
  font-weight:800;
  color:#111;
  margin-bottom:6px;
}

.req-note{
  text-align:center;
  font-size:13px;
  color:#e53935;
  margin-bottom:30px;
}

.form-group{
  margin-bottom:22px;
}

.form-group label{
  display:block;
  font-size:14px;
  font-weight:600;
  margin-bottom:8px;
  color:#111;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:12px 14px;
  font-size:14px;
  border:1px solid #ccc;
  border-radius:8px;
  outline:none;
  transition:.3s;
}

.form-group textarea{
  resize:none;
  height:100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:#e53935;
  box-shadow:0 0 0 2px rgba(229,57,53,.15);
}

.submit-btn{
  width:100%;
  padding:14px;
  background:linear-gradient(135deg,#e53935,#c62828);
  border:none;
  color:#fff;
  font-size:16px;
  font-weight:700;
  border-radius:30px;
  cursor:pointer;
  transition:.3s;
}

.submit-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(229,57,53,.45);
}


.djp-ideology-section{
  padding:160px 0;
  background:#f6f6f4;
}

.djp-ideology-wrap{
  max-width:1450px;
  margin:auto;
  padding:0 40px;
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:100px;
  align-items:flex-start;
}

.djp-ideology-visual{
  position: sticky;
  top: 120px;
  align-self: flex-start;
}


.djp-ideology-tag{
  font-size:12px;
  letter-spacing:3px;
  font-weight:800;
  color:#e53935;
}

.djp-ideology-content h2{
  font-size:54px;
  font-weight:900;
  line-height:1.15;
  margin:25px 0;
}

.djp-ideology-content h2 span{
  color:#e53935;
}

.djp-ideology-lead{
  font-size:19px;
  line-height:1.8;
  max-width:720px;
  margin-bottom:35px;
}

.djp-ideology-block p{
  font-size:17px;
  line-height:1.9;
  margin-bottom:22px;
  color:#222;
}

.djp-ideology-block blockquote{
  margin:30px 0;
  padding-left:22px;
  border-left:4px solid #e53935;
  font-weight:700;
  font-size:18px;
  color:#111;
}

.djp-ideology-points{
  margin-top:40px;
  display:flex;
  gap:26px;
  flex-wrap:wrap;
}

.djp-ideology-points .point{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:700;
}

.djp-ideology-points i{
  width:46px;
  height:46px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#e53935;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.djp-ideology-frame{
  width:360px;
  height:440px;
  border-radius:22px;
  overflow:hidden;
  position:relative;
  box-shadow:0 35px 80px rgba(0,0,0,0.35);
}

.djp-ideology-frame::after{
  content:"DJP";
  position:absolute;
  bottom:18px;
  right:18px;
  background:#e53935;
  color:#fff;
  font-weight:900;
  font-size:14px;
  padding:8px 14px;
  border-radius:14px;
  letter-spacing:2px;
}

.djp-ideology-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
}


@media(max-width:1100px){
  .djp-ideology-wrap{
    grid-template-columns:1fr;
    gap:70px;
  }
}
