/* Meta Section Icons (Date & Location) */
.news-details-page-meta i {
  color: #ff9933; /* Saffron color for icons */
  margin-right: 8px;
  font-size: 16px;
  vertical-align: middle;
}

/* Badge Icon (Header) */
.news-details-page-badge i {
  margin-right: 6px;
  font-size: 13px;
}

/* Achievement/Grid Point Icons */
.news-details-page-point i {
  color: #ff9933; /* Deep Blue for points */
  font-size: 20px;
  width: 30px; /* Fixed width for alignment */
  text-align: center;
  margin-right: 10px;
}

/* Sidebar Trending List Icons */
.news-details-page-links li i {
  color: #ff9933;
  font-size: 12px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

/* Sidebar Icon Hover Effect */
.news-details-page-links li:hover i {
  transform: translateX(5px); /* Arrow move karega hover par */
}

/* Newsletter/Button Icons */
.news-details-page-widget-newsletter button i {
  margin-right: 8px;
  font-size: 14px;
}

/* Quote/Highlight Box Icon */
.news-details-page-intro i {
  color: #ff9933;
  font-size: 24px;
  margin-right: 10px;
  opacity: 0.6;
}

/* Caption Icon */
.news-details-page-caption i {
  margin-right: 5px;
  color: #222;
}

/* Footer Note Icon */
.news-details-page-footer-note i {
  color: #ff9933;
  margin-right: 5px;
}
.news-details-page-date span {
  color: #222;
}
.news-details-page-achievements {
  background: #fdf2e9;
  padding: 25px;
  border-radius: 10px;
  margin: 30px 0;
}

.news-details-page-sub-head {
  color: #000;
  margin-bottom: 20px;
  font-size: 22px;
}

.news-details-page-grid-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.news-details-page-point {
  background: #ffffff;
  color: #000;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #ff9933;
  font-size: 15.5px;
  text-align: justify;
  line-height: 1.5;
}

.news-details-page-footer-note {
  margin-top: 40px;
  text-align: justify;
  font-style: italic;
  color: #000;
  text-align: right;
  font-size: 14px;
}

/* Newsletter Widget */
.news-details-page-widget-newsletter {
  margin-top: 30px;
  background: #222;
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

.news-details-page-widget-newsletter h4 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #fff;
}
.news-details-page-widget-newsletter p {
  color: #fff;
}
.news-details-page-widget-newsletter input {
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  border-radius: 5px;
  border: none;
}

.news-details-page-widget-newsletter button {
  background: #ff9933;
  color: white;
  border: none;
  padding: 10px 20px;
  width: 100%;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* Wrapper and Layout */
.news-details-page-wrapper {
  background-color: #f0f2f5;
  padding: 60px 0;
  font-family: "Arial", sans-serif;
}

.news-details-page-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  padding: 0 15px;
}

/* Main Content Area */
.news-details-page-main {
  flex: 2;
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  border-top: 6px solid #ff9933; /* Saffron Border */
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.news-details-page-badge {
  background-color: #ff9933;
  color: #fff;
  padding: 5px 15px;
  font-size: 14px;

  border-radius: 4px;
  text-transform: uppercase;
}

.news-details-page-title {
  font-size: 26px;
  color: #000; /* Blue Color */
  line-height: 1.3;
  margin: 20px 0;
  font-weight: 700;
}

/* Author and Meta */
.news-details-page-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.news-details-page-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.news-details-page-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #ff9933;
  object-fit: cover;
}

.news-details-page-name {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.news-details-page-desig {
  font-size: 13px;
  color: #222;
}

/* Featured Image */
.news-details-page-image-box {
  margin-bottom: 30px;
}

.news-details-page-image-box img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.news-details-page-caption {
  text-align: center;
  font-size: 14px;
  color: #000;
  font-style: italic;
  margin-top: 10px;
}

/* Article Body */
.news-details-page-article p {
  font-size: 17px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 25px;
  text-align: justify;
}

.news-details-page-intro {
  font-weight: 600;
  font-size: 18px !important;
  color: #000;
  border-left: 4px solid #ff9933;
  padding-left: 20px;
}

.news-details-page-highlight-box {
  background: #fff5e6;
  padding: 30px;
  border-radius: 10px;
  font-size: 19px;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin: 40px 0;
  border: 1px dashed #ff9933;
}

/* Sidebar */
.news-details-page-sidebar {
  flex: 1;
}

.news-details-page-widget {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.news-details-page-widget-head {
  font-size: 18px;
  color: #000;
  border-bottom: 2px solid #ff9933;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.news-details-page-links {
  list-style: none;
  padding: 0;
}

.news-details-page-links li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.news-details-page-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 15px;
}

.news-details-page-links a:hover {
  color: #ff9933;
}

/* --- NEW: Benefits List Styling --- */
.all-new-schemes-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 25px 0;
  text-align: left;
  border-top: 1px solid #f0f0f0;
  padding-top: 15px;
}

.all-new-schemes-list li {
  font-size: 15px;
  color: #222;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start; /* Align icon with top of text */
  line-height: 1.4;
}

.all-new-schemes-list li i {
  color: #27ae60; /* Green color for Checkmark */
  margin-right: 10px;
  font-size: 14px;
  margin-top: 3px; /* Slight adjustment to align with text */
  flex-shrink: 0; /* Prevent icon from shrinking */
}

/* --- Optional: Hover Effect for List Items --- */
.all-new-schemes-card:hover .all-new-schemes-list li {
  color: #333; /* Darker text on card hover */
}

/* --- Ensure Card Height is Even --- */
.all-new-schemes-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* --- Budget Section Container --- */
.all-new-schemes-section {
  padding: 40px 20px;
  background-color: #f9f9f9; /* Light clean background */
  font-family: "Segoe UI", Roboto, sans-serif;
}

.all-new-schemes-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Grid Layout --- */
.all-new-schemes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 30px;
}

/* --- Card Design --- */
.all-new-schemes-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-top: 4px solid transparent; /* Hidden top border */
  position: relative;
  overflow: hidden;
}

.all-new-schemes-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #ff9933; /* Saffron border appears on hover */
}

/* --- Icon Box --- */
.all-new-schemes-icon-box {
  width: 60px;
  height: 60px;
  background: #fff0e0; /* Light orange bg */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #ff9933;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.all-new-schemes-card:hover .all-new-schemes-icon-box {
  background: #ff9933;
  color: #ffffff;
}

/* --- Card Text --- */
.all-new-schemes-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.all-new-schemes-card-desc {
  font-size: 16px;
  color: #222;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* --- Button --- */
.all-new-schemes-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #ff9933;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease;
}

.all-new-schemes-btn i {
  margin-left: 6px;
  font-size: 12px;
  transition: margin-left 0.2s ease;
}

.all-new-schemes-btn:hover {
  color: #d37315;
}

.all-new-schemes-btn:hover i {
  margin-left: 10px; /* Arrow moves slightly */
}

.footer-email-link {
  color: inherit; /* Footer text ka color lega */
  text-decoration: none; /* Underline hatane ke liye */
  transition: color 0.3s ease;
}

.footer-email-link:hover {
  color: #ff8c00; /* Hover karne par orange color */
  text-decoration: underline;
}
/* Mission Vision Section Styles */
.mission-vision-section {
  padding: 40px 20px;
  background-color: #d5d6d7;
  font-family: "Poppins", sans-serif;
}

.mission-vision-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mission-vision-header {
  text-align: center;
  margin-bottom: 60px;
}

.mission-vision-badge {
  background: rgba(255, 140, 0, 0.1);
  color: #ff8c00; /* Aapka Orange Theme Color */
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission-vision-title {
  font-size: 36px;
  color: #222;
  margin-top: 15px;
  font-weight: 700;
}

.mission-vision-underline {
  width: 70px;
  height: 4px;
  background: #ff8c00;
  margin: 15px auto;
  border-radius: 2px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.mission-vision-card {
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  z-index: 1;
}

.mission-vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-vision-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 32px;
  transition: all 0.4s ease;
}

/* Vision Card Colors */
.vision .mission-vision-icon-wrapper {
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
}

/* Mission Card Colors */
.mission .mission-vision-icon-wrapper {
  background: rgba(255, 140, 0, 0.1);
  color: #ff8c00;
}

/* Values Card Colors */
.values .mission-vision-icon-wrapper {
  background: rgba(106, 27, 154, 0.1);
  color: #6a1b9a;
}

.mission-vision-card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.mission-vision-text {
  font-size: 17px;
  line-height: 1.7;
  text-align: justify;
  color: #222;
}

.mission-vision-list {
  list-style: none;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.mission-vision-list li {
  margin-bottom: 12px;
  color: #222;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.mission-vision-list li i {
  color: #6a1b9a;
  margin-right: 10px;
  font-size: 18px;
}

.mission-vision-card-bg {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: currentColor;
  opacity: 0.03;
  border-radius: 50%;
  z-index: -1;
}

/* Blog Section Styling */
.blog-section-area {
  padding: 40px 0;
  background-color: #f9f9f9; /* Light background for contrast */
}

.blog-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.blog-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-section-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  ); /* Responsive grid */
  gap: 30px;
  margin-bottom: 50px;
}

