



/* Navbar common styles moved from home.php for consistent sizing */
/* The navbar stays pinned to the top of the viewport once the contact bar above
   it has scrolled away. 1030 is Bootstrap's own fixed-navbar layer, so modals
   (1055) and their backdrops still sit over it. */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow 0.3s ease, background 0.3s ease, padding 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(25, 25, 35, 0.12); }

.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 14px !important;
  color: #1a1a1a;
  transition: color 0.25s ease;
  overflow: hidden;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #7c03fd, #ff0606);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #4169e1 !important; }

/* The underline marks the current page and nothing else. Both navbars say which
   page that is themselves (main_header.php and header_home.php compare
   $current_page), so no script needs to guess it -- the old workaround here,
   which suppressed the Home link's hover styling to hide a wrongly-active Home,
   is gone along with the click-scroll script that caused it. */

.navbar-nav .dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(25, 25, 35, 0.12);
  padding: 8px;
  margin-top: 8px !important;
  animation: dropIn 0.2s ease-out;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #7c03fd, #ff0606) 1;
  border-radius: 0 0 12px 12px;
}

@keyframes dropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.navbar-nav .dropdown-item {
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #2c3b58;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.navbar-nav .dropdown-item:hover { background: linear-gradient(90deg, rgba(124,3,253,0.08), rgba(255,6,6,0.06)); color: #4169e1; padding-left: 20px; }

.navbar .btn-nav-cta {
  background: linear-gradient(135deg, #7c03fd 0%, #ff0606 100%);
  color: #ffd700 !important;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 8px 22px;
  font-size: 0.88rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(124,3,253,0.3);
}
.navbar .btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 7px 20px rgba(124,3,253,0.45); }

/* "Start Selling" CTA in the navbar. It carries its own class instead of the
   shared .custom-btn / .custom-border-btn pair, so restyling it cannot bleed
   into the other buttons those two classes dress across the portal. The
   three-stop gradient is twice the button's width: hover slides it end to end,
   which reverses magenta and crimson instead of the flat colour swap the
   bordered button used to do. */
.navbar .navbar-nav .nav-link.start-selling-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px !important;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #b70de7 0%, #f70d4b 50%, #b70de7 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 6px 18px rgba(183, 13, 231, 0.28);
  transition: background-position 0.45s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.navbar .navbar-nav .nav-link.start-selling-btn i {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.navbar .navbar-nav .nav-link.start-selling-btn:hover,
.navbar .navbar-nav .nav-link.start-selling-btn:focus-visible {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(247, 13, 75, 0.38);
  color: #fff !important;
}

.navbar .navbar-nav .nav-link.start-selling-btn:hover i,
.navbar .navbar-nav .nav-link.start-selling-btn:focus-visible i { transform: scale(1.12) rotate(-6deg); }

.navbar .navbar-nav .nav-link.start-selling-btn:active {
  transform: translateY(0);
  box-shadow: 0 5px 14px rgba(183, 13, 231, 0.3);
}

/* The animated underline every other nav link gets has no place on a filled pill */
.navbar .navbar-nav .nav-link.start-selling-btn::after { content: none; }

@media (prefers-reduced-motion: reduce) {
  .navbar .navbar-nav .nav-link.start-selling-btn,
  .navbar .navbar-nav .nav-link.start-selling-btn i { transition: none; }
  .navbar .navbar-nav .nav-link.start-selling-btn:hover { transform: none; }
}

/* "Agent Login" CTA — the outlined counterpart to the Start Selling pill next
   to it. Same pill geometry so the pair reads as a set, but inverted weight:
   white ground, hairline border, magenta type. That keeps Start Selling the
   single filled primary action instead of two CTAs competing. Like its
   neighbour it carries a private class rather than the shared .custom-btn
   pair, so restyling it stays contained. */
.navbar .navbar-nav .nav-link.agent-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  /* tighter on the left: the circled icon supplies its own optical padding */
  padding: 8px 20px 8px 9px !important;
  border: 1.5px solid #dfe3ea;
  border-radius: 999px;
  background: #fff;
  color: #b70de7 !important;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 2px 8px rgba(44, 59, 88, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

/* The icon sits in its own ring, per the button design */
.navbar .navbar-nav .nav-link.agent-login-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 0.85rem;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.navbar .navbar-nav .nav-link.agent-login-btn:hover,
.navbar .navbar-nav .nav-link.agent-login-btn:focus-visible {
  border-color: #b70de7;
  color: #b70de7 !important;
  box-shadow: 0 10px 22px rgba(183, 13, 231, 0.18);
  transform: translateY(-2px);
}

/* Hover fills the ring, echoing the filled pill beside it */
.navbar .navbar-nav .nav-link.agent-login-btn:hover i,
.navbar .navbar-nav .nav-link.agent-login-btn:focus-visible i {
  background: #b70de7;
  color: #fff;
  transform: scale(1.08);
}

.navbar .navbar-nav .nav-link.agent-login-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(183, 13, 231, 0.16);
}

.navbar .navbar-nav .nav-link.agent-login-btn::after { content: none; }

@media (prefers-reduced-motion: reduce) {
  .navbar .navbar-nav .nav-link.agent-login-btn,
  .navbar .navbar-nav .nav-link.agent-login-btn i { transition: none; }
  .navbar .navbar-nav .nav-link.agent-login-btn:hover { transform: none; }
}

.navbar-toggler { border: 1.5px solid rgba(65,105,225,0.4); border-radius: 8px; padding: 6px 10px; transition: background 0.2s ease, border-color 0.2s ease; }
.navbar-toggler:hover { background: rgba(65,105,225,0.06); border-color: #4169e1; }

@media (min-width: 992px) {
  .navbar-shrink { padding-top: 6px !important; padding-bottom: 6px !important; }
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Regular.woff2') format('woff2'),
        url('../fonts/Roboto/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Light.woff2') format('woff2'),
        url('../fonts/Roboto/Roboto-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Bold.woff2') format('woff2'),
        url('../fonts/Roboto/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Bold.woff2') format('woff2'),
        url('../fonts/Roboto/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #b7c905;
  --secondary-color:              #ff0048;
  --section-bg-color:             #f0f8ff;
  --site-footer-bg-color:         #44525d;
  --custom-btn-bg-color:          #597081;
  --custom-btn-bg-hover-color:    #ff0048;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #e9eaeb;

  --body-font-family:             'Roboto', sans-serif;

  --h1-font-size:                 52px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  16px;
  --btn-font-size:                18px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul li,
a,
button {
  font-family: var(--body-font-family);
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
}

h2 {
  color: var(--secondary-color);
  font-size: var(--h2-font-size);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  color: var(--dark-color);
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color:var(--p-color) ;
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--dark-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 50px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.section-overlay + .container {
  position: relative;
}


/*---------------------------------------
  CUSTOM BLOCK               
-----------------------------------------*/
.custom-block-wrap {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.custom-block-wrap:hover {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.custom-block-body {
  padding: 30px;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-block .custom-btn {
  border-radius: 0;
  display: block;
}


/*---------------------------------------
  PROGRESS BAR               
-----------------------------------------*/
.progress {
  background: var(--border-color);
  height: 5px;
}

.progress-bar {
  background: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM LIST               
-----------------------------------------*/
.custom-list {
  margin-bottom: 0;
  padding-left: 0;
}

.custom-list-item {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 10px;
}


/*---------------------------------------
  CUSTOM TEXT BOX               
-----------------------------------------*/
.custom-text-box {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  margin-bottom: 24px;
  padding: 40px;
}

.custom-text-box-image {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-text-box-icon {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--secondary-color);
  font-size: var(--h6-font-size);
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  line-height: 30px;
}


/*---------------------------------------
  AVATAR IMAGE - TESTIMONIAL, AUTHOR               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 65px;
  height: 65px;
  object-fit: cover;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--secondary-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding: 15px 25px;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  margin-top: 2px;
  padding: 8px 14px;
  border-radius: 50px;
}

.custom-btn:hover {
  background: rgb(61, 59, 59);
  color: var(--white-color);
}

.custom-border-btn {
  background:#ffffff;
  border: 2px solid #ff0048;
  color: #090437;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: #b7c905;
  color: var(--white-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background: #dc6f8e;
  z-index: 9;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-brand {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand span {
  display: inline-block;
  vertical-align: middle;
}

.navbar-brand small {
  color: var(--secondary-color);
  display: block;
  font-size: 10px;
  line-height: normal;
  text-transform: uppercase;
}

.logo {
  max-width: 150px;
  height: 60px;
  
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding: 8px 14px;
}

.dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  width: 100%;
  max-width: none;
  padding: 0;
  /* margin-top: 20px; */
}

.dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-menu li:last-child .dropdown-item {
  padding-top: 0;
}

.dropdown-item.active, 
.dropdown-item:active,
.dropdown-item:focus, 
.dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.dropdown-toggle::after {
  /* content: "\f282"; */
  display: inline-block;
  /* font-family: bootstrap-icons !important; */
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    /* display: block; */
    margin-top: 0;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background: #b7c905;
  padding-top: 15px;
  padding-bottom: 10px;
}

.site-header p,
.site-header p a,
.site-header .social-icon-link {
  /* background-color: #ffff; */
  color: #032195;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  /* margin-top: 3px; */
}

.site-header .social-icon {
  text-align: right;
}

.site-header .social-icon-link {
  background: transparent;
  width: inherit;
  height: inherit;
  line-height: inherit;
  margin-right: 15px;
}


/*---------------------------------------
  HERO & HERO SLIDE         
-----------------------------------------*/
.hero-section-full-height {
  height: 680px;
  min-height: 680px;
  position: relative;
}

.carousel:hover .carousel-control-next-icon, 
.carousel:hover .carousel-control-prev-icon {
  opacity: 1;
}

#hero-slide .carousel-item {
  height: 550px;
  min-height: 550px;
}

#hero-slide .carousel-caption {
  background: var(--white-color);
  clip-path: polygon(100% 100%, 100% 150px, 0 100%);
  color: var(--secondary-color);
  top: 1px;
  bottom: -1px;
  right: 0;
  left: auto;
  text-align: right;
  min-width: 680px;
  min-height: 550px;
  padding: 100px 100px 50px 100px;
}

.carousel-image {
  display: block;
  width: 100%;
  min-height: 680px;
}

#hero-slide .carousel-indicators-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

#hero-slide .carousel-indicators {
  margin-right: 0;
  margin-left: 22px;
  justify-content: inherit;
}

.carousel-control-next, 
.carousel-control-prev {
  opacity: 1;
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  background-size: 60% 60%;
  width: 80px;
  height: 80px;
  opacity: 0;
  transition: all 0.3s;
}

.carousel-control-next-icon:hover, 
.carousel-control-prev-icon:hover {
  background-color: var(--primary-color);
}


/*---------------------------------------
  FEATURE BLOCK              
-----------------------------------------*/
.featured-block {
  text-align: center;
  transition: all 0.3s ease;
  min-height: 256px;
  padding: 15px;
}

.featured-block:hover {
  background: #ffffff;
  border-radius: 4px solid #ff0048;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border-radius: 12px;
}

.featured-block:hover .featured-block-image {
  transform: scale(0.75);
}

.featured-block-image {
  display: block;
  margin: auto;
  transition: all 0.3s;
}

.featured-block:hover .featured-block-text {
  margin-top: 0;
}

.featured-block-text {
  color:black;
  font-size: var(--h5-font-size);
  margin-top: 20px;
  transition: all 0.5s;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 350px;
  height: 400px;
  object-fit: cover;
}

.custom-text-block {
  padding: 60px 40px;
}


/*---------------------------------------
  COUNTER NUMBERS              
-----------------------------------------*/
.counter-thumb {
  margin: 20px;
  margin-bottom: 0;
}

.counter-number,
.counter-text {
  color: var(--secondary-color);
  display: block;
}

.counter-number,
.counter-number-text {
  color: var(--primary-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
}


/*---------------------------------------
  VOLUNTEER              
-----------------------------------------*/
/* .volunteer-section {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.volunteer-section::after {
  content: "";
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  bottom: -110px;
  right: -80px;
  width: 350px;
  height: 350px;
}

.volunteer-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.volunteer-image {
  border-radius: 100%;
  display: block;
  margin: auto;
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.volunteer-section .custom-block-body {
  max-width: 440px;
  margin: 0 auto;
}

.volunteer-section .custom-block-body p {
  line-height: 1.7;
} */


/*---------------------------------------
  DONATE              
-----------------------------------------*/
/* .donate-section {
  background-image: url('../images/different-people-doing-volunteer-work.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.donate-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 50px;
} */


/*---------------------------------------
  NEWS         
-----------------------------------------*/
/* .news-detail-header-section {
  background-image: url('../images/news/close-up-volunteer-oganizing-stuff-donation.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.news-block-top {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.news-block-two-col-image-wrap {
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
  width: 150px;
  margin-right: 20px;
} */

/* .news-category-block {
  background: var(--secondary-color);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 10px 20px;
}

.news-category-block .category-block-link {
  color: var(--white-color);
  margin-right: 10px;
}

.news-block-info {
  padding-top: 10px;
  padding-bottom: 10px;
}

.news-block-title-link {
  color: var(--dark-color);
} */

/* .news-detail-image {
  display: block;
  border-radius: var(--border-radius-medium);
} */

blockquote {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-semibold);
  color: var(--site-footer-bg-color);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 90px 50px 50px 50px;
  text-align: center;
}

blockquote::before {
  content: "“";
  color: var(--custom-btn-bg-color);
  font-size: 100px;
  line-height: 1rem;
  display: block;
}

.author-comment-link {
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-semibold);
}

.search-form {
  margin-top: 20px;
}

.category-block,
.subscribe-form {
  margin-top: 40px;
  margin-bottom: 40px;
}

.category-block-link {
  font-size: var(--copyright-font-size);
  margin-top: 5px;
  margin-bottom: 5px;
}

.category-block-link:hover {
  color: var(--primary-color);
}

.badge {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding-bottom: 2px;
}

.tags-block-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  display: inline-block;
  font-size: var(--copyright-font-size);
  line-height: normal;
  margin-right: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 8px 15px;
}

.tags-block-link:hover {
  border-color: var(--dark-color);
  color: var(--dark-color);
}

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: -100px;
  left: -30px;
  margin: auto;
  width: 200px;
  height: 200px;
}

.cta-section::after {
  content: "";
  border: 20px solid var(--custom-btn-bg-color);
  border-radius: 50%;
  position: absolute;
  bottom: -100px;
  right: 0;
  left: 0;
  margin: auto;
  width: 150px;
  height: 150px;
}


/*---------------------------------------
  TESTIMONIAL CAROUSEL              
-----------------------------------------*/
.testimonial-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.testimonial-section::before {
  content: "";
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: -100px;
  left: -30px;
  margin: auto;
  width: 250px;
  height: 250px;
}

.testimonial-section::after {
  content: "";
  background: var(--custom-btn-bg-color);
  border-radius: 50%;
  position: absolute;
  bottom: -110px;
  right: -80px;
  width: 350px;
  height: 350px;
}

#testimonial-carousel .carousel-caption {
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
}

#testimonial-carousel .carousel-title {
  background: var(--section-bg-color);
  line-height: normal;
  margin-bottom: 30px;
}

