.hero-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
  z-index: 10;
}

.slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 50px;
  color: white;
}

.slide-text {
  flex: 1;
  max-width: 50%;
  padding-right: 30px;
}

.slide-image {
  flex: 1;
  text-align: center;
}

.slide-image img {
  max-height: 380px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  transform: perspective(800px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.slide-image img:hover {
  transform: perspective(800px) rotateY(0);
}

.slide-heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.slide-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.slide-btn {
  background: linear-gradient(45deg, #ff6b6b, #ff8e53);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
  transition: all 0.3s ease;
}

.slide-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.6);
}

.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: white;
  transform: scale(1.3);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  transform: translateY(-50%);
  z-index: 20;
}

.arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

/* Responsive styles */
@media (max-width: 992px) {
  .hero-slider {
    height: 450px;
  }

  .slide-heading {
    font-size: 2.4rem;
  }

  .slide-description {
    font-size: 1rem;
  }

  .slide-image img {
    max-height: 320px;
  }
}

@media (max-width: 768px) {
  .slide-content {
    flex-direction: column;
    text-align: center;
    padding: 0 25px;
  }

  .slide-text {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 25px;
  }

  .slide-image img {
    max-height: 250px;
  }

  .hero-slider {
    height: 550px;
  }

  .slide-heading {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 500px;
  }

  .slide-heading {
    font-size: 1.8rem;
  }

  .slide-description {
    font-size: 0.95rem;
  }

  .slide-image img {
    max-height: 200px;
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* Political Representatives Section */
.political-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
  position: relative;
  overflow: hidden;
}

.political-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #1e40af, #3b82f6, #1e40af);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #3b82f6;
  border-radius: 2px;
}

/* Tabs Styling */
.political-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-btn {
  padding: 12px 25px;
  background: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  color: #00a5bd;
}

.tab-btn.active {
  background: #00a5bd;
  color: white;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Representative Cards */
.representatives-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.representative-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.representative-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.representative-card:hover .card-image img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgb(1, 206, 209, 255);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.card-content {
  padding: 20px;
  background: radial-gradient(
    circle,
    rgb(1, 206, 209, 255) -17%,
    rgb(20, 30, 50) 138%
  );
  color: white;
}

.card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.card-content .position {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.card-content .description {
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e2e8f0;
  padding-top: 15px;
  color: white;
}

.stat {
  text-align: center;
}

.stat .number {
  font-size: 1.2rem;
  font-weight: 700;
}

.stat .label {
  font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .representatives-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .political-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 80%;
    justify-content: center;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .political-section {
    padding: 60px 0;
  }

  .representatives-container {
    grid-template-columns: 1fr;
  }

  .tab-btn {
    width: 100%;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }
}

.top-header {
  background: rgb(1, 206, 209, 255); /* aap apna header ka color use karo */
  color: #fff;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.marquee {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 60s linear infinite;
}

.marquee p {
  display: inline-block;
  font-size: 13px;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.header-mobile{
    display: none;
}
