.main-img {
  height: 700px;
  object-fit: contain;
}


/* ===== Desktop / Default ===== */
.logo-custom-header {
  position: relative;
}

.logo-custom img {
  max-height: 100px;
  /* ⬅️ height kam (100px → 70px) */
  width: auto;
  display: block;
  /* inline-gap remove */
  object-fit: contain;
  border-radius: 50%;
  /* 🌟 Strong Radial Glow Effect */
  box-shadow: 0 0 25px 5px rgba(46, 125, 50, 0.7);
  /* Soft green radial glow */
  /* Minimal shadow as requested */
  filter: none;
}

.logo-custom-header img {
  max-height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  position: absolute;
  top: -4px;

  /* 🌟 Strong Radial Glow Effect */
  box-shadow: 0 0 25px 5px rgba(46, 125, 50, 0.7);
  /* Soft green radial glow */
  filter: none;
}


/* ===== Mobile / Responsive ===== */
@media (max-width: 991px) {
  .logo-custom-header img {
    position: static;
    /* 🔥 absolute remove */
    top: auto;
    max-height: 100px;
    /* thoda chhota for mobile */

    /* center */
    filter: none;
    /* optional: glow remove on mobile */
  }
}

@media (max-width: 991px) {
  .custom-container {
    padding: 0 15px !important;
    margin: 0 15px !important;
    line-height: 0 !important;
    height: 20px !important;
  }
}


