/* ===========================================================
   =============== DROPDOWN NAVBAR ===========================
   =========================================================== */
.Header__homeNavbarFixed .Header__searchLink {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 1rem;
  background-color: black;
  box-shadow: none !important;          /* Removes background shadow */
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: Header__slideInDown;
  animation-name: Header__slideInDown;
}

/* ===========================================================
   =============== SEARCH BAR (MERGED) =======================
   =========================================================== */

/* --- Search Bar Container --- */
.SearchBox__searchpart {
  width: 100%;
  position: relative;
  display: flex;
  background-color: transparent;        /* Transparent background */
  border-radius: 0.1875rem;
  box-shadow: none !important;          /* 🔥 no shadow */
}

/* --- Search Bar Style (Unified) --- */
.SearchBox__searchTextbox input,
#searchContainer input,
#autoSearchContainer {
  border-radius: 20px;
  border: 2px solid #69D757;
  background: #10210D;                  /* Dark greenish background */
  color: white;                          /* Ensures text is visible on dark background */
  padding: 10px 16px;
  font-size: 1rem;
  outline: none;
  width: 100%;
  transition: border-color 0.3s ease, background 0.3s ease;
  box-shadow: none !important;           /* 🔥 no shadow */
}

/* --- Hover & Focus Effects --- */
.SearchBox__searchTextbox input:hover,
.SearchBox__searchTextbox input:focus,
#searchContainer input:hover,
#searchContainer input:focus,
#autoSearchContainer:hover,
#autoSearchContainer:focus {
  border-color: white;
  background: #000;                      /* Pure black on hover/focus */
}

/* ===========================================================
   =============== RESPONSIVE NAV ============================
   =========================================================== */
@media (max-width: 48rem) {
  .Header__navOpen .Header__nav {
    background-color: #10210D !important; /* dark green/black tone */
  }
}

/* ===========================================================
   =============== CARD STYLES ===============================
   =========================================================== */