#testimonial-carousel .carousel-title::before {
  content: open-quote;
  color: var(--p-color);
  font-size: var(--h1-font-size);
  position: relative;
  top: 10px;
  right: 10px;
}

#testimonial-carousel .carousel-title::after {
  content: close-quote;
  color: var(--p-color);
  font-size: var(--h1-font-size);
  position: relative;
  top: 10px;
  left: 10px;
}

#testimonial-carousel .carousel-title {
  quotes: "“" "”" "‘" "’";
}

#testimonial-carousel .carousel-name {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
}

#testimonial-carousel .carousel-name::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--primary-color);
}

.carousel-name-title {
  font-weight: var(--font-weight-semibold);
}

#testimonial-carousel .carousel-indicators {
  position: relative;
  top: 150px;
  bottom: auto;
  margin-top: 50px;
  margin-bottom: 150px;
}

#testimonial-carousel .carousel-indicators li {
  text-indent: inherit;
  background: transparent;
  margin: 0 10px; 
}

#testimonial-carousel .carousel-indicators li,
#testimonial-carousel .carousel-indicators li::before {
  width: 45px;
  height: 45px; 
}

#testimonial-carousel .carousel-indicators .avatar-image {
  width: 45px;
  height: 45px; 
}

#testimonial-carousel .carousel-indicators .active,
#testimonial-carousel .carousel-indicators .active .avatar-image {
  background: transparent;
  width: 50px; 
  height: 50px;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: var(--white-color);
}

