@import "./core/Variables.css";
@import "./core/reset.css";
@import "./core/typography.css";
@import "./layout/navbar.css";
@import "./layout/slider.css";
@import "./components/overview.css";
@import "./components/advocacy.css";
@import "./components/pillars.css";
@import "./components/key-advocacy-areas.css";
@import "./components/resources-toolkit.css";
@import "./components/policy-statement.css";
@import "./components/workshop.css";
@import "./components/news.css";
@import "./components/contact.css";
@import "./components/footer.css";


/* ================= DECOR ================= */
.shape-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(77,166,255,0.15);
  border-radius: 50%;
  bottom: -92%;
  right: -150px;
}
.shape-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--primary) 2px, transparent 2px);
  background-size: 18px 18px;
  bottom: -15rem;
  left: 0px;
}
/* ================= SWIPER ================= */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
}
.swiper-pagination-bullet-active {
  background: var(--primary);
}
/* ================= SEARCH ================= */
.nav-search .search-toggle {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--dark);
}
/* Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 28, 45, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.search-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.search-box {
  position: relative;
  width: min(90%, 520px);
}
.search-box input {
  width: 100%;
  padding: 1rem 3.5rem 1rem 1.2rem;
  border-radius: 50px;
  border: none;
  font-size: 1.1rem;
  outline: none;
}
.search-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--dark);
}
/* Mobile spacing */
@media (max-width: 991px) {
  .nav-search {
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .shape-circle {
    display: none;
  }
  .shape-dots {
    display: none;
  }
}

.border-top-bottom {
  border-top: 1px solid #eceaea;
  border-bottom: 1px solid #eceaea;
}


/* =============================================
           BACK TO TOP BUTTON
        ============================================= */
        #backToTop {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: #1a3a8c;
            color: #fff;
            border: none;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(26,58,140,0.35);
            cursor: pointer;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.2s;
        }
 
        #backToTop.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
 
        #backToTop:hover {
            background: #10a5f5;
        }
 
        #backToTop i {
            pointer-events: none;
        }

