



@font-face {
    font-family: 'Caladea';
    src: url('../fonts/Caladea/Caladea-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Caladea';
    src: url('../fonts/Caladea/Caladea-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Caladea';
    src: url('../fonts/Caladea/Caladea-Regular.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Caladea';
    src: url('../fonts/Caladea/Caladea-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Caladea';
    src: url('../fonts/Caladea/Caladea-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #48145d;
  --secondary-color:              #91709d;
  --section-bg-color:             #f0f8ff;
  --site-footer-bg-color:         #48145d;
  --custom-btn-bg-color:          white;
  --custom-btn-bg-hover-color:    #d9c2e8;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #e9eaeb;

  --body-font-family:             'Caladea', 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: #f1ece9;
  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: #48145d;
  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: #d9c2e8;
  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(--p-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: #91709d;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}

.services-padding {
  padding-top: 0px;
  padding-bottom: 50px;
}

.section-paddingA {
  padding-top: 60px;
  padding-bottom: 60px;
  
}

.section-bg {
  background-color: #d9c2e8;

}

/* Testimonial section with flowers layered on top */
.testimonial-section.section-bgflower {
  /* Keep the existing purple background */
  background-color: #d9c2e8;

  /* Add two flower images */
  background-image: url('../images/flowers/4.png'), url('../images/flowers/3.png');

  /* Place first in top-left, second in bottom-right */
background-position: left 30px top 90px, right 30px bottom 70px;

  /* No repeating for either image */
  background-repeat: no-repeat, no-repeat;

  /* Size them independently */
  background-size: 400px auto, 400px auto;
}

.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;
  
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Make the columns flex containers, direction column */
.col-lg-4 {
  display: flex;
  flex-direction: column;
}


/* Make the inner block also flex-grow to fill space */
.custom-block {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between; /* push button down */
	height: 100%; /* ensures all blocks are equal height */

}

.custom-block-wrap:hover {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}



.custom-block-body {
	  padding: 4px;
  flex: 1; /* pushes content to fill available space */
  display: flex;
  flex-direction: column;
  min-height: 260px; /* keep your existing min height */
	  justify-content: space-between; /* pushes cost section down */

}

.custom-block-body p:last-of-type {
  margin-bottom: 0; /* optional: removes extra bottom spacing */
}

.custom-block-body .top-content {
  /* This grows and takes all available space */
  flex-grow: 1;
}

.custom-block-body .bottom-content {
  /* Stays at the bottom */
  /* no flex-grow so it only takes its needed height */
}

.custom-block-image {
  display: block;
  width: 100%;
  
  
  height: auto;      /* keep natural height */
  max-width: 100%;   /* scale down responsively */
  object-fit: contain; /* prevent distortion */
  flex-shrink: 0;    /* prevent flexbox from shrinking or stretching */
}

.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-top: 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: 130px;
  height: 130px;
  object-fit: cover;
  position: relative;
  top: -20px;
  left: -20px;
}


/*---------------------------------------
  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: var(--custom-btn-bg-color);
  margin-top: 8px;
  padding: 12px 25px;
}

.custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
    color: #ffcc00;             /* Optional: match text color to border */
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background: #91709d;
  z-index: 9;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-brand {
  width: 180px;

  color: white;
  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: #48145d;
  display: block;
  font-size: 22px;
  line-height: normal;
  font-family: 'Caladea', sans-serif;
  font-weight: 300;

}

.logo {
  width: 80px;
  height: auto;
  margin-right: 10px;
}

.logofaq {
  width: 80px;
  height: auto;
  margin-right: 100px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding: 20px;
  
}

.navbar-nav .nav-link {
  display: inline-block;
    color: white !important; /* or any color you want */
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  background: transparent;
  color: var(--primary-color);
}

.dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  max-width: 50px;
  padding: 0;
  margin-top: 20px;
}

.dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: var(--menu-font-size);
  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: var(--primary-color);
  padding-top: 15px;
  padding-bottom: 10px;
}

.site-header p,
.site-header p a,
.site-header .social-icon-link {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
}

.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 {
  position: relative;

}

.carousel:hover .carousel-control-next-icon, 
.carousel:hover .carousel-control-prev-icon {
  opacity: 1;
}

#hero-slide .carousel-item {
}

#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;
  padding: 100px 100px 50px 100px;
}

.carousel-image {
  display: block;
  width: 100%;
}

#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.5s;
}

.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.5s ease;
  min-height: 256px;
  padding: 15px;
}