.contact-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 40px;
}

.contact-info-wrap {
  padding-top: 40px;
}

.contact-image-wrap {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  width: 100%;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control,
.custom-form .form-select,
.input-group-file {
  background-color: var(--section-bg-color);
  box-shadow: none;
  border: 0;
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  border-color: var(--secondary-color);
}

.custom-form label {
  margin-bottom: 10px;
}

.custom-form .form-check-group {
  margin-bottom: 20px;
}

.donate-form .form-check-group-donation-frequency {
  padding-right: 0;
}

.form-check-group-donation-frequency + .form-check-group-donation-frequency {
  padding-right: 12px;
  padding-left: 0;
}

.form-check-group-donation-frequency .form-check-label {
  font-weight: var(--font-weight-semibold);
}

#DonationFrequencyOne {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#DonationFrequencyMonthly {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-form .form-check-radio {
  position: relative;
  height: 100%;
  padding-left: 0;
}

.custom-form .input-group-text {
  background: var(--secondary-color);
  border: 0;
  color: var(--white-color);
}

.custom-form .form-check-radio .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-radio .form-check-input[type=radio] {
  background-color: var(--section-bg-color);
  border-radius: .25rem;
  border: 0;
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 25px 50px;
  transition: all 0.5s;
}

.form-check-radio .form-check-input:checked[type=radio] {
  background-image: none;
}