.blog-section-post {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.blog-section-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-section-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-section-post:hover .blog-section-image img {
  transform: scale(1.05);
}

.blog-section-category {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: #138808; /* Green */
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.blog-section-content {
  padding: 25px;
}

.blog-section-post-title {
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-section-post-title a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-section-post-title a:hover {
  color: #fe8e0e; /* Saffron */
}

.blog-section-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  font-size: 14px;
  color: #222;
}

.blog-section-meta li {
  margin-right: 15px;
}

.blog-section-meta li i {
  color: #fe8e0e; /* Saffron */
  margin-right: 5px;
}

.blog-section-text {
  font-size: 16px;
  color: #222;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 25px;
}

.blog-section-readmore {
  display: inline-block;
  color: #222; /* Saffron */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-section-readmore i {
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.blog-section-readmore:hover {
  color: #138808; /* Green */
}

.blog-section-readmore:hover i {
  margin-left: 12px;
}

.blog-section-button-area {
  text-align: center;
}

.blog-section-view-all {
  display: inline-block;
  background-color: #fe8e0e; /* Saffron */
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.blog-section-view-all:hover {
  background-color: #138808; /* Green */
  transform: translateY(-3px);
}

.blog-section-view-all i {
  margin-left: 10px;
}

/* Breadcrumb Section Design */
.breadcrumb-section-area {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/bg3.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  position: relative;
  text-align: center;
}

.breadcrumb-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.breadcrumb-section-title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb-section-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.breadcrumb-section-list li {
  display: inline-block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

.breadcrumb-section-list li a {
  color: #ff9933; /* Saffron Color */
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-section-list li a:hover {
  color: #fff;
}

.breadcrumb-section-separator {
  margin: 0 10px;
  color: #eeeeee;
  font-size: 16px;
}

.breadcrumb-section-list li.active {
  color: #ffffff;
  opacity: 0.9;
}

.go-top {
  background-color: #fd8e0b;
}
.go-top:hover {
  background-color: #fd8e0b !important;
}
.logo-icon-1 {
  height: 67px !important;
}
.others-option-for-responsive .others-options {
  display: none;
}
/* Footer Main Styles */
.footer-section-bjp {
  background-color: #111111; /* Deep Black */
  color: #ffffff;
  padding: 40px 0 0 0;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* Column Styles */
.footer-logo {
  width: 60px;
  margin-bottom: 20px;
}

.footer-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.footer-role {
  color: #fc8802;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.footer-desc {
  color: #aaaaaa;
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
}

.footer-heading {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #fc8802;
}

/* Links Styles */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aaaaaa;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fc8802;
  padding-left: 8px;
}

/* Social & Contact Info */
.footer-contact p {
  color: #aaaaaa;
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: #fd8b06;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 35px;
  height: 35px;
  background: #222;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  transform: translateY(-5px);
}

/* Bottom Bar */
.footer-bottom {
  width: 100%;
  padding: 25px 0;
  border-top: 1px solid #222;
  margin-top: 40px;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}

.anti-congress-section {
  padding: 40px 0;
  background: linear-gradient(
    135deg,
    #fff5e6 0%,
    #ffefd5 100%
  ); /* Light colorful BG */
  font-family: "Poppins", sans-serif;
}

.anti-congress-section-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.anti-congress-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.anti-congress-section-tag {
  background: #ff8c00;
  color: #fff;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.anti-congress-section-title {
  font-size: 40px;
  color: #2c3e50;
  margin: 20px 0;
  font-weight: 800;
}

.anti-congress-section-subtitle {
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
}

.anti-congress-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
}

.anti-congress-section-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-top: 5px solid #ff8c00;
  position: relative;
  overflow: hidden;
}

.anti-congress-section-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(253, 139, 6, 0.15);
}

.anti-congress-section-icon {
  width: 60px;
  height: 60px;
  background: #fff4e5;
  color: #fd8b06;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 15px;
  margin-bottom: 20px;
}

.anti-congress-section-card-title {
  font-size: 22px;
  color: #333;
  margin-bottom: 25px;
  font-weight: 700;
}

.anti-congress-section-split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.anti-congress-section-wrong {
  background: #fff0f0;
  padding: 15px;
  border-left: 4px solid #e74c3c;
  border-radius: 8px;
  font-size: 15px;
  color: #222;
  text-align: justify;
  line-height: 1.6;
}

.anti-congress-section-better {
  background: #f0fff4;
  padding: 15px;
  border-left: 4px solid #27ae60;
  border-radius: 8px;
  font-size: 15px;
  color: #222;
  text-align: justify;
  line-height: 1.6;
}

.anti-congress-section-wrong strong {
  color: #c0392b;
}
.anti-congress-section-better strong {
  color: #1e8449;
}

.news-section {
  padding: 40px 0;
  background-color: #f9f9f9;
  font-family: "Poppins", sans-serif;
}

.news-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.news-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.news-section-tagline {
  color: #fd8b06;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.news-section-main-title {
  font-size: 36px;
  color: #333;
  margin: 10px 0;
  font-weight: 700;
}

.news-section-underline {
  width: 70px;
  height: 4px;
  background: #fd8b06;
  margin: 0 auto;
}

.news-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.news-section-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.news-section-card:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid #fd8b06;
}

.news-section-img-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
  background-color: #eee;
}

.news-section-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: #fff;
  transition: 0.5s;
}

.news-section-card:hover .news-section-img-wrapper img {
  transform: scale(1.1);
}

.news-section-date {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fd8b06;
  color: #fff;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 500;
  border-top-right-radius: 10px;
}

.news-section-content {
  padding: 25px;
}

.news-section-source {
  display: block;
  color: #fd8b06;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.news-section-title {
  font-size: 20px;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.news-section-excerpt {
  color: #222;
  font-size: 15px;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-section-link {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.news-section-link:hover {
  color: #fd8b06;
}

.main-logo {
  height: 91px !important;
}
.desktop-nav .navbar {
  margin-top: -18px;
  margin-bottom: -18px;
}

.desktop-nav .navbar .navbar-nav .nav-item a:hover,
.desktop-nav .navbar .navbar-nav .nav-item a:focus,
.desktop-nav .navbar .navbar-nav .nav-item a.active {
  color: #fb6502 !important;
}
.default-btn.style-2 {
  border: 1px solid #1ca94c;
  background-color: transparent;
}
.default-btn:hover::before {
  border: none !important;
}
.default-btn::after {
  background-color: #1ca94c;
}
.default-btn::before {
  background-color: #fb6502;
}

/* Banner BJP Section */
.banner-bjp-section {
  position: relative;
  height: 670px;
  background: linear-gradient(
    135deg,
    #ff9933 0%,
    #ff8c1a 20%,
    #ff9933 40%,
    #138808 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  overflow: hidden;
}

.banner-bjp-bg-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(circle at 85% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 40%);
  animation: banner-bjp-bg-pulse 8s ease-in-out infinite;
}

@keyframes banner-bjp-bg-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.banner-bjp-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-bjp-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  animation: banner-bjp-particle-float 15s linear infinite;
}

.banner-bjp-particles span:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}
.banner-bjp-particles span:nth-child(2) {
  left: 30%;
  animation-delay: 3s;
}
.banner-bjp-particles span:nth-child(3) {
  left: 50%;
  animation-delay: 6s;
}
.banner-bjp-particles span:nth-child(4) {
  left: 70%;
  animation-delay: 9s;
}
.banner-bjp-particles span:nth-child(5) {
  left: 90%;
  animation-delay: 12s;
}

@keyframes banner-bjp-particle-float {
  0% {
    transform: translateY(540px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}

.banner-bjp-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left Side */
.banner-bjp-left {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.banner-bjp-content {
  width: 100%;
  max-width: 650px;
}

.banner-bjp-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.95)
  );
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 16px;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(255, 153, 51, 0.2);
  font-size: 0.8rem;
  font-weight: 700;
  color: #383838ff;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  animation: banner-bjp-badge-glow 2s ease-in-out infinite;
}

@keyframes banner-bjp-badge-glow {
  0%,
  100% {
    box-shadow:
      0 6px 20px rgba(0, 0, 0, 0.3),
      0 0 0 3px rgba(255, 153, 51, 0.2);
  }
  50% {
    box-shadow:
      0 6px 25px rgba(0, 0, 0, 0.4),
      0 0 0 3px rgba(255, 153, 51, 0.4);
  }
}

.banner-bjp-top-badge i {
  font-size: 1.15rem;
  animation: banner-bjp-flag-wave 2s ease-in-out infinite;
}

@keyframes banner-bjp-flag-wave {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

.banner-bjp-heading {
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.88;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.banner-bjp-fname {
  color: #ffffff;
  text-shadow:
    5px 5px 0 rgba(0, 0, 0, 0.2),
    7px 7px 25px rgba(0, 0, 0, 0.5);
  letter-spacing: -2px;
}

.banner-bjp-lname {
  color: #fff;
  text-shadow:
    5px 5px 0 rgba(0, 0, 0, 0.2),
    7px 7px 25px rgba(0, 0, 0, 0.5);
  letter-spacing: -2px;
}

.banner-bjp-designation-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.95)
  );
  padding: 14px 26px;
  border-radius: 20px;
  margin-bottom: 18px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

.banner-bjp-designation-card:hover {
  transform: translateY(-3px);
}

.banner-bjp-card-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #ff9933);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(255, 153, 51, 0.5);
  animation: banner-bjp-icon-pulse 2s ease-in-out infinite;
}

@keyframes banner-bjp-icon-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.banner-bjp-card-icon i {
  font-size: 1.3rem;
  color: white;
}

.banner-bjp-card-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.banner-bjp-pos {
  font-size: 1.08rem;
  font-weight: 800;
  color: #ff9933;
  line-height: 1.2;
}

.banner-bjp-loc {
  font-size: 0.92rem;
  font-weight: 700;
  color: #138808;
  line-height: 1.2;
}

.banner-bjp-slogan {
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 20px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.banner-bjp-glow-text {
  color: #fff;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.banner-bjp-features-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 20px;
}

.banner-bjp-feature-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.95)
  );
  padding: 12px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 5px solid #138808;
  position: relative;
  overflow: hidden;
}

.banner-bjp-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 153, 51, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.banner-bjp-feature-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
  border-left-width: 8px;
}

.banner-bjp-feature-card:hover::before {
  left: 100%;
}

.banner-bjp-f-icon {
  min-width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #ff9933);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(255, 153, 51, 0.45);
  transition: transform 0.4s ease;
}

.banner-bjp-feature-card:hover .banner-bjp-f-icon {
  transform: rotate(360deg) scale(1.1);
}

.banner-bjp-f-icon i {
  font-size: 1.25rem;
  color: white;
}

.banner-bjp-feature-card p {
  font-size: 0.96rem;
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
}

.banner-bjp-action-btns {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.banner-bjp-primary-button,
.banner-bjp-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 30px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  overflow: hidden;
}

.banner-bjp-primary-button::before,
.banner-bjp-outline-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.banner-bjp-primary-button:hover::before,
.banner-bjp-outline-button:hover::before {
  width: 500px;
  height: 500px;
}

.banner-bjp-primary-button span,
.banner-bjp-primary-button i,
.banner-bjp-outline-button span,
.banner-bjp-outline-button i {
  position: relative;
  z-index: 1;
}

.banner-bjp-primary-button i,
.banner-bjp-outline-button i {
  font-size: 1.15rem;
}

.banner-bjp-primary-button {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.95)
  );
  color: #222;
}

.banner-bjp-primary-button:hover {
  transform: translateY(-5px);
}

.banner-bjp-outline-button {
  background: transparent;
  color: white;
  border: 3px solid white;
}

.banner-bjp-outline-button:hover {
  background: white;
  color: #ff9933;
  transform: translateY(-5px);
}

.banner-bjp-social-row {
  display: flex;
  gap: 12px;
}

.banner-bjp-social-link {
  width: 42px;
  height: 42px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.95)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9933;
  font-size: 1.15rem;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.banner-bjp-social-link:hover {
  background: linear-gradient(135deg, #ff9933, #138808);
  color: white;
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 12px 32px rgba(255, 153, 51, 0.6);
}

/* Right Side */
.banner-bjp-right {
  flex: 0 0 380px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-bjp-photo-wrapper {
  position: relative;
  width: 450px;
  height: 480px;
}

.banner-bjp-photo-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 12px solid rgba(255, 255, 255, 0.35);
  border-radius: 28px;
  box-shadow:
    0 0 0 20px rgba(255, 255, 255, 0.15),
    inset 0 0 60px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  z-index: 2;
}

.banner-bjp-photo-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.4),
    rgba(19, 136, 8, 0.4)
  );
  border-radius: 35px;
  filter: blur(20px);
  animation: banner-bjp-photo-glow-pulse 3s ease-in-out infinite;
}