.logo-custom img:hover {
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.custom-counter {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

/* Counter Section */
.counter-one {
  position: relative;
  padding: 45px 0;
  background: #0b5d1e;
  /* green theme (change if needed) */
}

.counter-one__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: stretch;
}

.counter-one__single {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.counter-one__single:hover {
  transform: translateY(-8px);
}

/* Icon */
.counter-one__icon {
  font-size: 45px;
  color: #0b5d1e;
  margin-bottom: 15px;
  position: relative;
}

/* Number */
.counter-one__content-count h3 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

/* Text */
.counter-one__text {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  margin-top: 8px;
}

/* Optional M */
.counter-one__content-count span {
  font-size: 20px;
  font-weight: 600;
  margin-left: 4px;
}

/* Shapes (hide on mobile) */
@media (max-width: 768px) {
  .counter-one__shape-1 {
    display: none;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .counter-one__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .counter-one {
    padding: 60px 0;
  }

  .counter-one__list {
    grid-template-columns: 1fr;
  }

  .counter-one__content-count h3 {
    font-size: 36px;
  }
}

/* ================= Gallery Section ================= */

.gallery-one {
  padding: 50px 0;
}

/* Single Card */
.gallery-one__single {
  position: relative;
  padding: 20px;
}

/* Image Wrapper */
.gallery-one__img {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: auto;
}

/* MAIN IMAGE (front) */
.gallery-one__img img {
  width: 100%;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* BACKGROUND IMAGE EFFECT (fake second image) */
.gallery-one__img::before {
  content: "";
  position: absolute;
  top: 14px;
  left: -14px;
  width: 100%;
  height: 100%;
  background: #0b5d1e;
  /* green background image feel */
  border-radius: 12px;
  z-index: 1;
  opacity: 0.15;
}

/* Arrow */
.gallery-one__arrow {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 3;
}

.gallery-one__arrow a {
  width: 42px;
  height: 42px;
  background: #0b5d1e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.gallery-one__arrow a:hover {
  background: #084517;
}

/* Shape remove (clean look) */
.gallery-one__shape-1 {
  display: none;
}

/* Tablet */
@media (max-width: 992px) {
  .gallery-one__img {
    max-width: 280px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .gallery-one {
    padding: 35px 0;
  }

  .gallery-one__img {
    max-width: 100%;
  }

  .gallery-one__img::before {
    top: 10px;
    left: -10px;
  }
}

/* ================= FAQ SECTION ================= */

.faq-one {
  padding: 60px 0;
  background: #f7f9f8;
}

/* Section Title spacing */
.section-title {
  margin-bottom: 40px;
}

/* ---------- LEFT SIDE ---------- */

.faq-one__left-content {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-one__left-content-img img {
  width: 100%;
  border-radius: 12px;
}

.faq-one__main-info {
  margin-top: 15px;
  text-align: center;
}

.faq-one__main-info p {
  font-size: 15px;
  color: #666;
  margin-bottom: 5px;
}

.faq-one__main-info h5 {
  font-size: 16px;
  font-weight: 600;
}

.faq-one__main-info a {
  color: #0b5d1e;
  text-decoration: none;
}

/* Bottom box */
.faq-one__left-content-box {
  margin-top: 20px;
  background: #0b5d1e;
  color: #fff;
  padding: 22px;
  border-radius: 12px;
  text-align: center;
}

.faq-one__left-content-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-one__left-content-text {
  font-size: 14px;
  line-height: 1.6;
}

/* Hide decorative shapes */
.faq-one__left-content-shape-1 {
  display: none;
}

/* ---------- RIGHT SIDE ACCORDION ---------- */

.faq-one__right {
  padding-left: 10px;
}

.accrodion {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.accrodion-title {
  padding: 16px 20px;
  cursor: pointer;
  background: #ffffff;
}

.accrodion-title h4 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

.accrodion.active .accrodion-title {
  background: #0b5d1e;
}

.accrodion.active .accrodion-title h4 {
  color: #fff;
}

/* Accordion content */
.accrodion-content {
  position: relative;
}

.faq-one__accrodion-content-bg {
  display: none;
}

.accrodion-content .inner {
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* Tablet */
@media (max-width: 991px) {
  .faq-one {
    padding: 50px 0;
  }

  .faq-one__right {
    padding-left: 0;
    margin-top: 30px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .faq-one {
    padding: 40px 0;
  }

  .accrodion-title h4 {
    font-size: 15px;
  }

  .faq-one__left-content-title {
    font-size: 18px;
  }
}

/* ================= FAQ RIGHT SIDE ================= */

.faq-one__right {
  padding-left: 25px;
}

/* Accordion Box */
.faq-one__right .accrodion {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Question */
.faq-one__right .accrodion-title {
  padding: 22px 26px;
  /* 🔹 bigger padding */
  cursor: pointer;
  background: #f9f9f9;
  position: relative;
}

.faq-one__right .accrodion-title h4 {
  font-size: 18px;
  /* 🔹 bigger text */
  font-weight: 600;
  color: #1c1c1c;
  margin: 0;
  line-height: 1.4;
  padding-right: 35px;
}

/* Plus / Minus icon */
.faq-one__right .accrodion-title::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 600;
  color: #0b5d1e;
}

/* Active State */
.faq-one__right .accrodion.active .accrodion-title {
  background: #0b5d1e;
}

.faq-one__right .accrodion.active .accrodion-title h4 {
  color: #ffffff;
}

.faq-one__right .accrodion.active .accrodion-title::after {
  content: "−";
  color: #ffffff;
}

/* Answer Box */
.faq-one__right .accrodion-content {
  background: #ffffff;
}

/* Remove bg image */
.faq-one__accrodion-content-bg {
  display: none;
}

/* Answer Text */
.faq-one__right .accrodion-content .inner {
  padding: 26px;
  /* 🔹 bigger padding */
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* Tablet */
@media (max-width: 991px) {
  .faq-one__right {
    padding-left: 0;
    margin-top: 35px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .faq-one__right .accrodion-title {
    padding: 18px 20px;
  }

  .faq-one__right .accrodion-title h4 {
    font-size: 16px;
  }

  .faq-one__right .accrodion-content .inner {
    padding: 20px;
  }
}

/* ================= VISION SECTION ================= */

.vision-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0b5d1e, #063814);
  color: #fff;
}

.vision-container {
  max-width: 1200px;
  margin: auto;
}

/* Top Heading */
.vision-section .text-center {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Title */
.vision-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-top: 10px;
}

.vision-line {
  width: 80px;
  height: 4px;
  background: #ffc107;
  margin: 15px auto 50px;
  border-radius: 10px;
}

/* Grid Layout */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

/* LEFT BOX */
.vision-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 35px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

.vision-box h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.vision-box p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

/* List */
.vision-list {
  margin-top: 25px;
}

.vision-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.vision-item span {
  color: #00ff88;
  font-weight: bold;
  font-size: 18px;
}

/* RIGHT BOX */
.right {
  background: rgba(255, 255, 255, 0.08);
  padding: 35px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

.right h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.right h3 {
  font-size: 20px;
  font-weight: 600;
}

.right p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

/* .highlight {
  background: rgba(255,193,7,0.15);
  padding: 14px 18px;
  border-left: 4px solid #ffc107;
  border-radius: 10px;
  margin: 15px 0 25px;
} */

/* PROGRESS BAR */
.progress-block {
  margin-bottom: 22px;
}

.progress-title {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 600;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  border-radius: 10px;
  transition: width 1.5s ease;
}

/* Colors */
.progress-fill.orange {
  background: #ff9800;
}

.progress-fill.blue {
  background: #03a9f4;
}

.progress-fill.green {
  background: #00ff88;
}

/* Tablet */
@media (max-width: 991px) {
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .vision-title {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .vision-section {
    padding: 60px 15px;
  }

  .vision-box,
  .right {
    padding: 25px;
  }

  .vision-title {
    font-size: 24px;
  }

  .vision-box h2,
  .right h2 {
    font-size: 22px;
  }
}

.vision-section {
  position: relative;
  padding: 80px 20px;
  background:
    radial-gradient(circle at top left, rgba(0, 255, 136, 0.25), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255, 193, 7, 0.25), transparent 40%),
    linear-gradient(135deg, #0b5d1e, #063814);
  color: #fff;
  overflow: hidden;
}

/* ================= PROGRESS BAR ================= */

.progress-block {
  margin-bottom: 22px;
}

.progress-title {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  /* 🔴 start from 0 */
  border-radius: 10px;
  transition: width 1.6s ease-in-out;
}

/* Colors */
.progress-fill.orange {
  background: #ff9800;
}

.progress-fill.blue {
  background: #03a9f4;
}

.progress-fill.green {
  background: #00c853;
}

.custom-footer {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-left: 10px;
}

.img-fit {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  /* circle logo – square chahiye to hata do */
}

.img-fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* stretch nahi hoga */
  object-position: center;
}

@media (max-width: 768px) {
  .img-fit {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .img-fit {
    width: 80px;
    height: 80px;
  }
}

.page-header__bg {
  margin-top: 120px;
}

@media (max-width: 776px) {
  .page-header__bg {
    margin-top: 130px;
  }

}

/* ===== HERO LEADER SECTION ===== */
.hero-leader {
  width: 100%;
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f3d2e, #1b5e20);
  color: #ffffff;
}

.hero-leader-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

/* ===== IMAGE ===== */
.hero-leader-img {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero-leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== CONTENT ===== */
.hero-leader-content {
  max-width: 620px;
}

.hero-slogan {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  border-left: 4px solid #ffeb3b;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-leader-content h1 {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-divider {
  width: 80px;
  height: 4px;
  background: #ffeb3b;
  margin-bottom: 24px;
}

.hero-leader-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
  color: #e8f5e9;
}

.hero-leader-content strong {
  color: #ffffff;
  font-weight: 700;
}

/* ===== BUTTONS ===== */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.btn-primary {
  padding: 14px 28px;
  background: #ffeb3b;
  color: #1b5e20;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #fdd835;
}

.btn-outline {
  padding: 14px 28px;
  border: 2px solid #ffeb3b;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #ffeb3b;
  color: #1b5e20;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-leader-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-leader-img {
    margin: auto;
    max-width: 340px;
  }

  .hero-divider {
    margin: 20px auto;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .hero-leader {
    padding: 70px 16px;
  }

  .hero-leader-content h1 {
    font-size: 30px;
  }

  .hero-leader-content p {
    font-size: 15px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* ===== NEO ABOUT SECTION ===== */
.about-neo {
  padding: 130px 20px;
  background: linear-gradient(160deg, #f1f8f4, #ffffff);
}

.about-neo-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* ===== IMAGE DESIGN ===== */
.about-neo-image {
  position: relative;
  max-width: 480px;
}

.about-neo-image img {
  width: 100%;
  border-radius: 26px;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
}

/* Decorative frame */
.image-frame {
  position: absolute;
  inset: -18px;
  border-radius: 32px;
  background: linear-gradient(135deg, #2e7d32, #81c784);
  z-index: 1;
  opacity: 0.9;
}

/* Floating label */
.image-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 10px 18px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  z-index: 3;
}

/* ===== CONTENT ===== */
.about-neo-content {
  max-width: 560px;
}

.neo-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(46, 125, 50, 0.15);
  color: #2e7d32;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-neo-content h2 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 22px;
  color: #0e1a13;
}

.about-neo-content h2 span {
  background: linear-gradient(90deg, #2e7d32, #66bb6a);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.neo-line {
  width: 110px;
  height: 5px;
  background: linear-gradient(90deg, #2e7d32, #81c784);
  border-radius: 10px;
  margin-bottom: 26px;
}

.about-neo-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #3f4f45;
  margin-bottom: 18px;
}

/* ===== BUTTONS ===== */
.neo-actions {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.neo-btn {
  padding: 15px 38px;
  border-radius: 40px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
}

.neo-btn.solid {
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: #fff;
}

.neo-btn.solid:hover {
  transform: translateY(-3px);
}

.neo-btn.outline {
  border: 2px solid #2e7d32;
  color: #2e7d32;
}

.neo-btn.outline:hover {
  background: #2e7d32;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-neo-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-neo-image {
    margin: auto;
  }

  .about-neo-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .about-neo {
    padding: 90px 16px;
  }

  .about-neo-content h2 {
    font-size: 26px;
  }

  .about-neo-content p {
    font-size: 15px;
  }

  .neo-actions {
    flex-direction: column;
  }

  .neo-btn {
    width: 100%;
    text-align: center;
  }
}

/* ===============================
   RULES – 2026 MODERN DESIGN
================================ */

.rules-modern {
  padding: 140px 20px;
  background:
    radial-gradient(circle at top left, #e6f4ea 0%, #ffffff 55%),
    radial-gradient(circle at bottom right, #f3faf5 0%, #ffffff 60%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.rules-container {
  max-width: 1200px;
  margin: auto;
}

/* ---------- HEADER ---------- */
.rules-header {
  text-align: center;
  max-width: 760px;
  margin: auto;
}

.rules-header h1 {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 0.6px;
  color: #0b1d14;
}

.rules-divider {
  width: 120px;
  height: 6px;
  margin: 22px auto 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1b5e20, #66bb6a);
}

.rules-intro {
  font-size: 17px;
  line-height: 1.95;
  color: #3f5148;
}

/* ---------- GRID ---------- */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 90px;
}

/* ---------- CARD ---------- */
.rule-card {
  position: relative;
  padding: 42px 38px 40px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(46, 125, 50, 0.15);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
}

/* Hover elevation */
.rule-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 50px 110px rgba(0, 0, 0, 0.12),
    0 0 0 8px rgba(46, 125, 50, 0.08);
}

/* ---------- NUMBER BADGE ---------- */
.rule-number {
  position: absolute;
  top: -18px;
  left: 34px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, #2e7d32, #81c784);
  box-shadow: 0 12px 30px rgba(46, 125, 50, 0.45);
}

/* ---------- CONTENT ---------- */
.rule-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #10261a;
  margin: 22px 0 14px;
}

.rule-card p {
  font-size: 16px;
  line-height: 1.95;
  color: #465950;
}

.highlight {
  color: #b71c1c;
  font-weight: 900;
}

/* ---------- FOOTER NOTE ---------- */
.rules-footer {
  margin-top: 100px;
  padding: 38px 42px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, #eef7f1, #ffffff);
  text-align: center;
  border: 1px dashed rgba(46, 125, 50, 0.4);
}

.rules-footer p {
  font-size: 16px;
  line-height: 1.85;
  color: #24332c;
}

/* ===============================
   RESPONSIVE – MOBILE FIRST
/* ===============================
   RESPONSIVE – MOBILE FIRST
================================ */

@media (max-width: 1100px) {
  .rules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rules-modern {
    padding: 110px 18px;
  }

  .rules-header h1 {
    font-size: 36px;
  }

  .rules-grid {
    gap: 28px;
    margin-top: 70px;
  }
}

@media (max-width: 576px) {
  .rules-modern {
    padding: 90px 16px;
  }

  .rules-header h1 {
    font-size: 28px;
  }

  .rules-intro {
    font-size: 15.5px;
  }

  .rules-grid {
    grid-template-columns: 1fr;
  }

  .rule-card {
    padding: 32px 26px 30px;
    border-radius: 24px;
  }

  .rule-card h3 {
    font-size: 19px;
  }

  .rule-card p {
    font-size: 14.8px;
  }

  .rules-footer {
    padding: 30px 26px;
  }
}

/* ===============================
   PRIVACY POLICY – MODERN 2026
================================ */

.policy-section {
  padding: 130px 20px;
  background:
    radial-gradient(circle at top left, #eef7f1, #ffffff 60%),
    radial-gradient(circle at bottom right, #f4fbf6, #ffffff 60%);
  font-family: "Inter", system-ui, sans-serif;
}

.policy-container {
  max-width: 900px;
  margin: auto;
}

/* ---------- HEADER ---------- */
.policy-header {
  text-align: center;
  margin-bottom: 90px;
}

.policy-title {
  font-size: 46px;
  font-weight: 900;
  color: #0d1f15;
  letter-spacing: 0.6px;
}

.policy-divider {
  width: 110px;
  height: 6px;
  margin: 22px auto 30px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1b5e20, #66bb6a);
}

.policy-intro {
  font-size: 17px;
  line-height: 1.95;
  color: #40524a;
}

/* ---------- CONTENT BLOCK ---------- */
.policy-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.policy-block {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 34px 38px;
  border-radius: 26px;
  border: 1px solid rgba(46, 125, 50, 0.14);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  transition: all 0.35s ease;
}

.policy-block:hover {
  transform: translateY(-6px);
  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.1),
    0 0 0 8px rgba(46, 125, 50, 0.08);
}

/* ---------- TEXT ---------- */
.policy-block h3 {
  font-size: 21px;
  font-weight: 800;
  color: #10261a;
  margin-bottom: 14px;
}

.policy-block p {
  font-size: 16px;
  line-height: 1.9;
  color: #465950;
}

/* ---------- FOOTER ---------- */
.policy-footer {
  margin-top: 100px;
  padding: 34px 38px;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #f1f8f4, #ffffff);
  border: 1px dashed rgba(46, 125, 50, 0.4);
}

.policy-footer p {
  font-size: 15.8px;
  line-height: 1.8;
  color: #24332c;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .policy-section {
    padding: 100px 18px;
  }

  .policy-title {
    font-size: 36px;
  }

  .policy-header {
    margin-bottom: 70px;
  }
}

@media (max-width: 576px) {
  .policy-section {
    padding: 85px 16px;
  }

  .policy-title {
    font-size: 28px;
  }

  .policy-intro {
    font-size: 15.5px;
  }

  .policy-block {
    padding: 28px 24px;
    border-radius: 22px;
  }

  .policy-block h3 {
    font-size: 18px;
  }

  .policy-block p {
    font-size: 14.8px;
  }

  .policy-footer {
    padding: 28px 24px;
  }
}

/* ===============================
   PROGRAM – ULTRA MODERN
================================ */

.program-neo {
  padding: 150px 20px;
  background:
    radial-gradient(circle at top right, #e7f5ec, #ffffff 55%),
    radial-gradient(circle at bottom left, #f3fbf6, #ffffff 60%);
  font-family: "Inter", system-ui, sans-serif;
}

.program-neo-container {
  max-width: 1100px;
  margin: auto;
}

/* ---------- HEADER ---------- */
.program-neo-header {
  text-align: center;
  max-width: 800px;
  margin: auto auto 90px;
}

.program-tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(46, 125, 50, 0.12);
  color: #2e7d32;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.program-neo-header h1 {
  font-size: 48px;
  font-weight: 900;
  color: #0b1d14;
  line-height: 1.2;
}

.program-neo-header h1 span {
  background: linear-gradient(90deg, #2e7d32, #66bb6a);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.program-neo-divider {
  width: 130px;
  height: 6px;
  margin: 26px auto 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1b5e20, #66bb6a);
}

.program-neo-header p {
  font-size: 17.5px;
  line-height: 2;
  color: #3e5248;
}

/* ---------- CONTENT ---------- */
.program-neo-content {
  max-width: 900px;
  margin: auto;
}

.program-neo-content p {
  font-size: 16.8px;
  line-height: 2;
  color: #465a50;
  margin-bottom: 26px;
}

/* ---------- ACTIVITIES ---------- */
.program-neo-activities {
  margin-top: 90px;
}

.program-neo-activities h3 {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: #10261a;
  margin-bottom: 50px;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.activity-card {
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-radius: 26px;
  border: 1px solid rgba(46, 125, 50, 0.15);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
  font-size: 15.8px;
  line-height: 1.8;
  color: #334a40;
  text-align: center;
  transition: 0.35s ease;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.12);
}

/* ---------- HIGHLIGHT ---------- */
.program-neo-highlight {
  margin-top: 100px;
  padding: 40px 44px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  color: #1b5e20;
  background:
    linear-gradient(135deg, #f1f8f4, #ffffff);
  border-radius: 30px;
  border: 1px dashed rgba(46, 125, 50, 0.4);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-neo-header h1 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .program-neo {
    padding: 100px 16px;
  }

  .program-neo-header h1 {
    font-size: 30px;
  }

  .program-neo-header p,
  .program-neo-content p {
    font-size: 15.5px;
  }

  .activities-grid {
    grid-template-columns: 1fr;
  }

  .program-neo-highlight {
    padding: 30px 26px;
    font-size: 16px;
  }
}


/* ===============================
   SUPPORT SECTION – WOW DESIGN
================================ */

.support-neo {
  padding: 150px 20px;
  background:
    radial-gradient(circle at top right, #f0f8f4, #ffffff 55%),
    radial-gradient(circle at bottom left, #f7fbf9, #ffffff 60%);
  font-family: "Inter", system-ui, sans-serif;
}

.support-neo-container {
  max-width: 1100px;
  margin: auto;
}

/* ---------- HEADER ---------- */
.support-neo-header {
  text-align: center;
  max-width: 850px;
  margin: auto auto 100px;
}

.support-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(46, 125, 50, 0.12);
  color: #2e7d32;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.support-neo-header h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  color: #0b1d14;
}

.support-neo-header h1 span {
  background: linear-gradient(90deg, #2e7d32, #66bb6a);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.support-divider {
  width: 130px;
  height: 6px;
  margin: 26px auto 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1b5e20, #66bb6a);
}

.support-neo-header p {
  font-size: 17.5px;
  line-height: 2;
  color: #3f5148;
}

/* ---------- GRID ---------- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* ---------- CARD ---------- */
.support-card {
  padding: 38px 34px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-radius: 30px;
  border: 1px solid rgba(46, 125, 50, 0.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: 0.4s ease;
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.12);
}

/* ICON */
.support-icon {
  font-size: 44px;
  margin-bottom: 18px;
}

/* CARD TEXT */
.support-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #10261a;
  margin-bottom: 16px;
}

.support-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #465a50;
}

/* ---------- HIGHLIGHT ---------- */
.support-highlight {
  margin-top: 110px;
  padding: 42px 46px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  color: #1b5e20;
  background: linear-gradient(135deg, #f1f8f4, #ffffff);
  border-radius: 32px;
  border: 1px dashed rgba(46, 125, 50, 0.4);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-neo-header h1 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .support-neo {
    padding: 100px 16px;
  }

  .support-neo-header h1 {
    font-size: 30px;
  }

  .support-neo-header p {
    font-size: 15.5px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-highlight {
    padding: 32px 26px;
    font-size: 16px;
  }
}

/* ===============================
   PROGRAM SECTION – MODERN CSS
================================ */

.program-section {
  padding: 120px 20px;
  background:
    radial-gradient(circle at top left, #eef7f1, #ffffff 55%),
    radial-gradient(circle at bottom right, #f4fbf6, #ffffff 60%);
  font-family: "Inter", system-ui, sans-serif;
}

.program-inner {
  max-width: 900px;
  margin: auto;
}

/* ---------- TITLE ---------- */
.program-title {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  color: #0d1f15;
}

.program-divider {
  width: 110px;
  height: 6px;
  margin: 22px auto 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1b5e20, #66bb6a);
}

/* ---------- PARAGRAPHS ---------- */
.program-inner p {
  font-size: 16.8px;
  line-height: 1.95;
  color: #465950;
  margin-bottom: 22px;
}

/* ---------- LIST ---------- */
.program-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 30px;
}

.program-list li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.85;
  color: #334a40;
}

.program-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #2e7d32;
  font-weight: 800;
}

/* ---------- HIGHLIGHT ---------- */
.program-highlight {
  margin-top: 60px;
  padding: 32px 36px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
  color: #1b5e20;
  background: linear-gradient(135deg, #f1f8f4, #ffffff);
  border-radius: 26px;
  border: 1px dashed rgba(46, 125, 50, 0.4);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .program-section {
    padding: 100px 18px;
  }

  .program-title {
    font-size: 34px;
  }

  .program-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .program-section {
    padding: 85px 16px;
  }

  .program-title {
    font-size: 26px;
  }

  .program-inner p {
    font-size: 15.5px;
  }

  .program-highlight {
    padding: 26px 24px;
    font-size: 15.5px;
  }
}

.pdf-card-section {
  padding: 60px 20px;
  background: #f8fafc;
}

.pdf-card-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.pdf-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pdf-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pdf-card h3 {
  position: relative;
  font-size: 18px;
  z-index: 1;
}

.pdf-card:hover {
  transform: translateY(-8px);
}

.pdf-card:hover::before {
  opacity: 1;
}

.pdf-card:hover h3 {
  color: #ffffff;
}

.pdf-glass-section {
  padding: 80px 20px;
  background: radial-gradient(circle at top, #052e16, #020617);
}

.pdf-glass-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.pdf-glass-card {
  height: 180px;
  border-radius: 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient Hover */
.pdf-glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #22c55e, #16a34a, #4ade80);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pdf-glass-card:hover::before {
  opacity: 1;
}

.pdf-glass-card:hover {
  transform: translateY(-12px) scale(1.03);
}

/* PDF ICON ANIMATION */
.pdf-icon {
  font-size: 34px;
  z-index: 1;
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.pdf-glass-card:hover .pdf-icon {
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

/* HEADING */
.pdf-glass-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ecfdf5;
  z-index: 1;
  text-align: center;
  transition: color 0.3s ease;
}

.pdf-glass-card:hover h3 {
  color: #022c22;
}

/* RIPPLE EFFECT */
.ripple::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}


.ripple:active::after {
  transform: scale(15);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* ================= JOIN US FORM SECTION ================= */

.join-us-form-section {
  padding: 80px 0;
  background-color: #f4f7f5;
  position: relative;
  z-index: 1;
}

.join-us-form-box {
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  /* overflow: hidden; */
}

/* Form Styles */
.join-us-form-group {
  margin-bottom: 30px;
}

.join-us-form-group label {
  display: block;
  font-size: 16px;
  color: #1c1c1c;
  font-weight: 600;
  margin-bottom: 10px;
}

.join-us-form-group input,
.join-us-form-group select {
  width: 100%;
  height: 40px;
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  padding: 0 25px;
  border-radius: 10px;
  font-size: 15px;
  color: #555;
  transition: all 0.3s ease;
  outline: none;
}

.join-us-form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232e7d32' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 25px center;
}

.join-us-form-group input:focus,
.join-us-form-group select:focus {
  border-color: var(--givewell-base);
}

/* niceSelect dropdown scroll fix */
.nice-select .list {
  max-height: 220px;
  overflow-y: auto;
}

/* optional: scrollbar visible */
.nice-select .list::-webkit-scrollbar {
  width: 6px;
}

.nice-select .list::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 4px;
}


.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-contact-list li i {
  color: white;
  font-size: 18px;
  margin-top: 5px;
}

.site-footer-three__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.site-footer-three__social a {
  width: 40px;
  height: 40px;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.site-footer-three__social a:hover {
  background: yellow;
  color: green;
}

/* Footer Alignment Fixes */
.footer-widget-three__links-list-two {
  margin-left: 0 !important;
}

.footer-widget-three__links,
.footer-widget-three__contact,
.footer-widget-three__about {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  margin-top: 0 !important;
  /* Reset top margin */
}

/* Footer Logo Section Refinement */
.footer-widget-three__about-logo img {
  max-width: 100px;
  /* Increase logo size */
  width: 100%;
  margin-bottom: 10px;
  border-radius: 50%;
  margin-left: 45px;
}

.footer-widget-three__about-text {
  margin-top: 10px !important;
  /* Reduce gap between logo and text */
  font-size: 20px;
  /* Adjust font size if needed */
  line-height: 28px;
}

/* Footer Layout Adjustments */

/* Desktop: Center Copyright */
@media (min-width: 992px) {
  .site-footer-three__bottom-inner {
    justify-content: center !important;
  }
}

/* Mobile: Margin for Important Links */
@media (max-width: 767px) {
  .footer-widget-three__links {
    margin-top: 30px !important;
  }
}

.join-us-form-group input:focus,
.join-us-form-group select:focus {
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(11, 93, 30, 0.1);
}

.join-us-form-group input[readonly] {
  background-color: #e9ecef;
  cursor: not-allowed;
  color: #0b5d1e;
  font-weight: 700;
}

/* ===============================
   FORM DROPDOWN HEIGHT FIX
   =============================== */

/* Desktop */
/* ===============================
   FORCE SMALL DROPDOWN HEIGHT
   =============================== */

/* Nice Select main box */
.join-us-form-group .nice-select {
  height: 40px !important;
  /* 🔥 yahin height control hoti hai */
  line-height: 40px !important;
  padding: 0 12px !important;
  font-size: 14px;
}

/* Text alignment */
.join-us-form-group .nice-select span {
  line-height: 40px !important;
}

/* Arrow center align */
.join-us-form-group .nice-select:after {
  top: 50% !important;
  transform: translateY(-50%);
}

/* Mobile touch friendly */
@media (max-width: 991px) {
  .join-us-form-group .nice-select {
    height: 44px !important;
    line-height: 44px !important;
  }

  .join-us-form-group .nice-select span {
    line-height: 44px !important;
  }
}


/* Button */
.join-us-btn-box {
  margin-top: 10px;
}

.join-us-btn {
  padding: 18px 50px;
  font-size: 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.join-us-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(11, 93, 30, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .join-us-form-box {
    padding: 30px 20px;
  }

  .join-us-form-group input,
  .join-us-form-group select {
    height: 20px;
  }

  .section-title__title {
    font-size: 32px;
  }
}

/* ================= CUSTOM DROPDOWN STYLES ================= */
.join-us-form-group .nice-select {
  width: 100%;
  float: none;
  /* Ensure it doesn't float weirdly if it was before */
}

/* Dropdown list (the part that opens up) */
.join-us-form-group .nice-select .list {
  width: 100%;
  /* Match container width */
  min-width: 100%;
  /* Ensure it doesn't shrink */
  max-height: 250px;
  /* Limit height for scrolling */
  overflow-y: auto;
  /* Enable vertical scroll */
  background-color: black;
  border-radius: 5px;
  /* Slightly nicer radius */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  /* Better shadow */
}

/* Dropdown items text */
.join-us-form-group .nice-select .option {
  font-size: 16px;
  /* Increased font size */
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.5;
}

/* Scrollbar styling for Webkit browsers (Chrome, Safari) */
.join-us-form-group .nice-select .list::-webkit-scrollbar {
  width: 8px;
}

.join-us-form-group .nice-select .list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.join-us-form-group .nice-select .list::-webkit-scrollbar-thumb {
  background: #2e7d32;
  /* Match theme green */
  border-radius: 4px;
}

.join-us-form-group .nice-select .list::-webkit-scrollbar-thumb:hover {
  background: #1b5e20;
}

/* ===== Subscribe Modal ===== */
.subscribe-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.subscribe-modal.active {
  display: block;
}

.subscribe-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.subscribe-modal__content {
  position: relative;
  max-width: 420px;
  margin: 15vh auto;
  background: #fff;
  padding: 30px 25px;
  text-align: center;
  border-radius: 12px;
  animation: modalFade 0.3s ease;
}

@keyframes modalFade {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.subscribe-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

.subscribe-modal h3 {
  margin-bottom: 10px;
}

.subscribe-modal p {
  font-size: 14px;
  margin-bottom: 20px;
}

.subscribe-modal__buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.subscribe-btn {
  padding: 10px 18px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.subscribe-btn.facebook {
  background: #1877f2;
}

.subscribe-btn.youtube {
  background: #ff0000;
}

/* Mobile */
@media (max-width: 576px) {
  .subscribe-modal__content {
    margin: 20vh 15px;
  }
}

/* ===============================
   DESKTOP ONLY: SLIM NAVBAR FIX
   =============================== */
@media (min-width: 1200px) {

  /* 1️⃣ Outer nav padding remove */
  .main-menu {
    padding: 0 !important;
  }

  /* 2️⃣ Wrapper height reduce */
  .main-menu__wrapper {
    padding: 10px !important;
  }

  /* 3️⃣ Inner container height control */
  .main-menu__wrapper-inner {
    min-height: 48px !important;
    /* 🔥 yahin height kam hoti hai */
    height: 38px;
    align-items: center;
  }

  /* 4️⃣ Container extra padding remove (Bootstrap effect) */
  .main-menu .container {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  /* 5️⃣ Logo half outside (tumhara working part) */
  .logo-custom {
    position: relative;
    z-index: 10;
  }

  .logo-custom img {
    position: relative;
    top: -30px;
    transform: translateY(20%);
    max-height: 100px;
  }
}

/* ===============================
   DESKTOP ONLY: NAV ITEMS ALIGN FIX
   =============================== */
@media (min-width: 1200px) {

  /* Nav list ko thoda upar lift karo */
  .main-menu__main-menu-box {
    display: flex;
    align-items: flex-start;
    /* 🔥 center → upar */
  }

  /* Individual nav links upar shift */
  .main-menu__list>li>a {
    padding-top: 4px;
    /* upar se kam space */
    padding-bottom: 6px;
  }

}

@media (min-width: 1200px) {

  /* Nav container ko aur upar lao */
  .main-menu__main-menu-box {
    align-items: flex-start;
    margin-top: -8px;
    /* 🔥 yahan se pura block upar */
  }

  /* Nav list fine tune */
  .main-menu__list {
    margin-top: -6px;
    /* 🔥 aur upar */
  }

  /* Individual nav links aur lift */
  .main-menu__list>li>a {
    padding-top: -35px;
    padding-bottom: 4px;
    transform: translateY(-20px);
    /* 🔥 pixel-level control */
  }

}

@media (min-width: 1200px) {

  /* 🔥 Nav items + right button dono ko same level pe lao */
  .main-menu__wrapper-inner {
    align-items: flex-start;
    /* center → top */
  }

  /* Nav container thoda upar */
  .main-menu__main-menu-box {
    margin-top: -10px;
  }

  /* Right button container bhi utna hi upar */
  .main-menu__right {
    margin-top: -12px;
  }

  /* Nav links fine tuning */
  .main-menu__list>li>a {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  /* Button padding same hi rehne do (sirf position change) */
  .main-menu__btn-box .thm-btn {
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 8px;
  }

}

/* ===============================
   BLOG DOWNLOAD BUTTON
   =============================== */

.blog-three__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  /* image overlay */
  opacity: 0;
  transition: all 0.3s ease;
}

/* Hover pe overlay show */
.blog-three__img:hover .blog-three__icon {
  opacity: 1;
}

.download-btn {
  background: #2e7d32;
  /* green power */
  color: #fff;
  padding: 40px 48px;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover effect */
.download-btn:hover {
  background: #1b5e20;
  color: #fff;
  transform: translateY(-2px);
}

/* Mobile: always visible button */
@media (max-width: 767px) {
  .blog-three__icon {
    opacity: 1;
    background: rgba(0, 0, 0, 0.4);
  }
}


/* Footer Links Hover Override */
.footer-widget-three__links-list li a:hover {
  color: #ffff00 !important;
}

.footer-widget-three__links-list li a:hover:before {
  background-color: #ffff00 !important;
}

/* WhatsApp Icon */
.whatsapp-icon {
  position: fixed;
  display: inline-block;
  left: 30px;
  bottom: 105px;
  z-index: 99;
}

.whatsapp-icon a {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 47px;
  text-align: center;
  font-size: 24px;
  color: #fff;
  border-radius: 5px;
  background: #25d366;
  z-index: 1;
  border: none;
  transition: all 500ms ease;
}

.whatsapp-icon a:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background-color: rgba(37, 211, 102, .20);
  border-radius: 5px;
  z-index: -1;
}

.whatsapp-icon a:hover {
  background: #128c7e;
  color: #fff;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

/* ==========================================================================
   Designation Popup Styles (Centered & Responsive)
   ========================================================================== */
.designation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 99998;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.designation-overlay.active {
  display: block;
  opacity: 1;
}

#designation-popup {
  position: fixed !important;
  left: 50% !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translate(-50%, -40%) scale(0.9) !important;
  width: 95% !important;
  max-width: 550px !important;
  background: #ffffff !important;
  border-radius: 20px !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
  z-index: 99999 !important;
  visibility: hidden !important;
  opacity: 0 !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1.0) !important;
  border: none !important;
  overflow: hidden;
}

#designation-popup.popup-visible {
  visibility: visible !important;
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

#designation-popup .popup-inner {
  padding: 40px !important;
  background: #fff !important;
  color: #333 !important;
}

#designation-popup .close-designation {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  background: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  z-index: 10;
}

#designation-popup .close-designation:hover {
  background: #e11d48;
  color: #fff;
  transform: rotate(90deg);
}

#designation-popup .chat-form h3 {
  color: #111 !important;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
}

#designation-popup .form-group {
  margin-bottom: 20px !important;
}

#designation-popup label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 15px;
  color: #444 !important;
}

#designation-popup .form-control {
  height: 55px !important;
  background: #f9f9f9 !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  color: #1a202c !important;
  font-size: 16px !important;
  padding: 10px 20px !important;
  transition: all 0.3s ease !important;
}

#designation-popup .form-control:focus {
  background: #fff !important;
  border-color: var(--givewell-base) !important;
  box-shadow: 0 0 0 3px rgba(var(--givewell-base-rgb), 0.1) !important;
}

#designation-popup .form-control[readonly] {
  background-color: #f7fafc !important;
  border-color: #edf2f7 !important;
  color: #4a5568 !important;
  font-weight: 600 !important;
  cursor: default !important;
}

#designation-popup .nice-select {
  width: 100% !important;
  height: 55px !important;
  line-height: 53px !important;
  background: #fdfdfd !important;
  border: 2px solid #e0e6ed !important;
  border-radius: 12px !important;
  color: #1a202c !important;
  padding-left: 20px !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}

#designation-popup .nice-select:hover,
#designation-popup .nice-select.open {
  border-color: var(--givewell-base) !important;
  background: #fff !important;
}

#designation-popup .nice-select .list {
  width: 100% !important;
  border-radius: 12px !important;
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.2) !important;
  background-color: #ffffff !important;
  border: 1px solid #eee !important;
  margin-top: 5px !important;
  padding: 8px 0 !important;
  max-height: 250px !important;
  overflow-y: auto !important;
}

#designation-popup .nice-select .option {
  color: #444 !important;
  line-height: 45px !important;
  min-height: 45px !important;
  padding-left: 20px !important;
  font-size: 15px !important;
  transition: all 0.2s ease !important;
  border-radius: 8px !important;
  margin: 2px 8px !important;
}

#designation-popup .nice-select .option:hover,
#designation-popup .nice-select .option.focus,
#designation-popup .nice-select .option.selected.focus {
  background-color: #f0fdf4 !important;
  /* Soft green tint */
  color: var(--givewell-base) !important;
  padding-left: 25px !important;
  /* Subtle slide effect */
}

#designation-popup .nice-select .option.selected {
  background-color: rgba(var(--givewell-base-rgb), 0.1) !important;
  color: var(--givewell-base) !important;
  font-weight: 600 !important;
}

#designation-popup .nice-select:after {
  border-bottom: 2px solid #666 !important;
  border-right: 2px solid #666 !important;
  width: 10px !important;
  height: 10px !important;
  right: 22px !important;
  margin-top: -6px !important;
}

#designation-popup .thm-btn {
  width: 100%;
  height: 60px;
  margin-top: 10px;
  font-size: 18px;
  border-radius: 12px !important;
}

/* Response for Mobile */
@media (max-width: 576px) {
  #designation-popup {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    border-radius: 0 !important;
    transform: translate(-50%, 0) !important;
    top: 0 !important;
  }

  #designation-popup.popup-visible {
    transform: translate(-50%, 0) !important;
  }

  #designation-popup .popup-inner {
    padding: 60px 20px 30px !important;
    height: 100%;
    overflow-y: auto;
  }

  #designation-popup .chat-form h3 {
    font-size: 20px;
  }

  #designation-popup .form-control,
  #designation-popup .nice-select {
    height: 50px !important;
  }
}

/* ==========================================================================
   Designation Card Adjustments (Non-Hover)
   ========================================================================== */
.designation-list-btn-box {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}

.designation-list-btn-box .thm-btn {
  padding: 12px 25px !important;
  font-size: 15px !important;
  border-radius: 8px !important;
}

/* Remove Dark Overlay on Image Hover */
.blog-three__single:hover .blog-three__img:before {
  opacity: 0 !important;
}

/* Disable Hover Icon if any remains */
.blog-three__icon {
  display: none !important;
}

/* Adjust image box spacing */
.blog-three__img-box {
  margin-top: 0 !important;
}