.form-check-radio .form-check-input:checked[type=radio] + .form-check-label,
.form-check-radio .form-check-input:hover + .form-check-label,
.form-check-radio .form-check-input:checked + .form-check-label {
  color: var(--white-color);
}

.form-check-radio .form-check-input:hover,
.form-check-radio .form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.input-group-file {
  border-radius: .25rem;
  padding: 13px .75rem;
}

.input-group-file input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  padding: 0;
}

.input-group-file .input-group-text {
  background: transparent;
  color: inherit;
  margin-bottom: 0;
  padding: 0;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  CONTACT SEARCH & DONATE & SUBCRIBE FORM              
-----------------------------------------*/
.contact-form .form-control {
  background: var(--white-color);
}

.search-form {
  position: relative;
}

.search-form .form-control {
  padding-right: 50px;
}

.search-form button[type="submit"] {
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  color: var(--p-color);
  width: 50px;
  padding: 12px;
}

.search-form button[type="submit"]:hover {
  background: transparent;
  color: var(--dark-color);
}

.subscribe-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 30px;
}

.subscribe-form .form-control {
  background: var(--white-color);
}

.donate-form .form-control {
  margin-bottom: 0;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color:#033034;
  padding-top: 20px;
}

.site-footer-bottom {
  background-color: var(--secondary-color);
  position: relative;
  z-index: 2;
  margin-top: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-footer-bottom a {
	color: var(--white-color);
}

.site-footer-bottom a:hover {
	color: #FF6;
}

.site-footer-link {
  color: var(--white-color);
}
.site-footer-title{
color:#b7c905
}

.copyright-text {
  color: var(--section-bg-color);
  font-size: var(--copyright-font-size);
  margin-right: 30px;
}

.site-footer .custom-btn {
  font-size: var(--copyright-font-size);
}

.site-footer .custom-btn:hover {
  background: var(--primary-color);
}


/*---------------------------------------
  FOOTER MENU               
-----------------------------------------*/
.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  margin-bottom: 8px;
}