@keyframes banner-bjp-photo-glow-pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.banner-bjp-main-photo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.7);
}

.banner-bjp-logo-circle {
  position: absolute;
  bottom: 22px;
  right: 22px;
  width: 88px;
  height: 88px;
  background: white;
  border-radius: 50%;
  padding: 13px;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.55),
    0 0 0 5px rgba(255, 255, 255, 0.4);
  z-index: 3;
  animation: banner-bjp-logo-float-anim 3s ease-in-out infinite;
}

@keyframes banner-bjp-logo-float-anim {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(5deg);
  }
}

.banner-bjp-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner-bjp-logo-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  border: 3px solid rgba(255, 153, 51, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: banner-bjp-ring-expand 2.5s ease-out infinite;
}

@keyframes banner-bjp-ring-expand {
  0% {
    width: 110px;
    height: 110px;
    opacity: 1;
  }
  100% {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}

.banner-bjp-corner-tl,
.banner-bjp-corner-tr,
.banner-bjp-corner-bl,
.banner-bjp-corner-br {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 5px solid white;
  z-index: 3;
}

.banner-bjp-corner-tl {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 28px;
}

.banner-bjp-corner-tr {
  top: -2px;
  right: -2px;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 28px;
}

.banner-bjp-corner-bl {
  bottom: -2px;
  left: -2px;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 28px;
}

.banner-bjp-corner-br {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 28px;
}

/* Featured Achievements Section */
.featured-achievements-bjp-section {
  background: linear-gradient(180deg, #edf8fe 0%, #f8f9fa 100%);
  padding: 40px 50px;
  position: relative;
  overflow: hidden;
}

.featured-achievements-bjp-container {
  max-width: 1400px;
  margin: 0 auto;
}

.featured-achievements-bjp-header {
  text-align: center;
  margin-bottom: 60px;
}

.featured-achievements-bjp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
}

.featured-achievements-bjp-badge i {
  font-size: 16px;
}

.featured-achievements-bjp-title {
  font-size: 36px;
  font-weight: 600;
  background: linear-gradient(135deg, #222 0%, #222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.featured-achievements-bjp-subtitle {
  font-size: 17px;
  color: #222;
  font-weight: 500;
}

.featured-achievements-bjp-swiper {
  padding: 40px 60px 60px;
  position: relative;
}

.featured-achievements-bjp-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  height: 330px !important;
  border: 2px solid transparent;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.featured-achievements-bjp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff9933 0%, #138808 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.featured-achievements-bjp-card:hover {
  border-color: #ff9933;
  box-shadow: 0 15px 45px rgba(255, 102, 0, 0.2);
}

.featured-achievements-bjp-card:hover::before {
  transform: scaleX(1);
}

.featured-achievements-bjp-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.25);
}

.featured-achievements-bjp-icon i {
  font-size: 28px;
  color: #fff;
}

.featured-achievements-bjp-card:nth-child(even)
  .featured-achievements-bjp-icon {
  background: linear-gradient(135deg, #138808 0%, #0d6006 100%);
  box-shadow: 0 8px 20px rgba(19, 136, 8, 0.25);
}

.featured-achievements-bjp-card-title {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.featured-achievements-bjp-card-desc {
  font-size: 16px;
  color: #222;
  text-align: justify;
  line-height: 1.7;
  margin-bottom: 25px;
}

.featured-achievements-bjp-stats {
  display: flex;
  gap: 15px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.featured-achievements-bjp-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #ff6600;
}

.featured-achievements-bjp-stat i {
  font-size: 16px;
}

/* Navigation Buttons */
.featured-achievements-bjp-button-prev,
.featured-achievements-bjp-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
  transition: all 0.3s ease;
}

.featured-achievements-bjp-button-prev:hover,
.featured-achievements-bjp-button-next:hover {
  background: linear-gradient(135deg, #138808 0%, #0d6006 100%);
  box-shadow: 0 8px 30px rgba(19, 136, 8, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.featured-achievements-bjp-button-prev {
  left: 0;
}

.featured-achievements-bjp-button-next {
  right: 0;
}

.featured-achievements-bjp-button-prev i,
.featured-achievements-bjp-button-next i {
  color: #fff;
  font-size: 18px;
}

/* About Us Section */
.about-us-bjp-section {
  background: #f8f9fa;
  padding: 80px 50px;
}

.about-us-bjp-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: start;
}

/* Left - Image */
.about-us-bjp-image-wrapper {
  position: sticky;
  top: 100px;
}

.about-us-bjp-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 5px solid;
  border-image: linear-gradient(135deg, #ff9933, #fff, #138808) 1;
}

/* Right - Content */
.about-us-bjp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff9933, #ff6600);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-us-bjp-title {
  font-size: 36px;
  font-weight: 600;
  background: linear-gradient(135deg, #222, #222);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 8px 0;
}

.about-us-bjp-role {
  font-size: 17px;
  color: #222;
  font-weight: 600;
  margin: 0 0 20px 0;
}

.about-us-bjp-bio {
  font-size: 17px;
  line-height: 1.6;
  color: #222;
  margin: 0 0 20px 0;
}

/* Book */
.about-us-bjp-book {
  display: flex;
  gap: 15px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.1),
    rgba(19, 136, 8, 0.1)
  );
  padding: 18px;
  border-radius: 12px;
  border-left: 4px solid #ff9933;
  margin-bottom: 20px;
}

.about-us-bjp-book i {
  font-size: 26px;
  color: #ff6600;
}

.about-us-bjp-book h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ff6600;
  margin: 0;
}

/* Work */
.about-us-bjp-work {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.about-us-bjp-work-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  border: 2px solid #f0f0f0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.about-us-bjp-work-item i {
  color: #ff6600;
}

/* Timeline */
.about-us-bjp-timeline {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.about-us-bjp-timeline h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-us-bjp-timeline h3 i {
  color: #ff6600;
}

.about-us-bjp-item {
  padding: 12px 0 12px 20px;
  border-left: 3px solid #ff9933;
  margin-bottom: 12px;
  position: relative;
}

.about-us-bjp-item:last-child {
  margin-bottom: 0;
}

.about-us-bjp-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 15px;
  width: 11px;
  height: 11px;
  background: #ff9933;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 153, 51, 0.3);
}

.about-us-bjp-item:nth-child(even) {
  border-left-color: #138808;
}

.about-us-bjp-item:nth-child(even)::before {
  background: #138808;
  box-shadow: 0 0 0 2px rgba(19, 136, 8, 0.3);
}

.about-us-bjp-year {
  display: inline-block;
  background: linear-gradient(135deg, #ff9933, #ff6600);
  color: #fff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  margin-right: 8px;
}

.about-us-bjp-item:nth-child(even) .about-us-bjp-year {
  background: linear-gradient(135deg, #138808, #0d6006);
}

.about-us-bjp-item strong {
  font-size: 15px;
  color: #333;
}

/* Digital Campaigns Section */
.digital-campaign-bjp-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 50px 50px;
  position: relative;
}

.digital-campaign-bjp-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.digital-campaign-bjp-header {
  text-align: center;
  margin-bottom: 50px;
}

.digital-campaign-bjp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
}

.digital-campaign-bjp-title {
  font-size: 36px;
  font-weight: 600;
  background: linear-gradient(135deg, #222 0%, #222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 15px 0;
}

.digital-campaign-bjp-subtitle {
  font-size: 17px;
  color: #222;
  font-weight: 500;
}

/* Campaigns Grid */
.digital-campaign-bjp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  margin-bottom: 60px;
}

.digital-campaign-bjp-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.digital-campaign-bjp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff9933 0%, #138808 100%);
}

.digital-campaign-bjp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(248, 245, 243, 0.2);
  border-color: #ff9933;
}

.digital-campaign-bjp-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.digital-campaign-bjp-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

.digital-campaign-bjp-icon i {
  font-size: 28px;
  color: #fff;
}

.digital-campaign-bjp-tag {
  background: rgba(255, 153, 51, 0.1);
  color: #222;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.digital-campaign-bjp-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.digital-campaign-bjp-card-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  text-align: justify;
  margin: 0 0 25px 0;
}

/* Stats Grid */
.digital-campaign-bjp-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.digital-campaign-bjp-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 12px;
  border-left: 3px solid #ff9933;
}

.digital-campaign-bjp-stat i {
  font-size: 24px;
  color: #ff6600;
}

.digital-campaign-bjp-stat strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.digital-campaign-bjp-stat span {
  display: block;
  font-size: 12px;
  color: #222;
  font-weight: 500;
}

/* Outcome */
.digital-campaign-bjp-outcome {
  display: flex;
  align-items: start;
  gap: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.1) 0%,
    rgba(19, 136, 8, 0.1) 100%
  );
  padding: 15px;
  border-radius: 12px;
  border-left: 4px solid #138808;
}

.digital-campaign-bjp-outcome i {
  font-size: 20px;
  color: #138808;
  flex-shrink: 0;
  margin-top: 2px;
}

.digital-campaign-bjp-outcome span {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
}

/* Analytics Dashboard */
.digital-campaign-bjp-analytics {
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  padding: 35px;
  border-radius: 25px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(255, 102, 0, 0.3);
}

.digital-campaign-bjp-analytics-title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 35px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.digital-campaign-bjp-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.digital-campaign-bjp-metric-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s ease;
}

.digital-campaign-bjp-metric-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.digital-campaign-bjp-metric-card i {
  font-size: 36px;
  color: #fff;
}

.digital-campaign-bjp-metric-content h4 {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 5px 0;
}

.digital-campaign-bjp-metric-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin: 0;
}

/* Testimonials */
.digital-campaign-bjp-testimonials {
  background: #fff;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.digital-campaign-bjp-testimonials-title {
  font-size: 30px;
  font-weight: 800;
  color: #222;
  margin: 0 0 40px 0;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.digital-campaign-bjp-testimonials-title i {
  color: #ff6600;
}

.digital-campaign-bjp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.digital-campaign-bjp-testimonial {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 18px;
  border-left: 5px solid #ff9933;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.digital-campaign-bjp-testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(255, 102, 0, 0.15);
}

.digital-campaign-bjp-testimonial-content {
  position: relative;
  margin-bottom: 20px;
}

.digital-campaign-bjp-quote-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 40px;
  color: rgba(255, 153, 51, 0.15);
}

.digital-campaign-bjp-testimonial-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  text-align: justify;
  font-style: italic;
  margin: 0;
}