.featured-block:hover {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.featured-block:hover .featured-block-image {
  transform: scale(0.75);
}

.featured-block-image {
  display: block;
  margin: auto;
  transition: all 0.5s;
}

.featured-block:hover .featured-block-text {
  margin-top: 0;
}

.featured-block-text {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
  margin-top: 20px;
  transition: all 0.5s;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-repeat: no-repeat;
  background-position: center;
    margin-bottom: 80px;
	margin-top: -30px;;
	  

  /* Add two flower images */
  background-image: url('../images/flowers/2.png');

  /* Place first in top-left, second in bottom-right */
background-position: top 0 right 40px; /* This won't work directly */


  /* Size them independently */
  background-size: 400px auto;


}

/* Remove flower background on mobile */
@media screen and (max-width: 768px) {
  .testimonial-section.section-bgflower {
    background-image: none !important;
  }
}


/* Remove flower background on mobile */
@media screen and (max-width: 768px) {
  .about-section {
    background-image: none !important;
  }
}

.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/FAQBackground2.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  
}

.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 {
  background: #d9c2e8;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#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-color: #f1ece9;
  
   /* Add two flower images */
  background-image: url('../images/flowers/flur.png');

  /* Place first in top-left, second in bottom-right */
background-position: top 90px left 250px;

  /* No repeating for either image */
  background-repeat: no-repeat;

  /* Size them independently */
  background-size: 300px auto;
  
}

.contact-form {
  background: #d9c2e8;
  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,
.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: #91709d;
  border: none;
  border-radius: var(--border-radius-large);
  color: white;
  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: #48145d;
  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: var(--site-footer-bg-color);
  padding-top: 25px;
}

.site-footer-bottom {
  background-color: var(--secondary-color);
  position: relative;
  z-index: 2;
  margin-top: 15px;
  padding-top: 15px;
  padding-bottom: 10px;
}

.site-footer-bottom a {
	color: var(--white-color);
}

.site-footer-bottom a:hover {
	color: #FF6;
}

.site-footer-link {
  color: var(--white-color);
}

.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 {
  column-count: 2;
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: block;
}

.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: var(--copyright-font-size);
  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 {
  position: relative !important;
  left: -20px !important;
  top: 10px !important;
  margin: 0 !important;
  padding: 0 !important;

}

.custom-text-block p {
  margin: 0 !important;
  padding: 0 !important;
}

.no-left-padding {
  padding-left: 0 !important;
}

/* First paragraph: narrow */
.custom-text-block p:first-of-type {
  max-width: 400px;
  padding: 0px;
}

/* Paragraphs 2–4: wide */
.custom-text-block p:nth-of-type(2),
.custom-text-block p:nth-of-type(3),
.custom-text-block p:nth-of-type(4) {
  max-width: 800px;
  background: #eef9ff; /* Optional: highlight for visibility */
  padding: 10px;
}

.move-left {
  margin-left: 0 !important;
}

  .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: 50px;
  }

  .copyright-text-wrap {
    justify-content: center;
  }

  .site-footer-bottom {
    text-align: center;
    margin-top: 50px;
  }

  .site-footer-bottom .footer-menu {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 580px) {
  .hero-section-full-height,
  #hero-slide .carousel-item,
  .carousel-image {
    min-height: 220px;
  }

  #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-desktop, .header-mobile {
    text-align: center;
    color: white;
}

.header-desktop {
}

.header-mobile {
  display: none;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
    .header-desktop {
        display: none;
    }
	html {
  scroll-padding-top: -160px; /* Adjust to your fixed header height */
}

    .header-mobile {
        display: block;
    }
}

@font-face {
    font-family: 'BreathingFont';
    src: url('../fonts/Breathing/Breathing.ttf') format('truetype');
}

.custom-font {
  margin-left: -20px;
  font-family: 'BreathingFont', sans-serif;
  font-size: 18px;
  color: #48145d;

}

.custom-font2 {
  margin-left: -20px;
  font-family: 'BreathingFont', sans-serif;
  font-size: 18px;
  color: #48145d;

}

.custom-font-contact {
  font-family: 'BreathingFont', sans-serif;
  font-size: 38px;
  color: #48145d;
  padding-bottom: 10px;

}