.footer-menu-link {
  font-size: var(--p-font-size);
  color: var(--white-color);
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--site-footer-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: 16px;
  display: block;
  margin-right: 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 38px;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .featured-block {
    min-height: inherit;
  }

  .volunteer-section::after {
    width: 450px;
    height: 450px;
  }
  
  .volunteer-image {
    width: 350px;
    height: 350px;
  }
}

@media screen and (max-width: 1170px) {
  #hero-slide .carousel-image {
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-form {
    padding-bottom: 40px;
  }

  .donate-form {
    padding: 35px;
  }

  .navbar {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 8px 20px;
  }
  
  .dropdown:hover .dropdown-menu {
    /* display: block; */
    position: relative;
    margin-top: 5px;
    /* margin-bottom: 20px; */
    left: 20px;
  }

  .site-header .social-icon {
    text-align: left;
    margin-top: 5px;
  }

  .hero-section-full-height {
    height: inherit;
  }

  .carousel:hover .carousel-control-next-icon, 
  .carousel:hover .carousel-control-prev-icon {
    opacity: 1;
  }

  #hero-slide .carousel-item {
    height: inherit;
  }

  .carousel-control-prev {
    left: 12px;
  }

  .carousel-control-next {
    right: 12px;
  }

  .carousel-control-next-icon, 
  .carousel-control-prev-icon {
    opacity: 1;
    width: 60px;
    height: 60px;
  }

  .news-detail-header-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cta-section::before {
    width: 150px;
    height: 150px;
  }

  .cta-section::after {
    bottom: -60px;
    width: 100px;
    height: 100px;
  }

  .cta-section .row {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .volunteer-section::after {
    width: 300px;
    height: 300px;
  }

  .testimonial-section::before {
    width: 150px;
    height: 150px;
  }

  .testimonial-section::after {
    width: 200px;
    height: 200px;
  }

  #testimonial-carousel .carousel-caption {
    padding-top: 0;
  }

  blockquote {
    padding: 70px 30px 30px 30px;
  }

  .about-image {
    width: inherit;
    height: 450px;
  }

  .volunteer-image {
    width: 250px;
    height: 250px;
    margin: 0;
  }

  .custom-text-block {
    padding: 20px 0 0 0;
  }

  .custom-text-box,
  .volunteer-form {
    padding: 30px;
  }

  .counter-number, 
  .counter-number-text {
    font-size: var(--h2-font-size);
  }

  .contact-info-wrap {
    padding-top: 0;
  }

  .site-footer {
    padding-top: 12px;
  }

  .copyright-text-wrap {
    justify-content: center;
  }

  .site-footer-bottom {
    text-align: center;
    margin-top: 25px;
  }

  .site-footer-bottom .footer-menu {
    margin-top: 12px;
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 580px) {
  .hero-section-full-height,
  #hero-slide .carousel-item,
  .carousel-image {
    min-height: 520px;
  }

  #hero-slide .carousel-caption {
    clip-path: polygon(100% 100%, 100% 100px, 0 100%);
    padding-right: 50px;
    min-width: inherit;
    min-height: inherit;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  #hero-slide .carousel-caption {
    min-width: inherit;
    padding-bottom: 30px;
  }

  .carousel-control-next-icon, 
  .carousel-control-prev-icon {
    width: 45px;
    height: 45px;
  }

  .volunteer-image {
    width: 150px;
    height: 150px;
  }

  .volunteer-section::after {
    width: 200px;
    height: 200px;
  }

  .testimonial-section::before {
    top: -50px;
    width: 100px;
    height: 100px;
  }

  .testimonial-section::after {
    bottom: -150px;
    width: 200px;
    height: 200px;
  }

  .social-share .tags-block {
    margin-bottom: 10px;
  }

  .donate-form {
    padding: 25px;
  }
}