.digital-campaign-bjp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.digital-campaign-bjp-author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.digital-campaign-bjp-author-avatar i {
  font-size: 24px;
  color: #fff;
}

.digital-campaign-bjp-testimonial-author h5 {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  margin: 0 0 4px 0;
}

.digital-campaign-bjp-testimonial-author span {
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

/* Media & Publications Section */
.media-publication-bjp-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 50px 50px;
  position: relative;
}

.media-publication-bjp-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.media-publication-bjp-header {
  text-align: center;
  margin-bottom: 60px;
}

.media-publication-bjp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
}

.media-publication-bjp-title {
  font-size: 36px;
  font-weight: 600;
  background: linear-gradient(135deg, #222 0%, #222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 15px 0;
}

.media-publication-bjp-subtitle {
  font-size: 17px;
  color: #222;
  font-weight: 500;
}

/* Featured Book */
.media-publication-bjp-featured-book {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  background: #fff;
  padding: 45px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 70px;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #ff9933, #138808) border-box;
}

.media-publication-bjp-book-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-publication-bjp-book-cover {
  width: 100%;
  max-width: 300px;
  height: 400px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.media-publication-bjp-book-cover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(19, 136, 8, 0.3) 100%
  );
}

.media-publication-bjp-book-cover i {
  font-size: 120px;
  color: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.media-publication-bjp-book-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #138808;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.media-publication-bjp-book-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.media-publication-bjp-book-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 153, 51, 0.1);
  color: #ff6600;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 15px;
}

.media-publication-bjp-book-title {
  font-size: 28px;
  font-weight: 500;
  color: #222;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.media-publication-bjp-book-subtitle {
  font-size: 24px;
  color: #ff6600;
  font-weight: 500;
  margin: 0 0 20px 0;
}

.media-publication-bjp-book-desc {
  font-size: 17px;
  line-height: 1.8;
  color: #222;
  text-align: justify;
  margin: 0 0 25px 0;
}

.media-publication-bjp-book-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.media-publication-bjp-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: #222;
}

.media-publication-bjp-highlight i {
  color: #138808;
  font-size: 18px;
}

.media-publication-bjp-book-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.media-publication-bjp-btn-primary,
.media-publication-bjp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.media-publication-bjp-btn-primary {
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

.media-publication-bjp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

.media-publication-bjp-btn-secondary {
  background: #fff;
  color: #ff6600;
  border: 2px solid #ff6600;
}

.media-publication-bjp-btn-secondary:hover {
  background: #ff6600;
  color: #fff;
  transform: translateY(-3px);
}

/* Section Titles */
.media-publication-bjp-section-title {
  font-size: 32px;
  font-weight: 600;
  color: #222;
  margin: 0 0 35px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.media-publication-bjp-section-title i {
  color: #ff6600;
}

/* Articles */
.media-publication-bjp-articles {
  margin-bottom: 70px;
}

.media-publication-bjp-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.media-publication-bjp-article-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #ff9933;
  transition: all 0.3s ease;
}

.media-publication-bjp-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 102, 0, 0.15);
}

.media-publication-bjp-article-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.media-publication-bjp-article-source {
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
}

.media-publication-bjp-article-date {
  font-size: 13px;
  color: #222;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.media-publication-bjp-article-title {
  font-size: 19px;
  font-weight: 500;
  color: #222;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.media-publication-bjp-article-excerpt {
  font-size: 16px;
  text-align: justify;
  line-height: 1.6;
  color: #222;
  margin: 0 0 15px 0;
}

.media-publication-bjp-article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.media-publication-bjp-tag {
  background: rgba(255, 153, 51, 0.1);
  color: #ff6600;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.media-publication-bjp-article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.media-publication-bjp-article-link:hover {
  gap: 12px;
  color: #138808;
}

/* Media Coverage */
.media-publication-bjp-coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.media-publication-bjp-coverage-card {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 15px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.media-publication-bjp-coverage-card:hover {
  border-color: #ff9933;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.12);
}

.media-publication-bjp-coverage-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.media-publication-bjp-coverage-icon i {
  font-size: 28px;
  color: #fff;
}

.media-publication-bjp-coverage-content h4 {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  margin: 0 0 8px 0;
}

.media-publication-bjp-coverage-content p {
  font-size: 16px !important;
  line-height: 1.6;
  color: #222;
  text-align: justify;
  margin: 0 0 12px 0;
}

.media-publication-bjp-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.media-publication-bjp-pdf-link:hover {
  color: #138808;
}

/* Blogs & Thought Leadership Section */
.blogs-bjp-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 50px;
  position: relative;
}

.blogs-bjp-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.blogs-bjp-header {
  text-align: center;
  margin-bottom: 60px;
}

.blogs-bjp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
}

.blogs-bjp-title {
  font-size: 36px;
  font-weight: 600;
  background: linear-gradient(135deg, #222 0%, #222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 15px 0;
}

.blogs-bjp-subtitle {
  font-size: 17px;
  color: #222;
  font-weight: 500;
}

/* Featured Blog */
.blogs-bjp-featured {
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  padding: 45px;
  border-radius: 25px;
  margin-bottom: 60px;
  box-shadow: 0 15px 50px rgba(255, 102, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.blogs-bjp-featured::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.blogs-bjp-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.blogs-bjp-featured-content {
  position: relative;
  z-index: 1;
}

.blogs-bjp-featured-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.blogs-bjp-category,
.blogs-bjp-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.blogs-bjp-featured-title {
  font-size: 33px;
  font-weight: 600;
  color: #222;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.blogs-bjp-featured-excerpt {
  font-size: 17px;
  line-height: 1.8;
  color: #222;
  margin: 0 0 25px 0;
  text-align: justify;
}

.blogs-bjp-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #222;
  letter-spacing: 1px;
  padding: 10px 25px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blogs-bjp-read-more:hover {
  transform: translateX(5px);
}

/* Blog Grid */
.blogs-bjp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

.blogs-bjp-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #ff9933;
  transition: all 0.3s ease;
  position: relative;
}

.blogs-bjp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(255, 102, 0, 0.2);
}

.blogs-bjp-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.15) 0%,
    rgba(19, 136, 8, 0.15) 100%
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.blogs-bjp-card-icon i {
  font-size: 28px;
  color: #ff6600;
}

.blogs-bjp-card-category {
  display: inline-block;
  background: rgba(255, 153, 51, 0.1);
  color: #ff6600;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.blogs-bjp-card-title {
  font-size: 20px;
  font-weight: 500;
  color: #222;
  margin: 0 0 15px 0;
  line-height: 1.4;
}

.blogs-bjp-card-excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  text-align: justify;
  margin: 0 0 20px 0;
}

.blogs-bjp-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 2px solid #f0f0f0;
  margin-bottom: 15px;
}

.blogs-bjp-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

.blogs-bjp-card-read {
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

.blogs-bjp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff6600;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blogs-bjp-card-link:hover {
  gap: 12px;
  color: #138808;
}

/* Topics */
.blogs-bjp-topics {
  background: #fff;
  padding: 45px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
}

.blogs-bjp-topics-title {
  font-size: 28px;
  font-weight: 600;
  color: #222;
  margin: 0 0 30px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blogs-bjp-topics-title i {
  color: #ff6600;
}

.blogs-bjp-topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.blogs-bjp-topic {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 15px 22px;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  transition: all 0.3s ease;
}

.blogs-bjp-topic:hover {
  border-color: #ff9933;
  transform: translateY(-3px);
}

.blogs-bjp-topic i {
  font-size: 22px;
  color: #ff6600;
}

/* CTA */
.blogs-bjp-cta {
  background: linear-gradient(135deg, #138808 0%, #0d6006 100%);
  padding: 40px 45px;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: 0 10px 40px rgba(19, 136, 8, 0.3);
}

.blogs-bjp-cta-content h3 {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 10px 0;
}

.blogs-bjp-cta-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.blogs-bjp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #222;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.blogs-bjp-cta-btn:hover {
  transform: translateY(-3px);
}

/* Gallery Section */
.gallery-bjp-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 50px 50px;
  position: relative;
}

.gallery-bjp-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.gallery-bjp-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-bjp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
}

.gallery-bjp-title {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #222 0%, #222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 15px 0;
}

.gallery-bjp-subtitle {
  font-size: 17px;
  color: #666;
  font-weight: 500;
}

/* Filters */
.gallery-bjp-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.gallery-bjp-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #333;
  border: 1px solid #b4afafff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-bjp-filter-btn:hover {
  border-color: #ff9933;
  color: #ff6600;
  transform: translateY(-2px);
}

.gallery-bjp-filter-btn.active {
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

/* Gallery Grid */
.gallery-bjp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.gallery-bjp-item {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.gallery-bjp-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-bjp-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(255, 102, 0, 0.2);
}

.gallery-bjp-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-bjp-image-wrapper:hover .gallery-bjp-image {
  transform: scale(1.1);
}

/* Overlay */
.gallery-bjp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-bjp-image-wrapper:hover .gallery-bjp-overlay {
  opacity: 1;
}

.gallery-bjp-overlay-content {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-bjp-image-wrapper:hover .gallery-bjp-overlay-content {
  transform: translateY(0);
}

.gallery-bjp-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
}

.gallery-bjp-overlay-content h4 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.gallery-bjp-overlay-content p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.gallery-bjp-view-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.gallery-bjp-image-wrapper:hover .gallery-bjp-view-btn {
  opacity: 1;
  transform: scale(1);
}

.gallery-bjp-view-btn:hover {
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  transform: scale(1.1);
}

.gallery-bjp-view-btn i {
  font-size: 18px;
  color: #ff6600;
  transition: color 0.3s ease;
}

.gallery-bjp-view-btn:hover i {
  color: #fff;
}

/* Impact Dashboard Section */
.impact-dashboard-bjp-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 50px 50px;
  position: relative;
}

.impact-dashboard-bjp-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.impact-dashboard-bjp-header {
  text-align: center;
  margin-bottom: 60px;
}

.impact-dashboard-bjp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
}

.impact-dashboard-bjp-title {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #222 0%, #222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 15px 0;
}

.impact-dashboard-bjp-subtitle {
  font-size: 17px;
  color: #222;
  font-weight: 500;
}

/* Key Stats */
.impact-dashboard-bjp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 70px;
}

.impact-dashboard-bjp-stat-card {
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  padding: 35px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 35px rgba(255, 102, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.impact-dashboard-bjp-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(255, 102, 0, 0.4);
}

.impact-dashboard-bjp-stat-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.impact-dashboard-bjp-stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.impact-dashboard-bjp-stat-icon i {
  font-size: 28px;
  color: #fff;
}

.impact-dashboard-bjp-stat-content h3 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 5px 0;
}

.impact-dashboard-bjp-stat-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  margin: 0 0 8px 0;
}