.purple-hover-button {
  background-color: #91709d;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.purple-hover-button:hover {
  background-color: white;
  color: purple;
}

.contact-paragraph {
  color: #91709d;
}



.text-align-fix {
  margin-top: -45px; /* tweak this value to align visually with image */
    margin-left: -37px !important;

}

.smallerFont {
  font-size: 0.90rem; /* or another size like 20px */
    white-space: nowrap;

}

.reduced-margins {
  margin-left: 0px;  /* or whatever value you want */
  margin-right: 0px;
}

.carousel-container {
  width: 750px;               /* Make it square */
  height: 450px;
  margin: 0 auto;             /* Center it horizontally */
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #000;
}

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
  }

  .carousel-slide {
    min-width: 100%;
    height: 100%;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    font-size: 18px;
    transition: background 0.3s;
  }

  .carousel-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
  }

  .carousel-button.prev {
    left: 10px;
  }

  .carousel-button.next {
    right: 10px;
  }
  
  

/* Optional: set widths */
.container {
  flex: 1 1 60%; /* 60% width, can shrink/grow */
}




.flex-wrapper {
  display: flex;
  gap: 20px; /* space between items */
  align-items: flex-start;
}

.flex-wrapper .container {
  padding-left: -30px !important;
  padding-right: -30px !important;
  margin: 0 !important;
  flex: 1 1 60%;
}

.faq-heading {
  color: #48145d;            /* Optional: match text color to border */

}



.custom-container {
  width: 80%;
  max-width: 1000px;
  margin: 40px auto 0 auto;
  font-family: Arial, sans-serif;
}

.custom-top-section {

  display: flex;
  gap: 10px;
  align-items: center; /* vertical alignment */
  margin-bottom: 0px; /* tighter spacing below top section */
  margin-left: 0px;
    margin-right: 0px;
  flex-wrap: wrap;
  
}

.custom-image {
  max-width: 250px;
  width: 100%;
  height: auto;
  flex-shrink: 0;
  margin-left: 0px;
    margin-right: 0px;

    margin-bottom: 0px;  /* Reduce space below heading */
    margin-top: 0px; 
}

.custom-text-block {
  flex: 1;
  min-width: 200px;
  padding-top: 0px; /* vertical offset */
  
}


.custom-heading {
  font-family: 'BreathingFont', sans-serif;
  font-size: 2.5rem;      /* Increase size — adjust as you like */
  margin-bottom: 0.3rem;  /* Reduce space below heading */
    margin-top: 40px;          /* Remove extra space above first paragraph */

}

.custom-paragraph-first {
  font-family: 'Caladea', serif;
  font-size: 0.9rem;   
  margin-top: 30px; 
  margin-left: -50px;
  margin-right: -20px;

/* Remove extra space above first paragraph */
   margin-bottom: -125px;  /* Reduce space below heading */

}

.custom-bottom-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.custom-paragraph {
	font-size: 0.9rem;   
	  font-family: 'Caladea', serif;
	  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.6; /* Optional: keeps it readable */
}

.custom-heading {
  font-family: 'BreathingFont', sans-serif;
  margin-bottom: -30px;
    margin-left: -390px;

    margin-top: 30px;          /* Remove extra space above first paragraph */

}




/* insta feed on main page */
.my-insta-widget-wrapper {
    max-width: 90px; /* Limit max width */
    margin: 40px auto; /* Center it with vertical spacing */
    padding: 240px; /* Add space around the widget */
    background-color: rgba(255, 255, 255, 0.9); /* Optional: soft white background */
    border-radius: 12px; /* Optional: rounded corners */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
  }

  /* Optional: Responsive adjustments */
  @media (max-width: 768px) {
    .my-insta-widget-wrapper {
      padding: 12px;
    }
  }
  
  .elfsight-app {
  flex: 1 1 35%; /* 35% width */
  min-width: 100px; /* prevent it from getting too narrow */
      padding: 24px; /* Add space around the widget */
	      margin: 40px auto; /* Center it with vertical spacing */


}


.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  font-size: 24px;
}


.custom-intro-paragraph {
  color: #48145d;
  text-align: center;
  font-size: 1.1rem; /* optional: slightly larger text */
  line-height: 1.6;   /* optional: improved readability */
  margin: 0 auto;     /* center horizontally */
}