/* ------------------------------
   Header overrides moved from header_home.php
   ------------------------------ */
.nh-travels-dropdown {
  position: relative;
}

.nh-dropdown-btn {
  background: #4b6dfb;
  border: 2px solid #97a604;
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.nh-dropdown-btn:hover {
  background: #012bff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.nh-dropdown-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(183, 201, 5, 0.35);
}

.nh-company-name {
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.nh-company-id {
  color: #f5f708;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Bootstrap's default caret is a CSS triangle in #032195 on a #4b6dfb button --
   near invisible. A real chevron icon replaces it, and turns over when the menu
   is open so the button says which state it is in. */
.nh-dropdown-btn.dropdown-toggle::after { display: none; }

.nh-caret {
  margin-left: 4px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.nh-dropdown-btn[aria-expanded="true"] .nh-caret { transform: rotate(180deg); }

/* Who is signed in, at the top of the menu */
.nh-travels-dropdown .nh-profile-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px 12px;
}

.nh-profile-avatar {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef2ff;
  border: 1px solid #d9e0ff;
  overflow: hidden;
}

.nh-profile-avatar img { width: 26px; height: 26px; object-fit: contain; }

.nh-profile-meta { min-width: 0; }

.nh-profile-name {
  margin: 0 0 3px;
  color: #1b2a5b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  word-break: break-word;
}

.nh-profile-id {
  display: inline-block;
  margin: 2px 0 6px;
  padding: 2px 9px;
  border-radius: 999px;
  background: #f3ab04;
  color: #031c83;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nh-profile-line {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 0 0 3px;
  color: #6b7699;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  word-break: break-word;
}

.nh-profile-line i { color: #2c3e90; font-size: 12px; margin-top: 2px; }

.nh-travels-dropdown .dropdown-menu {
  border: 2px solid #2c3e90;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  min-width: 268px; /* room for the profile block at the top */
  margin-top: 5px;
}

.nh-travels-dropdown .dropdown-item {
  padding: 10px 20px;
  font-size: 15px;
  transition: all 0.2s ease;
}

.nh-travels-dropdown .dropdown-item:hover {
  background: #f0f4ff;
  color: #2c3e90;
}

.nh-travels-dropdown .dropdown-item i {
  color: #2c3e90;
  font-size: 16px;
}

.nh-travels-dropdown .dropdown-item.text-danger:hover {
  background: #fff5f5;
}

@media (max-width: 991px) {
  .nh-dropdown-btn { padding: 8px 16px; }
  .nh-company-name { font-size: 14px; }
  .nh-company-id { font-size: 11px; }
}

.balance-display-wrapper { display: flex; gap: 10px; align-items: center; }
.balance-card-item { background: white; border-radius: 8px; padding: 8px 12px; display: flex; align-items: center; gap: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); border: 1px solid #f0f2f5; transition: all 0.3s ease; }
.balance-card-item:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.balance-icon-wrapper { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.icon-wallet { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; }
.icon-credit { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); color: white; }
.icon-due { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); color: white; }
.balance-info { display: flex; flex-direction: column; line-height: 1.2; }
.balance-label { font-size: 10px; color: #6c757d; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; }
.balance-amount { font-size: 14px; font-weight: 700; color: #1a1a1a; }

@media (max-width: 1400px) {
  .balance-display-wrapper { gap: 8px; }
  .balance-card-item { padding: 6px 10px; }
  .balance-icon-wrapper { width: 30px; height: 30px; font-size: 13px; }
  .balance-amount { font-size: 13px; }
  .balance-label { font-size: 9px; }
}

@media (max-width: 1200px) { .balance-display-wrapper { flex-wrap: wrap; justify-content: center; } }

@media (max-width: 991px) { .balance-display-wrapper { margin-top: 15px; margin-bottom: 10px; width: 100%; } .balance-card-item { flex: 1; min-width: 110px; } }

@media (max-width: 576px) { .balance-display-wrapper { flex-direction: column; gap: 10px; } .balance-card-item { width: 100%; justify-content: flex-start; } }

/* Adjust navbar spacing */
.navbar-nav { align-items: center; }
@media (max-width: 991px) { .navbar-nav { align-items: flex-start; } }



/* Custom */
.home-banner{
  background-image: url('../images/banner.png');
  background-repeat: no-repeat;
  /* background-position: center; */
  background-size: cover;

}

#qty_selector {
  width: 95px;
}

#qty_display {
    border-width: 0px;
    border-color: white;
    background-color:transparent;
    width: 35%;
    margin:0px 10px;
    padding-left: 5px
}
    #qty_display:focus {
        outline: none;
    }
    i:hover, a:hover {
        background-color: transparent;
    }
#qty_select {
    border: solid #0d6efd;
    border-width: 1px 1px;
    border-radius:10px;
}

    #qty_select:hover {
        border-width:2px 2px;
        box-shadow: 0 0 10px 2px rgba(13, 110, 253, 0.2);
    }


.select2-container .select2-selection--single{
  height: 56px;
}
.select2-selection__arrow{
  display: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #000000;
  line-height: 56px;
  text-align: left;
}
.select2-container.select2-container--default{
  width: 100% !important;
}
.select2-results__option .custom-option {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 6px 8px;
}

.custom-option .left {
  display: flex;
  flex-direction: column;
}

.custom-option .name {
  font-weight: 600;
}

.custom-option .subtitle {
  font-size: 0.85em;
  color: #777;
}

.custom-option .right {
  font-weight: bold;
  color: #444;
}
.select2-search--dropdown .select2-search__field {
  padding: 8px;
}
---------------------------------------