/* --- Grid View Card --- */
.TitleContainer__container {
  border-radius: 20px;
  border: 2px solid rgba(105, 215, 87, 0.20);
  background: rgba(105, 215, 87, 0.05);
  box-shadow: none !important;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.TitleContainer__container:hover {
  background: rgba(105, 215, 87, 0.15);
  border-color: rgba(105, 215, 87, 0.40);
}

/* --- List View Card --- */
.TitleContainer__listView {
  border-radius: 20px;
  border: 2px solid rgba(105, 215, 87, 0.20);
  background: rgba(105, 215, 87, 0.05);
  box-shadow: none !important;
  transition: background 0.3s ease, border-color 0.3s ease;
  padding: 16px;                         /* Adds spacing inside the card */
}
.TitleContainer__listView:hover {
  background: rgba(105, 215, 87, 0.15);
  border-color: rgba(105, 215, 87, 0.40);
}

/* --- Text Colors / Links --- */
.Link__link,
.TitleContainer__description,
.TitleContainer__progressText {
  color: white !important;
}
.Link__link:hover {
  color: #69D757 !important;
}

/* --- Category Container --- */
.ModuleCategoryContainer__containerListView {
  background-color: #10210D;
  padding: 0 .625rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

/* ===========================================================
   =============== ARTICLE STYLES ============================
   =========================================================== */

/* --- Title --- */
.ArticlesContainer__title {
  color: white;
  margin: 0 0 .9375rem;
  font-size: 1.5rem;
}

/* --- Article Card --- */
.ArticlesContainer__articleListWidget .ModuleItem__moduleListItem {
  border-radius: 20px;
  border: 2px solid rgba(105, 215, 87, 0.20);
  background-color: #0B1709;
  box-shadow: none !important;
  transition: background 0.3s ease, border-color 0.3s ease;
  padding: 16px;
  color: white !important;
  margin-bottom: 10px;                   /* Spacing between cards */
}
.ArticlesContainer__articleListWidget .ModuleItem__moduleListItem a {
  color: white !important;
  text-decoration: none;
}
.ArticlesContainer__articleListWidget .ModuleItem__moduleListItem:hover {
  background-color: #132A11;             /* Slightly lighter on hover */
  border-color: rgba(105, 215, 87, 0.40);
}

/* --- Outer Container Reset --- */
.ArticlesContainer__articleListWidget {
  border: none !important;
  background: transparent !important;
}

/* ===========================================================
   =============== BUTTONS ===================================
   =========================================================== */

/* --- Primary Tag Button --- */
.Button__tagPrimary.Button__basic {
  border-radius: 100px;
  background: #69D757;
  color: black !important;
  padding: 12px 24px;
  transition: background 0.3s ease, color 0.3s ease;
  border: none;
  box-shadow: none !important;
}
.Button__tagPrimary.Button__basic:hover {
  background: #A3FF94;                   /* Slightly lighter on hover */
  color: black !important;
  cursor: pointer;
  box-shadow: none !important;
}

/* --- Neutral Button --- */
.Button__neutral {
  border: none;                           /* Removed the border */
  border-radius: 100px;
  background: #69D757;
  color: black !important;
  padding: 12px 24px;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: none !important;
  display: inline-block;
  cursor: pointer;
}
.Button__neutral:hover {
  background: #A3FF94;
  color: black !important;
}

/* ===========================================================
   =============== FOOTER ====================================
   =========================================================== */

/* --- Variables --- */
:root {
  --footer-bg: #0b0b0b;
  --footer-text: #f5f5f7;
  --footer-muted: #a1a1aa;
  --footer-accent: #57d163;              /* green accent */
}

/* --- Base Styles --- */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  padding: 64px 40px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 56px;
  align-items: flex-start;
}
@media only screen and (max-width: 1200px) {
.footer-inner {
  flex-wrap: wrap;
  }}

/* --- Brand Block --- */
.footer-logo img { display: block; }
.footer-blurb {
  margin: 24px 0 28px;
  line-height: 1.8;
  color: var(--footer-muted);
  max-width: 520px;
}

/* --- Socials --- */
.footer-social {
  list-style: none;
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  color: var(--footer-text);
  text-decoration: none;
  transition: all .2s ease;
}
.footer-social a:hover {
  border-color: var(--footer-accent);
  transform: translateY(-1px);
}
.footer-social a.is-active {
  box-shadow: 0 0 0 2px var(--footer-accent) inset;
}

/* --- Columns --- */
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 200px;
}
.footer-title {
  margin: 0 0 18px;
  font-size: .9rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--footer-muted);
  font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: 14px 0; }
.footer-col a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 1.05rem;
}
.footer-col a:hover { color: var(--footer-accent); }
.footer-col a.is-current { color: var(--footer-accent); font-weight: 700; }

/* --- Responsive --- */
@media (max-width: 980px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-nav { grid-template-columns: 1fr; gap: 40px; }
}

/* --- Alignment Fix --- */
.site-footer,
.footer-inner,
.footer-nav,
.footer-col {
  text-align: left;                      /* beats any global center text */
}
.footer-inner,
.footer-nav {
  justify-items: start;                  /* if a global grid rule centers items */
  align-items: start;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li { margin: 14px 0; }
.footer-col a {
  display: inline-block;                 /* prevents odd centering if anchors are block-level */
}





/* ===========================================================
   =============== Card SubPage ====================================
   =========================================================== */
.CustomWidgets__widgetTitle {
    color: #ffffff;
    display: block;
    margin: 0 0 .9375rem;
    font-size: 1rem
16px
;
}

.commonStyle__link {
    color: #ffffff;
}

.commonStyle__link:hover {
    color: #69D757;
}

.Icon__icon {
    color: #ffffff;
    vertical-align: middle;
    fill: currentColor;
    width: 1.25rem;
    height: 1.25rem;
}

.ArticleDetailRightContainer__descriptionFlw {
    font-size: .8125rem;
    color: #6AB35E;
    margin: .2rem 0 0;
}


.Icon__icon {
    color: #4e9043;
    vertical-align: middle;
    fill: currentColor;
    width: 1.25rem;
    height: 1.25rem;
}


.ArticleDetailLeftContainer__box,
.ArticleDetailLeftContainer__cmdBox {
  background: #ffffff;
  padding: 1.25rem;
  overflow: auto;
  border: 1px solid var(--color-lightGrey);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.03);
  border-radius: 20px; /* Adds rounded corners */
}