.custom-layout-container-v23a {
  display: flex;
  flex-wrap: wrap;
  min-height: 400px; /* Adjust as needed */
  /* Missing closing bracket */
}


.custom-layout-row-v23a {
  display: flex;
  width: 100%;
  align-items: center; /* vertically centers content within the row */
}


.custom-layout-image-column-v23a {
  width: 33.3333%;
  max-width: 33.3333%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
    padding-top: 0px;

}

.custom-layout-img-v23a {
  max-width: 80%;        /* Shrinks the image inside the column */
  height: auto;
  margin: auto;          /* Horizontally centers it */
  display: block;
}

.custom-layout-content-column-v23a {
  width: 66.6666%;
  display: flex;
  align-items: stretch;
}

.custom-layout-content-wrapper-v23a {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;  /* stops pushing top and bottom apart */
  gap: 12px;                    /* controls spacing between inner blocks */
  padding: 20px;
  width: 100%;
}

.custom-layout-top-paragraph-v23a,
.custom-layout-bottom-paragraph-v23a {
  width: 75%;
  max-width: 750px;
  margin-left: 0;           /* align to the left edge of the content column */
  margin-right: auto;       /* keep it from stretching full width */
  margin-bottom: 10px;
  text-align: center;
}


.custom-layout-two-columns-v23a {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  margin-left: 80px;

}

.custom-layout-column-box-v23a {
  flex: 0 0 30%;
  background-color: #d9c2e8;
  padding: 6px;
  border: 1px solid #ddd;
}


/* Responsive layout for tablets and phones */
@media screen and (max-width: 768px) {
  .custom-layout-row-v23a {
    flex-direction: column;
  }

  .custom-layout-image-column-v23a,
  .custom-layout-content-column-v23a {
    width: 100%;
    max-width: 100%;
  }

  .custom-layout-img-v23a {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .custom-layout-two-columns-v23a {
    flex-direction: column;
  }
}




#homepage-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-image: url('../images/picpoop.png'); /* <-- update this path */
  background-size: cover;      /* ensures the image fills the circle */
  background-position: center; /* centers the image */
  background-repeat: no-repeat;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideUp 0.4s ease;
  overflow: hidden;
  padding: 0;
background-size: 100% 100%;    /* forces it to stretch to width & height */
}

#homepage-popup p {
  margin: 0;
  line-height: 1;
}

#homepage-popup button {
  position: absolute;
  top: 20px;
  right: 40px;
  background: none;
  border: none;
  font-size: 28px;
  color: #f1ece9;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}


#services-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-image: url('../images/voucher updated.png'); /* <-- update this path */
  background-size: cover;      /* ensures the image fills the circle */
  background-position: center; /* centers the image */
  background-repeat: no-repeat;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideUp 0.4s ease;
  overflow: hidden;
  padding: 0;
background-size: 100% 100%;    /* forces it to stretch to width & height */
}

#services-popup p {
  margin: 0;
  line-height: 1;
}

#services-popup button {
  position: absolute;
  top: 20px;
  right: 40px;
  background: none;
  border: none;
  font-size: 28px;
  color: #f1ece9;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}








#square-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 0; /* or remove */
  background-image: url('../images/poopic.png');
  background-size: 120% 120%;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideUp 0.4s ease;
  overflow: hidden;
  padding: 0;

}

#square-popup button {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}







.popup-close {
  position: absolute;
  top: 8px;
  right: 40px;
  background: none;
  border: none;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  line-height: 1;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8); /* black with 30% opacity */
  z-index: 999; /* just below the popup */
  display: none; /* hide by default */
}



  /* Invisible big link */
  .big-link {
    position: absolute;
    top: 30%;       /* adjust vertical position */
    left: 20%;      /* adjust horizontal position */
    width: 60%;     /* size of clickable area */
    height: 40%;    /* size of clickable area */
    display: block;
    background: transparent; /* fully invisible */
    text-decoration: none;
    z-index: 1005;
  }



#section_3 .col-lg-4 {
  display: flex;
  flex-direction: column;
}

#section_3 .custom-block-wrap {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#section_3 .custom-block {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}