.impact-dashboard-bjp-stat-growth {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
}

/* Section Titles */
.impact-dashboard-bjp-section-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin: 0 0 35px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.impact-dashboard-bjp-section-title i {
  color: #ff6600;
}

/* Social Media */
.impact-dashboard-bjp-social {
  margin-bottom: 70px;
}

.impact-dashboard-bjp-social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.impact-dashboard-bjp-social-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #ff9933;
}

.impact-dashboard-bjp-social-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.impact-dashboard-bjp-social-platform {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.impact-dashboard-bjp-social-platform i {
  font-size: 24px;
  color: #ff6600;
}

.impact-dashboard-bjp-month {
  font-size: 13px;
  color: #222;
  font-weight: 500;
}

.impact-dashboard-bjp-social-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.impact-dashboard-bjp-metric {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 12px;
}

.impact-dashboard-bjp-metric i {
  font-size: 20px;
  color: #ff6600;
}

.impact-dashboard-bjp-metric strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.impact-dashboard-bjp-metric span {
  display: block;
  font-size: 12px;
  color: #222;
  font-weight: 500;
}

.impact-dashboard-bjp-progress-bar {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.impact-dashboard-bjp-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff9933 0%, #138808 100%);
  border-radius: 10px;
  transition: width 1s ease;
}

.impact-dashboard-bjp-progress-text {
  font-size: 13px;
  color: #222;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

/* Campaigns */
.impact-dashboard-bjp-campaigns {
  margin-bottom: 70px;
}

.impact-dashboard-bjp-campaigns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.impact-dashboard-bjp-campaign-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 28px;
  border-radius: 18px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.impact-dashboard-bjp-campaign-card:hover {
  border-color: #ff9933;
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(255, 102, 0, 0.15);
}

.impact-dashboard-bjp-campaign-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.impact-dashboard-bjp-campaign-header h4 {
  font-size: 19px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

.impact-dashboard-bjp-campaign-status {
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.impact-dashboard-bjp-campaign-status.success {
  background: #138808;
  color: #fff;
}

.impact-dashboard-bjp-campaign-status.active {
  background: #ff9933;
  color: #fff;
}

.impact-dashboard-bjp-campaign-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.impact-dashboard-bjp-campaign-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.impact-dashboard-bjp-campaign-stat i {
  color: #ff6600;
  font-size: 16px;
}

/* Operations */
.impact-dashboard-bjp-operations {
  margin-bottom: 70px;
}

.impact-dashboard-bjp-operations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.impact-dashboard-bjp-operation-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.impact-dashboard-bjp-operation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 102, 0, 0.2);
}

.impact-dashboard-bjp-operation-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.15) 0%,
    rgba(19, 136, 8, 0.15) 100%
  );
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.impact-dashboard-bjp-operation-icon i {
  font-size: 32px;
  color: #ff6600;
}

.impact-dashboard-bjp-operation-card h4 {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  margin: 0 0 12px 0;
}

.impact-dashboard-bjp-operation-number {
  font-size: 28px;
  font-weight: 600;
  background: #222;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.impact-dashboard-bjp-operation-card p {
  font-size: 16px;
  color: #222;
  text-align: justify;
  margin: 0 0 20px 0;
}

.impact-dashboard-bjp-operation-chart {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: flex-end;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 8px;
}

.impact-dashboard-bjp-chart-bar {
  width: 100%;
  background: linear-gradient(180deg, #ff9933 0%, #ff6600 100%);
  border-radius: 5px;
  transition: height 1s ease;
}

/* Real-time Updates */
.impact-dashboard-bjp-realtime {
  background: linear-gradient(135deg, #138808 0%, #0d6006 100%);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(19, 136, 8, 0.3);
}

.impact-dashboard-bjp-realtime-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.impact-dashboard-bjp-realtime-header h3 {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.impact-dashboard-bjp-live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.impact-dashboard-bjp-pulse {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  animation: impact-dashboard-bjp-pulse 2s infinite;
}

@keyframes impact-dashboard-bjp-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.impact-dashboard-bjp-updates-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.impact-dashboard-bjp-update-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-left: 4px solid #fff;
  padding: 18px 22px;
  border-radius: 12px;
}

.impact-dashboard-bjp-update-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.impact-dashboard-bjp-update-item p {
  font-size: 16px;
  color: #fff;
  margin: 0;
  line-height: 1.5;
}

.impact-dashboard-bjp-update-item strong {
  color: #fff;
  font-size: 16px;

  font-weight: 500;
}

/* Contact & Connect Section */
.contact-bjp-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 30px 50px;
  position: relative;
  font-family: "Poppins", sans-serif;
}

.contact-bjp-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header */
.contact-bjp-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-bjp-title {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin: 15px 0;
}

.contact-bjp-subtitle {
  font-size: 17px;
  color: #666;
  font-weight: 500;
}

/* Main Grid */
.contact-bjp-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
}

/* Form Card */
.contact-bjp-form-card,
.contact-bjp-volunteer-card,
.contact-bjp-social-card,
.contact-bjp-newsletter-card,
.contact-bjp-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.contact-bjp-form-card:hover,
.contact-bjp-volunteer-card:hover,
.contact-bjp-social-card:hover,
.contact-bjp-newsletter-card:hover,
.contact-bjp-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 102, 0, 0.15);
}

/* Form Headers */
.contact-bjp-form-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #f0f0f0;
}

.contact-bjp-form-header i {
  font-size: 32px;
  color: #ff6600;
}

.contact-bjp-form-header h3 {
  font-size: 26px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

/* Form Styles */
.contact-bjp-form,
.contact-bjp-volunteer-form,
.contact-bjp-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-bjp-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-bjp-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-bjp-form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-bjp-form-group label i {
  color: #ff6600;
  font-size: 14px;
}

.contact-bjp-input,
.contact-bjp-textarea {
  width: 100%;
  padding: 10px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.contact-bjp-input:focus,
.contact-bjp-textarea:focus {
  outline: none;
  border-color: #ff9933;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.1);
}

.contact-bjp-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Buttons */
.contact-bjp-submit-btn,
.contact-bjp-volunteer-btn,
.contact-bjp-newsletter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 32px;
  border: none;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-bjp-submit-btn,
.contact-bjp-newsletter-btn {
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  color: #fff;
  box-shadow: 0 6px 25px rgba(255, 102, 0, 0.3);
}

.contact-bjp-submit-btn:hover,
.contact-bjp-newsletter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 102, 0, 0.4);
}

.contact-bjp-volunteer-btn {
  background: linear-gradient(135deg, #138808 0%, #0d6006 100%);
  color: #fff;
  box-shadow: 0 6px 25px rgba(19, 136, 8, 0.3);
}

.contact-bjp-volunteer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(19, 136, 8, 0.4);
}

/* Volunteer Card Header */
.contact-bjp-volunteer-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.1) 0%,
    rgba(19, 136, 8, 0.1) 100%
  );
  border-radius: 15px;
  border-left: 5px solid #138808;
}

.contact-bjp-volunteer-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #138808 0%, #0d6006 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-bjp-volunteer-icon i {
  font-size: 28px;
  color: #fff;
}

.contact-bjp-volunteer-header h3 {
  font-size: 22px;
  font-weight: 500;
  color: #333;
  margin: 0 0 5px 0;
}

.contact-bjp-volunteer-header p {
  font-size: 14px;
  color: #222;
  margin: 0;
}

/* Social Media Links */
.contact-bjp-social-title {
  font-size: 22px;
  font-weight: 500 !important;
  color: #222;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-bjp-social-title i {
  color: #ff6600;
}

.contact-bjp-social-subtitle {
  font-size: 14px;
  color: #222;
  margin: 0 0 25px 0;
}

.contact-bjp-social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-bjp-social-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-bjp-social-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ff6600;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.contact-bjp-social-link:hover::before {
  transform: scaleY(1);
}

.contact-bjp-social-link:hover {
  background: #fff;
  border-color: #ff9933;
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(255, 102, 0, 0.15);
}

.contact-bjp-social-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  color: #fff;
  transition: transform 0.3s ease;
}

.contact-bjp-social-link:hover .contact-bjp-social-icon {
  transform: scale(1.1);
}

.contact-bjp-social-link.twitter .contact-bjp-social-icon {
  background: #1da1f2;
}
.contact-bjp-social-link.instagram .contact-bjp-social-icon {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}
.contact-bjp-social-link.facebook .contact-bjp-social-icon {
  background: #1877f2;
}
.contact-bjp-social-link.linkedin .contact-bjp-social-icon {
  background: #0a66c2;
}
.contact-bjp-social-link.telegram .contact-bjp-social-icon {
  background: #0088cc;
}
.contact-bjp-social-link.youtube .contact-bjp-social-icon {
  background: #ff0000;
}

.contact-bjp-social-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-bjp-social-platform {
  font-size: 15px;
  font-weight: 700;
  color: #333;
}

.contact-bjp-social-handle {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.contact-bjp-social-arrow {
  font-size: 16px;
  color: #999;
  transition: all 0.3s ease;
}

.contact-bjp-social-link:hover .contact-bjp-social-arrow {
  color: #ff6600;
  transform: translateX(5px);
}

/* Newsletter Card */
.contact-bjp-newsletter-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: bjp-pulse 2s ease-in-out infinite;
}

@keyframes bjp-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.contact-bjp-newsletter-icon i {
  font-size: 32px;
  color: #fff;
}

.contact-bjp-newsletter-title {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  text-align: center;
  margin: 0 0 12px 0;
}

.contact-bjp-newsletter-text {
  font-size: 15px;
  line-height: 1.6;
  color: #222;
  text-align: justify;
  margin: 0 0 25px 0;
}

.contact-bjp-newsletter-options {
  margin-top: 20px;
  text-align: center;
}

.contact-bjp-newsletter-or {
  font-size: 13px;
  color: #999;
  font-weight: 600;
  margin: 20px 0;
  position: relative;
}

.contact-bjp-newsletter-or::before,
.contact-bjp-newsletter-or::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: #e0e0e0;
}

.contact-bjp-newsletter-or::before {
  left: 0;
}
.contact-bjp-newsletter-or::after {
  right: 0;
}

.contact-bjp-telegram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #0088cc;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-bjp-telegram-btn:hover {
  background: #006699;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3);
}