.Header__containerLink {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  text-decoration: none;
  background: #69D757;
  color: black !important;
  padding: 12px 24px;
  border-radius: 100px;
  border: none; /* ✅ Removes the white border */
  box-shadow: none !important;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.Header__containerLi {
    background-color: #fff;
    box-shadow: 0 .625rem .625rem rgba(0, 0, 0, 0.16);
    padding: 0;
    font-weight: 600;
    color: #555;
    border: 0;
    font-size: .875rem;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    transition: .5s all;
    border-radius: .1875rem;
    line-height: 1.428571;
}

/* Hover effect */
.Header__containerLink:hover {
  background: #A3FF94;
  color: black !important;
}



/* --- submit ticket box --- */
.TicketFormLeftContainer__part {
    padding: .625rem;
    background: var(--color-brand);
    border: .0625rem solid var(--color-lightGrey);
    border-radius: 20px;
}

/* --- submit ticket box button --- */
.Button__basic:last-child {
  border-radius: 100px;
  background: #69D757;
  color: black !important;
  padding: 12px 24px;
  transition: background 0.3s ease, color 0.3s ease;
  border: none;
  box-shadow: none !important;
}

.Button__basic:last-child:hover {
  background: #A3FF94;
  color: black !important;
  cursor: pointer;
  box-shadow: none !important;
}


.Input__formInput {
    padding: .575rem .625rem;
    color: var(--color-HexGray20);
    font-size: .875rem;
    border: .0625rem solid #ddd;
    width: 100%;
    outline: 0;
    border-radius: 10px;
    -webkit-appearance: none;
    transition: border-color 0.3s ease;
}

/* Change border color when input is focused */
.Input__formInput:focus {
    border-color: #69D757;
}

.DropDown__textwrap {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: inherit;
    font-size: var(--size-fZ13);
    height: 2.425rem;
    padding: .625rem 2.1875rem .625rem .625rem;
    line-height: normal;
    transition: border-color 0.3s ease;
}

.DropDown__textwrap:focus {
    border-color: #69D757;
}

/* --- Classification dropdown --- */
.DropDown__listmenu {
    top: 110%;
    left: 0;
    right: 0;
    background: #10210D;
    transition: all .3s ease-out;
    list-style: none;
    margin: 0;
    padding: 0;
    border: .0625rem solid var(--color-HexGray90);
    z-index: 1;
    max-height: 13.5rem;
    overflow-y: auto;
}




/* --- Sign in Page --- */

.Signin__details {
    background: var(--color-brand);
    padding: 1.875rem 0;
    border-radius: 20px;
    display: flex;
    width: 90%;

}

.Footer__footer {
	padding: 0;
  	border:0;
}

.TitleContainer__listView {
	margin-bottom: 12px;
}

.TitleContainer__listView:last-child {
	margin-bottom: 0px;
}
  
.ModuleItem__moduleItem {
    border-radius: 20px;
}

.ModuleItem__moduleTitle a {
	color: #000!important;
}

.footer-brand {
	flex-grow: 1;
}


.SubscribeDepart__depname {
	color: #fff!important;
}

.SubscribeDepart__depdec, .SubscribeDepart__decsmall {
    color: #fff!important;
  	opacity:80%;
}

.footer-blurb {
	max-width: 320px;
  	color: #fff;
  	font-weight: 600;
  	line-height: 170%;
  	font-size: 16px;
}

.Signin__signPart a {
	color:#4e9043;
}

.Signin__signPart a:hover {
	color:#69D757;
} 

.ModuleCategoryContainer__tabs .Button__tagPrimary {
	visibility: hidden;
}