/* Footer Responsive Styles */
@media (max-width: 768px) {
  .site-footer .row {
    flex-direction: column;
    text-align: center;
  }

  .site-footer .col-lg-2,
  .site-footer .col-lg-4,
  .site-footer .mx-auto {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 20px;
  }

  .footer-menu {
    padding-left: 0;
    list-style: none;
  }

  .footer-menu-item {
    margin-bottom: 8px;
  }

  .footer-menu-link {
    display: inline-block;
    padding: 4px 0;
  }

  /* Footer bottom section */
  .site-footer-bottom .row {
    flex-direction: column;
    text-align: center;
  }

  .site-footer-bottom .text-end {
    text-align: center !important;
    margin-top: 10px;
  }

  .footer-logos {
    justify-content: center;
  }
}






.about-section .custom-heading {
  display: block;
  margin-bottom: 0.75em; /* adds space below heading */
  position: relative; /* reset if absolute */
  z-index: 1; /* bring above */
}



  .about-section .custom-heading {
    text-align: center; /* Keep heading centered if you want */
}


@media screen and (max-width: 768px) {
  .about-section .custom-paragraph-first {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 20px !important;    /* reset top margin */
    margin-bottom: 35px !important; /* reasonable bottom spacing */
    padding-left: 15px;              /* add some padding to prevent edge sticking */
    padding-right: 15px;
    box-sizing: border-box;          /* ensure padding doesn’t break width */
    width: 100%;                    /* force full container width */
  }

  .about-section .custom-paragraph {
	    margin-top: 20px !important;

    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    width: 100%;
  }

  .about-section .custom-text-block {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .about-section .custom-heading {
    margin-left: 0 !important;
    margin-bottom: 15px !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    text-align: center;
  }
  
  
}


  .btn-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: #48145d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
  }

  .btn-link:hover {
  background-color: #350f49; /* darker purple */
  color: white;              /* keep text white on hover */
  text-decoration: none;     /* remove underline if any */  }

  .btn-container {
    text-align: center;
    margin: 20px 0; /* some vertical spacing */
  }


.about-section .custom-paragraph {
  background-color: transparent !important;
}


@media (max-width: 768px) {
  .carousel-container {
    overflow: visible; /* allow overflow so slides aren't clipped */
    width: 100%;
	background: transparent; /* just in case black comes from here */
    height: auto;             /* let height fit content */
    padding-bottom: 0; 
  }

  .carousel-slide {
    flex: 0 0 80vw; /* each slide takes 80% of viewport width */
    margin-right: 10px; /* some gap between slides */
	    height: auto;             /* fit image height */

  }

  .carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .carousel-track {
    height: auto;             /* fit to slide height */
  }
}


.faq-accordion-toggle {
  color: #48145d; /* change to any color you want */
}




/* CSS for the header of the services page */

  .serviceheader_btn-container {
    text-align: center;
    margin-top: 20px;
margin-right: 0;
margin-bottom: 0;
margin-left: 0;
  }

.serviceheader_postpartum {
  padding-top: 80px;
padding-bottom: 40px;
padding-left: 20px;
padding-right: 20px;
  background-color: #cbb6d9;
  color: #4a3b57;
}

.serviceheader_container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 40px;
}

.serviceheader_image-left img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
}

.serviceheader_image-right img {
  width: 100%;
  opacity: 0.6;
}

.serviceheader_content {
  text-align: center;
}

.serviceheader_title {
  font-family: 'Allura', cursive;
  font-size: 3.5rem;
  margin-bottom: 25px;
  color: #4a235a;
}

.serviceheader_intro {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.serviceheader_lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
  text-align: left;
}

.serviceheader_lists ul {
  list-style: disc;
  padding-left: 20px;
}

.serviceheader_lists li {
  margin-bottom: 10px;
}

.serviceheader_closing {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
  .serviceheader_container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .serviceheader_lists {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .serviceheader_title {
    font-size: 2.5rem;
  }
  
    /* Hide flower on mobile */
  .serviceheader_image-right {
    display: none;
  }
}


/*the wide bullet list for birth doula SECTION */
.serviceheader_lists_wide {
  margin-bottom: 30px;
  text-align: left;
}

.serviceheader_lists_wide ul {
  list-style: disc;
  padding-left: 20px;
  max-width: 700px;   /* keeps it readable */
  margin: 0 auto;     /* centers the list block */
}

.serviceheader_lists_wide li {
  margin-bottom: 4px;
}

/*left image for birth doula SECTION - needs to move up to align with bullet points*/

.serviceheader_image-left_birthdoula img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
  transform: translateY(50px);

}

/* END of CSS for the header of the services page */