/* Quick Contact Info */
.contact-bjp-info-title {
  font-size: 20px;
  font-weight: 800;
  color: #333;
  margin: 0 0 25px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-bjp-info-title i {
  color: #ff6600;
}

.contact-bjp-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-bjp-info-item {
  display: flex;
  align-items: start;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 3px solid #ff9933;
}

.contact-bjp-info-item i {
  font-size: 20px;
  color: #ff6600;
  margin-top: 2px;
}

.contact-bjp-info-item strong {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 4px;
}

.contact-bjp-info-item a,
.contact-bjp-info-item span {
  font-size: 14px;
  color: #666;
  text-decoration: none;
}

.contact-bjp-info-item a:hover {
  color: #ff6600;
}

/* Responsive */

/* Influence Building Section */
.influence-bjp-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 20px;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.influence-bjp-container {
  max-width: 1250px;
  margin: 0 auto;
}

/* Section Headers */
.influence-bjp-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.influence-bjp-title {
  font-family: "Montserrat", sans-serif;
  font-size: 44px;
  font-weight: 900;
  margin: 15px 0;
}

.influence-bjp-subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 500;
}

/* Testimonials */
.influence-bjp-testimonials {
  margin-bottom: 100px;
}

.influence-bjp-testimonials-swiper {
  padding: 40px 60px 80px;
  position: relative;
}

.influence-bjp-testimonial-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 4px solid #ff9933;
  transition: all 0.3s ease;
}

.influence-bjp-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(255, 102, 0, 0.2);
}

.influence-bjp-quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  color: rgba(255, 153, 51, 0.1);
}

.influence-bjp-testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 30px 0;
  flex: 1;
  font-style: italic;
}

.influence-bjp-testimonial-author {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-top: 25px;
  border-top: 2px solid #f0f0f0;
}

.influence-bjp-author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.influence-bjp-author-avatar i {
  font-size: 28px;
  color: #fff;
}

.influence-bjp-author-info h4 {
  font-size: 18px;
  font-weight: 800;
  color: #333;
  margin: 0 0 5px 0;
}

.influence-bjp-author-info p {
  font-size: 14px;
  color: #666;
  margin: 0 0 8px 0;
}

.influence-bjp-rating i {
  color: #ffa500;
  font-size: 14px;
  margin-right: 2px;
}

/* Swiper Navigation */
.influence-bjp-testimonial-prev,
.influence-bjp-testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
  transition: all 0.3s ease;
}

.influence-bjp-testimonial-prev:hover,
.influence-bjp-testimonial-next:hover {
  background: linear-gradient(135deg, #138808 0%, #0d6006 100%);
  transform: translateY(-50%) scale(1.1);
}

.influence-bjp-testimonial-prev {
  left: 0;
}

.influence-bjp-testimonial-next {
  right: 0;
}

.influence-bjp-testimonial-prev i,
.influence-bjp-testimonial-next i {
  color: #fff;
  font-size: 18px;
}

.influence-bjp-testimonial-pagination {
  text-align: center;
  margin-top: 40px;
}

/* Social Feeds */
.influence-bjp-social-feeds {
  margin-bottom: 100px;
  margin-top: -16px;
}

.influence-bjp-feeds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.influence-bjp-feed-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.influence-bjp-feed-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dddada;
}

.influence-bjp-feed-header i {
  font-size: 28px;
  color: #ff6600;
}

.influence-bjp-feed-header h3 {
  font-size: 22px;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.influence-bjp-feed-embed {
  border-radius: 15px;
  overflow: hidden;
}

/* Videos */
.influence-bjp-videos {
  margin-bottom: 50px;
}

.influence-bjp-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.influence-bjp-video-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.influence-bjp-video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(255, 102, 0, 0.2);
}

.influence-bjp-video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}

.influence-bjp-video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.influence-bjp-video-card:hover .influence-bjp-video-thumbnail img {
  transform: scale(1.1);
}

.influence-bjp-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 153, 51, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.influence-bjp-video-card:hover .influence-bjp-play-btn {
  background: #ff6600;
  transform: translate(-50%, -50%) scale(1.1);
}

.influence-bjp-play-btn i {
  font-size: 28px;
  color: #fff;
  margin-left: 5px;
}

.influence-bjp-video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.influence-bjp-video-content {
  padding: 25px;
}

.influence-bjp-video-content h4 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin: 0 0 10px 0;
}

.influence-bjp-video-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #222;
  margin: 0 0 15px 0;
}

.influence-bjp-video-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #333;
}

.influence-bjp-video-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Press Kit */
.influence-bjp-press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.influence-bjp-press-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.influence-bjp-press-card:hover {
  transform: translateY(-8px);
  border-color: #ff9933;
  box-shadow: 0 15px 50px rgba(255, 102, 0, 0.2);
}

.influence-bjp-press-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.15) 0%,
    rgba(19, 136, 8, 0.15) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.influence-bjp-press-icon i {
  font-size: 36px;
  color: #ff6600;
}

.influence-bjp-press-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin: 0 0 12px 0;
}

.influence-bjp-press-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  text-align: justify;
  margin: 0 0 20px 0;
}

.influence-bjp-press-details {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
  font-size: 13px;
  color: #999;
  font-weight: 600;
}

.influence-bjp-press-details span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.influence-bjp-download-btn {
  width: 100%;
  justify-content: center;
  color: #222;
}

/* Media CTA */
.influence-bjp-media-cta {
  background: linear-gradient(135deg, #138808 0%, #0d6006 100%);
  padding: 40px 50px;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: 0 10px 40px rgba(19, 136, 8, 0.3);
}

.influence-bjp-media-cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.influence-bjp-media-cta-content i {
  font-size: 40px;
  color: #fff;
}

.influence-bjp-media-cta-content h3 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 5px 0;
}

.influence-bjp-media-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.influence-bjp-cta-btn {
  white-space: nowrap;
}

/* Advanced Features Section */
.advanced-bjp-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 10px 50px 50px;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.advanced-bjp-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Section Header */
.advanced-bjp-header {
  text-align: center;
  margin-bottom: 70px;
}

.advanced-bjp-title {
  font-family: "Montserrat", sans-serif;
  font-size: 44px;
  font-weight: 900;
  margin: 15px 0;
}

.advanced-bjp-subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 500;
}

/* Training Portal */
.advanced-bjp-training-portal {
  margin-bottom: 100px;
}

.advanced-bjp-portal-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  padding: 50px;
  border-radius: 25px;
  margin-bottom: 60px;
  box-shadow: 0 15px 50px rgba(255, 102, 0, 0.3);
}

.advanced-bjp-portal-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.advanced-bjp-portal-content h3 {
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 15px 0;
}

.advanced-bjp-portal-content p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 30px 0;
}

.advanced-bjp-portal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.advanced-bjp-stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
}

.advanced-bjp-stat-item i {
  font-size: 32px;
  color: #fff;
}

.advanced-bjp-stat-item strong {
  display: block;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}

.advanced-bjp-stat-item span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Portal Form */
.advanced-bjp-portal-form {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.advanced-bjp-portal-form h4 {
  font-size: 22px;
  font-weight: 500;
  color: #333;
  margin: 0 0 25px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.advanced-bjp-portal-form h4 i {
  color: #ff6600;
}

.advanced-bjp-form-group {
  margin-bottom: 15px;
}

.advanced-bjp-input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.advanced-bjp-input:focus {
  outline: none;
  border-color: #ff9933;
  background: #fff;
}

.advanced-bjp-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  background: #fd8e0b;

  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 32px;
  border: none;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

/* Training Modules */
.advanced-bjp-modules {
  background: #fff;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.advanced-bjp-modules-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin: 0 0 35px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.advanced-bjp-modules-title i {
  color: #ff6600;
}

.advanced-bjp-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.advanced-bjp-module-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 18px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.advanced-bjp-module-card:hover {
  border-color: #ff9933;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 102, 0, 0.15);
}

.advanced-bjp-module-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.advanced-bjp-module-icon i {
  font-size: 28px;
  color: #fff;
}

.advanced-bjp-module-card h4 {
  font-size: 19px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
}

.advanced-bjp-module-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  text-align: justify;
  margin: 0 0 20px 0;
}

.advanced-bjp-module-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #353535;
  margin-bottom: 15px;
}

.advanced-bjp-module-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.advanced-bjp-module-progress {
  text-align: center;
}

.advanced-bjp-progress-bar {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.advanced-bjp-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff9933 0%, #138808 100%);
  border-radius: 10px;
}

.advanced-bjp-module-progress span {
  font-size: 12px;
  color: #222;
  font-weight: 500;
}

/* AI Chatbot */
.advanced-bjp-chatbot {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  margin-bottom: 100px;
}

.advanced-bjp-chatbot-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #138808 0%, #0d6006 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.advanced-bjp-chatbot-header h3 {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
}

.advanced-bjp-chatbot-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  margin: 0 0 30px 0;
}

.advanced-bjp-chatbot-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.advanced-bjp-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #222;
  font-weight: 500;
}

.advanced-bjp-feature-item i {
  color: #138808;
  font-size: 18px;
}

/* Chatbot Window */
.advanced-bjp-chatbot-window {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.advanced-bjp-chat-header {
  background: linear-gradient(135deg, #138808 0%, #0d6006 100%);
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.advanced-bjp-chat-avatar {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advanced-bjp-chat-avatar i {
  font-size: 24px;
  color: #fff;
}

.advanced-bjp-chat-info h4 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 5px 0;
}

.advanced-bjp-online-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.advanced-bjp-online-status i {
  font-size: 8px;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.advanced-bjp-chat-messages {
  height: 400px;
  padding: 25px;
  overflow-y: auto;
  background: #f8f9fa;
}

.advanced-bjp-message {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.advanced-bjp-message.user {
  flex-direction: row-reverse;
}

.advanced-bjp-message-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #138808 0%, #0d6006 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advanced-bjp-message-avatar i {
  font-size: 18px;
  color: #fff;
}

.advanced-bjp-message-content {
  max-width: 70%;
  background: #fff;
  padding: 15px 18px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.advanced-bjp-message.user .advanced-bjp-message-content {
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  color: #fff;
}

.advanced-bjp-message-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #222;
  margin: 0;
}

.advanced-bjp-message-content ul {
  margin: 10px 0 0 20px;
  padding: 0;
}

.advanced-bjp-message-content li {
  font-size: 14px;
  color: #222;

  margin-bottom: 5px;
}

.advanced-bjp-chat-input {
  display: flex;
  gap: 12px;
  padding: 20px 25px;
  background: #fff;
  border-top: 2px solid #f0f0f0;
}

.advanced-bjp-chat-field {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.advanced-bjp-chat-field:focus {
  outline: none;
  border-color: #138808;
}

.advanced-bjp-send-btn {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #138808 0%, #0d6006 100%);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.advanced-bjp-send-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(19, 136, 8, 0.3);
}

.advanced-bjp-send-btn i {
  font-size: 16px;
  color: #fff;
}

.advanced-bjp-quick-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 25px 20px;
  background: #fff;
  align-items: center;
}

.advanced-bjp-quick-questions span {
  font-size: 13px;
  color: #222;
  font-weight: 500;
}

.advanced-bjp-quick-btn {
  background: #f0f0f0;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  transition: all 0.3s ease;
}

.advanced-bjp-quick-btn:hover {
  background: #138808;
  color: #fff;
}

/* Digital Library */
.advanced-bjp-library-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.advanced-bjp-library-header {
  text-align: center;
  margin-bottom: 50px;
}

.advanced-bjp-library-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: #333;
  margin: 15px 0;
}

.advanced-bjp-library-header p {
  font-size: 17px;
  color: #222;
}

.advanced-bjp-library-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.advanced-bjp-lib-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  transition: all 0.3s ease;
}

.advanced-bjp-lib-tab:hover,
.advanced-bjp-lib-tab.active {
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.advanced-bjp-library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.advanced-bjp-resource-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.advanced-bjp-resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(255, 102, 0, 0.2);
}

.advanced-bjp-resource-preview {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.advanced-bjp-resource-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.advanced-bjp-resource-card:hover .advanced-bjp-resource-preview img {
  transform: scale(1.1);
}

.advanced-bjp-resource-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.advanced-bjp-resource-card:hover .advanced-bjp-resource-overlay {
  opacity: 1;
}

.advanced-bjp-preview-btn {
  background: #fff;
  color: #333;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.advanced-bjp-preview-btn:hover {
  background: #ff9933;
  color: #fff;
  transform: scale(1.05);
}

.advanced-bjp-resource-info {
  padding: 25px;
}

.advanced-bjp-resource-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.advanced-bjp-resource-tag.posters {
  background: rgba(255, 153, 51, 0.15);
  color: #ff6600;
}
.advanced-bjp-resource-tag.toolkits {
  background: rgba(19, 136, 8, 0.15);
  color: #138808;
}
.advanced-bjp-resource-tag.templates {
  background: rgba(0, 0, 128, 0.15);
  color: #000080;
}
.advanced-bjp-resource-tag.videos {
  background: rgba(255, 0, 0, 0.15);
  color: #ff0000;
}
.advanced-bjp-resource-tag.guides {
  background: rgba(128, 0, 128, 0.15);
  color: #800080;
}

.advanced-bjp-resource-info h4 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin: 0 0 10px 0;
}

.advanced-bjp-resource-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #222;
  margin: 0 0 20px 0;
}

.advanced-bjp-resource-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #999;
  margin-bottom: 20px;
}

