:root {
  --blue: #06337f;
  --light-blue: #0d5dd1;
  --accent: #ffd400;
  --white: #ffffff;
  --card: #f7f9ff;
  --max-width: 1100px;
  --swiper-navigation-size: 22px;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans Devanagari", system-ui, Arial;
  color: #0b2a4a;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}
.container-fluid {
  width: 100%;
  padding: 0 16px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
}

/* Header */
header {
  background: linear-gradient(90deg, var(--blue), var(--light-blue));
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 56px;
  width: auto;
  border-radius: 6px;
  border: 3px solid rgba(255, 255, 255, 0.08);
}
.party-meta {
  display: flex;
  flex-direction: column;
}
.party-name {
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}
.party-sub {
  font-size: 12px;
  opacity: 0.9;
}
.phone {
  background: var(--white);
  color: var(--blue);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.phone small {
  font-weight: 600;
  color: var(--blue);
  opacity: 0.9;
}

/* Banner */
.banner {
  position: relative;
  overflow: hidden;
  background: #0b3b88;
}
.banner img {
  width: 100%;
  /* height: 500px; */
  display: block;
  /* object-fit: cover; */
}
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
}
.hero .hero-text {
  flex: 1;
  color: var(--white);
}
.hero h1 {
  font-size: 44px;
  margin: 0 0 8px;
  line-height: 1.05;
  font-weight: 800;
}
.hero p.lead {
  font-size: 18px;
  margin: 0 0 14px;
  opacity: 0.95;
}
.hero .cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn {
  background: var(--accent);
  color: #082346;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 800;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* ABOUT */
.about {
  background: var(--card);
  padding: 28px;
  border-radius: 10px;
  margin-top: -40px;
  box-shadow: 0 8px 24px rgba(3, 12, 45, 0.06);
}
.about-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 60px;
}
.about-text {
  flex: 1;
  min-width: 260px;
}
.about-text .section-title {
  text-align: left;
}
.about-img {
  flex: 0 0 320px;
  min-width: 220px;
}
.about-img img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* SERVICES */
.services {
  margin: 24px 0;
  display: grid;
  gap: 18px;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}
.service-card {
  background: var(--white);
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(2, 20, 60, 0.06);
}
.service-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--blue);
  font-weight: 800;
}
.service-card p {
  margin: 0;
  color: #123;
  line-height: 1.5;
}
.service-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Video section */
.videos {
  /* display: grid;
  gap: 16px;
  margin: 18px 0; */
  padding: 60px;
}
.videos .video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.videos iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 8px;
  background: #000;
}

/* Gallery */

/* Swiper Gallery Slider */

/* Swiper container styling */

/* Individual slides */
.gallerySwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.gallerySwiper img {
  width: 100%;
  border: 1px solid #ddd;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(6, 51, 127, 0.85);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(6, 51, 127, 1);
}

/* Pagination (dots) */
.swiper-pagination-bullet {
  background: var(--blue);
  opacity: 0.4;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent);
}

/* Responsive behavior */
@media (max-width: 900px) {
  /* .gallerySwiper {
    height: 320px;
  } */
}
@media (max-width: 480px) {
  /* .gallerySwiper {
    height: 220px;
  } */
}

.gallery {
  margin-top: 18px;
  padding: 40px 0;
  text-align: center;
  /* background: #dde2ed; */
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  border: gray solid 2px;
}

/* Contact */
.contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(180deg, #08386a, #0d5dd1);
  color: var(--white);
  border-radius: 10px;
}
.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.contact .phone-big {
  font-size: 20px;
  font-weight: 900;
  background: var(--white);
  color: var(--blue);
  padding: 10px 14px;
  border-radius: 8px;
  display: inline-block;
}
.candidate-img-small {
  min-width: 180px;
}
.candidate-img-small img {
  width: 120px;
  border-radius: 10px;
  display: block;
}
.contact form {
  display: grid;
  gap: 8px;
}
.contact input,
.contact textarea {
  padding: 10px;
  border-radius: 8px;
  border: 0;
  outline: none;
}
.contact button {
  padding: 10px;
  border-radius: 8px;
  border: 0;
  background: var(--accent);
  font-weight: 800;
  color: #082346;
}

/* Footer */
footer {
  padding: 14px;
  text-align: center;
  color: #234;
  opacity: 0.8;
  margin-top: 12px;
}

/* New footer layout (isolated from your existing footer rules) */
.site-footer {
  background: linear-gradient(90deg, var(--blue), var(--light-blue));
  color: #fff;
  padding: 24px 16px;
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-left-logo img {
  height: 100px;
  width: auto;
  border-radius: 8px;
  border: 3px solid rgba(255, 255, 255, 0.08);
}

.footer-right-info {
  text-align: right;
  line-height: 1.7;
}
.footer-right-info .pub {
  margin: 0;
  font-weight: 800;
}
.footer-right-info .addr,
.footer-right-info .contacts {
  margin: 6px 0 0 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 12px;
  font-size: 14px;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 700px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-right-info {
    text-align: left;
  }
  .footer-left-logo img {
    height: 56px;
  }
  .footer-bottom {
    font-size: 12px;
  }
}

/****/
.vikas-section {
  padding: 80px 0;
  background: #d1e3ff;
}
.vikas-title,
.section-title {
  text-align: center;
  color: #06337f;
  font-size: 32px;

  font-weight: 800;
}
.vikas-subtitle {
  text-align: center;
  font-weight: 600;
  color: #555;
  margin-bottom: 30px;
}
.vikas-row-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}
.vikas-item {
  background: #fff;
  /* height: 400px; */
  padding: 18px 22px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.vikas-item h3 {
  color: #0d5dd1;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 800;
}
.vikas-item ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.6;
}
.vikas-footer {
  text-align: center;
  margin-top: 30px;
}
.vikas-footer p {
  margin: 6px 0;
}
.vikas-contact {
  background: #ffd400;
  color: #06337f;
  padding: 10px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 800;
  margin: 8px 0;
}
.vikas-sign {
  color: #06337f;
  font-weight: 800;
}
.kuchay-cta {
  font-size: 24px;
  font-weight: 800;
}

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

/* responsive */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 34px;
  }
  .banner .overlay {
    padding: 18px;
  }
  .banner .hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-row {
    grid-template-columns: 1fr;
  }
  .videos .video-grid {
    grid-template-columns: 1fr;
  }
  /* .phone {
    display: none;
  } */
  .logo img {
    height: 48px;
  }
  .about {
    margin-top: -28px;
  }
  .service-img,
  .about-img img {
    height: auto;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 26px;
  }
  .hero p.lead {
    font-size: 15px;
  }
  .btn {
    padding: 10px 12px;
  }
  .banner .overlay {
    padding: 14px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .vikas-title,
  .section-title {
    font-size: 22px;
  }
  .videos {
    /* display: grid;
  gap: 16px;
  margin: 18px 0; */
    padding: 20px;
  }

  .phone span,
  .phone small {
    font-size: 0;
  }
  .phone {
    padding: 5px 10px;
    gap: 0px;
  }
  footer {
    font-size: 12px;
    padding: 10px;
  }
  .about {
    padding: 0;
  }
}