.advanced-bjp-resource-meta span {
  display: flex;
  color: #222;
  align-items: center;
  gap: 6px;
}

.advanced-bjp-download-resource {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  background: #fd8e0b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 32px;
  border: none;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}
@media (max-width: 1200px) {
  .gallery-bjp-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .banner-bjp-container {
    gap: 40px;
  }

  .banner-bjp-heading {
    font-size: 4.2rem;
  }

  .banner-bjp-slogan {
    font-size: 1.5rem;
  }

  .banner-bjp-right {
    flex: 0 0 340px;
  }

  .banner-bjp-photo-wrapper {
    width: 320px;
    height: 440px;
  }

  .advanced-bjp-portal-hero,
  .advanced-bjp-chatbot {
    grid-template-columns: 1fr;
  }

  .advanced-bjp-portal-stats {
    grid-template-columns: 1fr;
  }

  .contact-bjp-grid {
    grid-template-columns: 1fr;
  }

  .impact-dashboard-bjp-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .influence-bjp-feeds-grid {
    grid-template-columns: 1fr;
  }

  .influence-bjp-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-achievements-bjp-swiper {
    padding: 30px 50px 50px;
  }

  .featured-achievements-bjp-title {
    font-size: 36px;
  }

  .about-us-bjp-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-us-bjp-image-wrapper {
    position: relative;
    top: 0;
    max-width: 350px;
    margin: 0 auto;
  }

  .digital-campaign-bjp-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .media-publication-bjp-featured-book {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .media-publication-bjp-book-cover {
    max-width: 250px;
    height: 350px;
  }

  .blogs-bjp-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
@media only screen and (max-width: 991px) {
  .mobile-responsive-nav
    .mobile-responsive-menu.mean-container
    .mean-nav
    ul
    li
    a.active {
    color: #fd9822 !important;
  }
  .mobile-responsive-nav
    .mobile-responsive-menu.mean-container
    a.meanmenu-reveal {
    color: #fd9822 !important;
  }
  .navbar-area {
    padding-top: 4px;
    padding-bottom: 3px;
    z-index: 10000;
  }

  .banner-bjp-section {
    height: auto;
    min-height: 540px;
    padding: 40px 30px;
  }

  .banner-bjp-container {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .banner-bjp-left {
    flex: unset;
    height: auto;
  }

  .banner-bjp-right {
    flex: unset;
  }

  .banner-bjp-content {
    text-align: center;
    max-width: 100%;
  }

  .banner-bjp-heading {
    align-items: center;
  }

  .banner-bjp-action-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .banner-bjp-social-row {
    justify-content: center;
  }

  .blog-section-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .blog-section-title {
    font-size: 36px;
  }

  .all-new-schemes-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cols on tablets */
  }
  .news-details-page-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .anti-congress-section-grid {
    grid-template-columns: 1fr;
  }
  .anti-congress-section-title {
    font-size: 30px;
  }

  .news-section-grid {
    grid-template-columns: 1fr;
  }
  .news-section-main-title {
    font-size: 28px;
  }

  .mobile-responsive-nav
    .mobile-responsive-menu.mean-container
    a.meanmenu-reveal
    span {
    background: #222;
    height: 3px;
  }
  .banner-bjp-main-photo {
    height: auto !important;
    width: auto !important;
  }
  .footer-grid {
    text-align: center;
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom-flex {
    justify-content: center;
    text-align: center;
  }

  .advanced-bjp-section {
    padding: 60px 15px;
  }

  .advanced-bjp-title {
    font-size: 32px;
  }

  .advanced-bjp-portal-hero {
    padding: 35px 25px;
  }

  .advanced-bjp-modules,
  .advanced-bjp-portal-form {
    padding: 30px 20px;
  }

  .advanced-bjp-library-grid {
    grid-template-columns: 1fr;
  }

  .contact-bjp-section {
    padding: 60px 15px;
  }

  .contact-bjp-title {
    font-size: 32px;
  }

  .contact-bjp-form-card,
  .contact-bjp-volunteer-card,
  .contact-bjp-social-card,
  .contact-bjp-newsletter-card,
  .contact-bjp-info-card {
    padding: 25px;
  }

  .contact-bjp-form-row {
    grid-template-columns: 1fr;
  }

  .contact-bjp-volunteer-header {
    flex-direction: column;
    text-align: center;
  }

  .banner-bjp-section {
    padding: 30px 20px;
  }

  .banner-bjp-heading {
    font-size: 3.5rem;
  }

  .banner-bjp-slogan {
    font-size: 1.3rem;
  }

  .banner-bjp-photo-wrapper {
    width: 300px;
    height: 400px;
  }

  .banner-bjp-feature-card p {
    font-size: 0.9rem;
    text-align: justify;
    font-weight: 500;
  }

  .banner-bjp-primary-button,
  .banner-bjp-outline-button {
    padding: 10px 28px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
  }

  .gallery-bjp-section {
    padding: 60px 15px;
  }

  .gallery-bjp-title {
    font-size: 32px;
  }

  .gallery-bjp-filters {
    gap: 10px;
  }

  .gallery-bjp-filter-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .gallery-bjp-grid {
    gap: 20px;
  }

  .impact-dashboard-bjp-section {
    padding: 60px 15px;
  }

  .impact-dashboard-bjp-title {
    font-size: 32px;
  }

  .impact-dashboard-bjp-stats {
    grid-template-columns: 1fr;
  }

  .impact-dashboard-bjp-social-grid,
  .impact-dashboard-bjp-campaigns-grid,
  .impact-dashboard-bjp-operations-grid {
    grid-template-columns: 1fr;
  }

  .impact-dashboard-bjp-realtime {
    padding: 30px 20px;
  }

  .impact-dashboard-bjp-realtime-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .influence-bjp-section {
    padding: 60px 15px;
  }

  .influence-bjp-title {
    font-size: 32px;
  }

  .influence-bjp-testimonials-swiper {
    padding: 20px 40px 60px;
  }

  .influence-bjp-videos-grid,
  .influence-bjp-press-grid {
    grid-template-columns: 1fr;
  }

  .influence-bjp-media-cta {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
  }

  .influence-bjp-media-cta-content {
    flex-direction: column;
  }

  .influence-bjp-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .featured-achievements-bjp-section {
    padding: 30px 15px;
  }

  .featured-achievements-bjp-title {
    font-size: 30px;
  }

  .featured-achievements-bjp-subtitle {
    font-size: 15px;
  }

  .featured-achievements-bjp-swiper {
    padding: 20px 40px 40px;
  }

  .featured-achievements-bjp-card {
    padding: 25px;
  }

  .featured-achievements-bjp-icon {
    width: 60px;
    height: 60px;
  }

  .featured-achievements-bjp-icon i {
    font-size: 28px;
  }

  .featured-achievements-bjp-card-title {
    font-size: 20px;
  }

  .featured-achievements-bjp-button-prev,
  .featured-achievements-bjp-button-next {
    width: 40px;
    height: 40px;
  }

  .about-us-bjp-section {
    padding: 60px 15px;
  }

  .about-us-bjp-title {
    font-size: 30px;
  }

  .digital-campaign-bjp-section {
    padding: 60px 15px;
  }

  .digital-campaign-bjp-title {
    font-size: 32px;
  }

  .digital-campaign-bjp-analytics,
  .digital-campaign-bjp-testimonials {
    padding: 30px 20px;
  }

  .digital-campaign-bjp-analytics-title,
  .digital-campaign-bjp-testimonials-title {
    font-size: 24px;
  }

  .media-publication-bjp-section {
    padding: 60px 15px;
  }

  .media-publication-bjp-title {
    font-size: 32px;
  }

  .media-publication-bjp-featured-book {
    padding: 30px;
  }

  .media-publication-bjp-book-title {
    font-size: 28px;
  }

  .media-publication-bjp-section-title {
    font-size: 26px;
  }

  .media-publication-bjp-articles-grid,
  .media-publication-bjp-coverage-grid {
    grid-template-columns: 1fr;
  }

  .blogs-bjp-section {
    padding: 60px 15px;
  }

  .blogs-bjp-title {
    font-size: 32px;
  }

  .blogs-bjp-featured {
    padding: 30px;
  }

  .blogs-bjp-featured-title {
    font-size: 26px;
  }

  .blogs-bjp-topics {
    padding: 30px 20px;
  }

  .blogs-bjp-cta {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
  }

  .blogs-bjp-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .breadcrumb-section-area {
    padding: 60px 0;
  }
  .breadcrumb-section-title {
    font-size: 32px;
  }
  .breadcrumb-section-list li {
    font-size: 16px;
  }

  .blog-section-area {
    padding: 70px 0;
  }
  .blog-section-title {
    font-size: 30px;
  }
  .blog-section-subtitle {
    font-size: 16px;
  }
  .blog-section-post-title {
    font-size: 20px;
  }
  .blog-section-content {
    padding: 20px;
  }

  .mission-vision-title {
    font-size: 28px;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .all-new-schemes-grid {
    grid-template-columns: 1fr; /* 1 col on mobile */
  }

  .all-new-schemes-heading {
    font-size: 28px;
  }

  .news-details-page-grid-points {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .influence-bjp-testimonial-card {
    padding: 25px;
  }

  .influence-bjp-press-card {
    padding: 25px;
  }

  .contact-bjp-form-header {
    flex-direction: column;
    text-align: center;
  }

  .contact-bjp-submit-btn,
  .contact-bjp-volunteer-btn,
  .contact-bjp-newsletter-btn {
    width: 100%;
    font-size: 14px;
  }

  .banner-bjp-heading {
    font-size: 2rem;
  }

  .banner-bjp-slogan {
    font-size: 18px;
    font-weight: 500;
  }

  .banner-bjp-photo-wrapper {
    width: 100%;
    max-width: 280px;
    height: 325px;
  }

  .banner-bjp-action-btns {
    flex-direction: column;
    width: 100%;
  }

  .banner-bjp-primary-button,
  .banner-bjp-outline-button {
    width: 100%;
  }

  .banner-bjp-logo-circle {
    width: 72px;
    height: 72px;
    bottom: 18px;
    right: 18px;
  }

  .gallery-bjp-grid {
    grid-template-columns: 1fr;
  }

  .gallery-bjp-overlay {
    opacity: 1;
  }

  .gallery-bjp-overlay-content {
    transform: translateY(0);
  }

  .gallery-bjp-view-btn {
    opacity: 1;
    transform: scale(1);
  }

  .featured-achievements-bjp-header {
    margin-bottom: 40px;
  }

  .featured-achievements-bjp-title {
    font-size: 26px;
  }

  .featured-achievements-bjp-swiper {
    padding: 10px 20px 30px;
  }

  .featured-achievements-bjp-stats {
    flex-direction: column;
    gap: 10px;
  }
  .featured-achievements-bjp-card {
    height: 360px !important;
    box-shadow:
      rgba(0, 0, 0, 0.25) 0px 54px 55px,
      rgba(0, 0, 0, 0.12) 0px -12px 30px,
      rgba(0, 0, 0, 0.12) 0px 4px 6px,
      rgba(0, 0, 0, 0.17) 0px 12px 13px,
      rgba(0, 0, 0, 0.09) 0px -3px 5px;
  }
  .featured-achievements-bjp-button-prev,
  .featured-achievements-bjp-button-next {
    width: 35px;
    height: 35px;
    display: none !important;
  }

  .featured-achievements-bjp-button-prev i,
  .featured-achievements-bjp-button-next i {
    font-size: 14px;
  }

  .about-us-bjp-title {
    font-size: 26px;
  }

  .about-us-bjp-book {
    flex-direction: column;
    gap: 10px;
  }

  .about-us-bjp-work {
    flex-direction: column;
  }

  .digital-campaign-bjp-grid {
    grid-template-columns: 1fr;
  }

  .digital-campaign-bjp-stats-grid {
    grid-template-columns: 1fr;
  }

  .digital-campaign-bjp-metrics {
    grid-template-columns: 1fr;
  }

  .digital-campaign-bjp-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .media-publication-bjp-book-cover {
    height: 300px;
  }

  .media-publication-bjp-book-cover i {
    font-size: 80px;
  }

  .media-publication-bjp-book-title {
    font-size: 22px;
  }

  .media-publication-bjp-book-subtitle {
    font-size: 18px;
  }

  .media-publication-bjp-book-actions {
    flex-direction: column;
  }

  .media-publication-bjp-btn-primary,
  .media-publication-bjp-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .blogs-bjp-grid {
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }

  .blogs-bjp-topics-grid {
    grid-template-columns: 1fr;
  }

  .blogs-bjp-featured-meta {
    flex-direction: column;
    gap: 10px;
  }

  .blogs-bjp-card {
    padding: 25px;
  }
  .about-us-bjp-section {
    padding: 10px 15px;
  }
  .about-us-bjp-bio {
    font-size: 16px;
    text-align: justify;
  }
  .digital-campaign-bjp-section {
    padding: 30px 15px;
  }
  .digital-campaign-bjp-title {
    font-size: 26px;
  }
  .digital-campaign-bjp-subtitle {
    font-size: 15px;
  }
  .digital-campaign-bjp-metric-content h4 {
    font-size: 26px;
  }
  .digital-campaign-bjp-metric-card {
    padding: 15px;
  }
  .digital-campaign-bjp-metric-card i {
    font-size: 30px;
  }
  .digital-campaign-bjp-testimonials-title {
    font-weight: 600;
  }
  .media-publication-bjp-section {
    padding: 30px 15px;
  }
  .media-publication-bjp-title {
    font-size: 26px;
  }
  .media-publication-bjp-subtitle {
    font-size: 15px;
  }
  .media-publication-bjp-header {
    margin-bottom: 30px;
  }
  .media-publication-bjp-book-desc {
    font-size: 16px;
  }
  .media-publication-bjp-highlight {
    font-size: 16px;
  }
  .media-publication-bjp-btn-primary,
  .media-publication-bjp-btn-secondary {
    font-size: 14px;
  }
  .media-publication-bjp-article-title {
    font-size: 17px;
  }
  .news-section-title {
    font-size: 18px;
  }
  .blogs-bjp-section {
    padding: 30px 15px;
  }
  .blogs-bjp-title {
    font-size: 26px;
  }
  .blogs-bjp-subtitle {
    font-size: 16px;
  }
  .blogs-bjp-featured {
    padding: 30px;
    margin-top: -29px;
    margin-bottom: 30px;
  }
  .blogs-bjp-featured-title {
    font-size: 22px;
    text-align: justify;
  }
  .blogs-bjp-featured-excerpt {
    font-size: 16px;
  }
  .blogs-bjp-read-more {
    font-size: 14px;
  }
  .blogs-bjp-card-title {
    text-align: justify;
    font-size: 18px;
  }
  .blogs-bjp-topics-title {
    font-size: 26px;
    font-weight: 500;
  }
  .blogs-bjp-cta-content h3 {
    font-size: 26px;
  }
  .blogs-bjp-cta-content p {
    font-size: 16px;
    text-align: justify;
  }
  .blogs-bjp-cta-btn {
    padding: 10px 32px;
    font-size: 14px;
  }
  .gallery-bjp-section,
  .impact-dashboard-bjp-section,
  .contact-bjp-section {
    padding: 30px 15px;
  }
  .gallery-bjp-title,
  .impact-dashboard-bjp-title {
    font-size: 26px;
  }
  .gallery-bjp-subtitle,
  .impact-dashboard-bjp-subtitle {
    font-size: 15px;
  }
  .impact-dashboard-bjp-stat-content h3 {
    font-size: 26px;
  }
  .impact-dashboard-bjp-stat-icon {
    width: 50px;
    height: 50px;
  }
  .impact-dashboard-bjp-stat-card {
    padding: 20px;
  }
  .impact-dashboard-bjp-header {
    margin-bottom: 30px;
  }
  .impact-dashboard-bjp-section-title {
    font-size: 26px;
  }
  .advanced-bjp-training-portal {
    margin-bottom: 50px;
  }
  .advanced-bjp-chatbot-header h3 {
    font-size: 26px;
  }

  .advanced-bjp-library-header h3 {
    font-size: 26px;
  }
  .advanced-bjp-library-header p {
    font-size: 16px;
  }
  .advanced-bjp-chatbot {
    margin-bottom: 50px;
  }
  .advanced-bjp-chat-field {
    flex: 1;
    padding: 9px 16px;
  }
  .advanced-bjp-send-btn {
    width: 35px;
    height: 35px;
  }
  .advanced-bjp-lib-tab {
    padding: 9px 24px;
  }
  .advanced-bjp-section {
    padding: 30px 15px;
    margin-top: -85px;
  }
  .influence-bjp-social-feeds {
    margin-bottom: 50px;
    margin-top: -79px;
  }
  .influence-bjp-feed-header h3 {
    font-size: 20px;
  }
  .influence-bjp-feed-header i {
    font-size: 20px;
  }
  .advanced-bjp-portal-content h3 {
    font-size: 26px;
    text-align: justify;
  }
  .advanced-bjp-portal-content p {
    font-size: 16px;
    text-align: justify;
  }
  .advanced-bjp-stat-item strong {
    font-size: 20px;
  }
  .advanced-bjp-stat-item i {
    font-size: 23px;
  }
  .advanced-bjp-stat-item {
    padding: 15px;
  }

  .advanced-bjp-portal-form h4 {
    font-size: 20px;
  }
  .advanced-bjp-portal-form h4 i {
    font-size: 18px;
  }
  .advanced-bjp-input {
    padding: 9px 15px;
    font-size: 14px;
  }
  .advanced-bjp-submit-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
  .advanced-bjp-modules-title {
    font-size: 26px;
  }
  .advanced-bjp-modules {
    margin-top: -23px;
  }
  .digital-campaign-bjp-analytics {
    margin-top: -22px;
  }
  .digital-campaign-bjp-testimonials {
    margin-top: -22px;
  }
  .media-publication-bjp-featured-book {
    margin-bottom: 38px;
  }
  .media-publication-bjp-articles {
    margin-bottom: 34px;
  }
  .blogs-bjp-topics {
    margin-bottom: 32px;
  }
  .impact-dashboard-bjp-social {
    margin-bottom: 30px;
  }
  .impact-dashboard-bjp-operations {
    margin-top: -42px;
  }
  .impact-dashboard-bjp-realtime {
    margin-top: -41px;
  }

  .contact-bjp-right {
    margin-top: -39px;
  }
  .impact-dashboard-bjp-stats {
    margin-bottom: 36px;
  }
  .blog-section-area {
    padding: 30px 0;
  }
  .blog-section-post-title a {
    font-size: 19px;
  }
  .blog-section-category {
    padding: 3px 11px;
    font-weight: 500;
  }

  .mission-vision-text {
    font-size: 16px;
  }
  .mission-vision-list li {
    font-size: 15px;
  }
  .all-new-schemes-card-desc {
    font-size: 16px;
  }
  .news-details-page-title {
    font-size: 20px;
  }
  .news-details-page-wrapper {
    padding: 30px 0;
  }
  .news-details-page-intro {
    font-size: 16px;
  }
  .news-details-page-article p {
    font-size: 16px;
  }
  .news-details-page-sub-head {
    font-size: 19px;
  }
  .news-details-page-highlight-box {
    font-size: 16px;
    text-align: justify;
    padding: 18px;
  }
}
