/********** Template CSS **********/
:root {
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

/* .btn.btn-primary:hover {
    color: var(--primary);
    background: transparent;
        color: #FFFFFF;
} */

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 29, 35, .8);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .8)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}


/*** Donate ***/
.donate {
    background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.clrgreen{

}


/* xxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxx
NEW CODE */

/* Navbar links hover effect */
.navbar-nav .nav-item.nav-link:hover {
    color: green !important;
}

/* Optional: also make dropdown items green on hover */
.navbar-nav .dropdown-menu .dropdown-item:hover {
    color: green !important;
}

.clrgreen {
    color: #2E7D32 !important;
}
.fw-bold {
    color: #2E7D32 !important;
}

/* Normal button state */
.d-none.d-lg-flex .btn-outline-primary {
    border-color: #2E7D32 !important;
    color: #2E7D32 !important;
}
.btn-sm-square i {
    color: #2E7D32 !important;
}

/* Hover state */
.d-none.d-lg-flex .btn-outline-primary:hover {
    background-color: #2E7D32 !important;
    color: white !important;
    border-color: #2E7D32 !important;
}

/* Optional: make the arrow circle icon text #2E7D32 too */
.d-none.d-lg-flex .btn-outline-primary:hover .btn-sm-square i {
    color: #2E7D32  !important;
}

.btn.btn-primary {
    background-color: transparent; /* Transparent background */
    border-color:  #2E7D32;          /* #2E7D32 border */
    color: #2E7D32;               /* #2E7D32 text */
    transition: all 0.3s ease;    /* Smooth transition */
}

/* Hover state */
.btn.btn-primary:hover {
    background-color:  #2E7D32; /* Background turns #2E7D32 */
    background-color:  #2E7D32; /* Background turns #2E7D32 */
    color: white;            /* Text turns white */
    border-color:  #2E7D32;     /* Keep border #2E7D32 */
}

.border-primary {
    border-color
:  #2E7D32!important;
}

/* Make the outline button text + border #2E7D32 by default */
.btn.btn-outline-primary {
  color: #2E7D32 !important;               /* "Contact Us" text */
  border-color: #2E7D32 !important;        /* outline border */
  background-color: transparent !important;
  cursor: pointer !important;
  transition: all 0.18s ease !important;
  -webkit-transition: all 0.18s ease !important;
}

/* Target the small round inner div (you kept its classes) */
.btn.btn-outline-primary .btn-sm-square {
  border: 2px solid #2E7D32 !important;    /* #2E7D32 border for the little circle */
  background-color: transparent !important; /* override .bg-primary */
  color: #2E7D32 !important;               /* icon color when not hovered (overrides .text-white) */
  width: 35px !important;
  height: 35px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  transition: all 0.18s ease !important;
}

/* Ensure the icon inside follows the parent's color */
.btn.btn-outline-primary .btn-sm-square .fa {
  color: inherit !important;
  line-height: 1 !important;
}

/* Hover / focus state for the whole button: #2E7D32 background, white text/icon */
.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:focus {
  background-color: #2E7D32 !important;    /* whole button background on hover */
  color: white !important;               /* Contact Us text turns white */
  border-color: #2E7D32 !important;
  text-decoration: none !important;
}

/* Make the small circle match hover state (#2E7D32 bg, white icon) */
.btn.btn-outline-primary:hover .btn-sm-square,
.btn.btn-outline-primary:focus .btn-sm-square {
  background-color: #2E7D32 !important;
  color: white !important;
  border-color: white !important; /* optional: make the tiny circle border contrast when hovered */
}

/* Ensure utilities like .bg-primary or .text-white do not override our intent */
.btn.btn-outline-primary .btn-sm-square.bg-primary {
  background-color: transparent !important;
}
.btn.btn-outline-primary .btn-sm-square.text-white {
  color: #2E7D32 !important;
}
.btn.btn-outline-primary:hover .btn-sm-square .fa,
.btn.btn-outline-primary:focus .btn-sm-square .fa {
  color: white !important;
}
.causes-item .bg-primary {
  background-color: #2E7D32 !important;
}
.causes-item .progress .progress-bar span{
     color: white!important;
       background-color: #2E7D32 !important;
}
.progress-bar{
     color: #2E7D32!important;
       background-color: #2E7D32 !important;
}

/* .img-fluid.mb-4 {
    filter: invert(45%) sepia(95%) saturate(500%) hue-rotate(90deg) brightness(90%) contrast(90%) !important;
} */
.btn-group .btn-check:checked + .btn {
    border-color: green !important;
}
.btn-group .btn:hover,
.btn-group .btn:focus {
    border-color: green !important;
}
.testimonial-carousel .owl-item.center .testimonial-text {
    background-color: green !important;
}

.testimonial-item img {
    border: -9px solid green !important; /* green border */
    box-sizing: border-box !important;  /* ensures border is included in image size */
}

/* 2️⃣ Green background for carousel arrows */
.owl-nav .owl-prev,
.owl-nav .owl-next {
    background-color: green !important; /* green background */
    color: white !important;            /* optional: make arrow icons white */
    border-radius: 50% !important;      /* make arrows circular */
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Optional: change arrow icons color on hover */
.owl-nav .owl-prev:hover i,
.owl-nav .owl-next:hover i {
    color: green !important;
}
/* On hover: make the circle primary and the arrow white (overrides Bootstrap & text-primary) */
.btn.btn-outline-primary:hover .btn-sm-square {
  background-color: var(--bs-primary) !important; /* bootstrap primary color */
  color: #fff !important;                          /* also set container color */
}


/* Extra override in case icon has .text-primary on it or on its ancestor */
.btn.btn-outline-primary:hover .text-primary,
.btn.btn-outline-primary:hover .text-primary .fa,
.btn.btn-outline-primary:hover .text-primary .fa:before {
  color: #fff !important;
  fill: #fff !important;
}
.footer {
    font-size: 14px !important;
}

@media (max-width: 768px) {
    .footer {
        font-size: 12px !important;
    }
}
.footer {
    font-size: 14px !important;
}

@media (max-width: 768px) {
    .footer {
        font-size: 12px !important;
    }
}
/* ===============================
   Green Community Solutions Team Section
   =============================== */
.gcs-team-section {
  background: #f8fafc;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.gcs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gcs-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #007a3d; /* eco-green */
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.gcs-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.gcs-member {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gcs-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.gcs-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #007a3d;
  margin-bottom: 5px;
}

.gcs-role {
  font-weight: 500;
  color: #555;
  margin-bottom: 10px;
}

.gcs-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gcs-title {
    font-size: 1.6rem;
  }

  .gcs-member {
    padding: 20px;
  }

  .gcs-bio {
    font-size: 0.9rem;
  }
}
/* ===============================
   Green Community Solutions About Section
   =============================== */
.gcs-about-section {
  background: #ffffff;
  padding: 70px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.gcs-about-content {
  max-width: 900px;
  margin: 0 auto;
  background: #f8fafc;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.gcs-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #007a3d; /* Eco green */
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.gcs-about-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
  text-align: justify;
}

.gcs-about-text strong {
  color: #007a3d;
}

/* Responsive design */
@media (max-width: 768px) {
  .gcs-about-content {
    padding: 25px 20px;
  }

  .gcs-title {
    font-size: 1.6rem;
  }

  .gcs-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
/* ===============================
   Green Community Solutions About Section
   =============================== */
.gcs-about-section {
  background: #ffffff;
  padding: 70px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.gcs-about-content {
  max-width: 900px;
  margin: 0 auto;
  background: #f8fafc;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.gcs-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #007a3d; /* Eco green */
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.gcs-about-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
  text-align: justify;
}

.gcs-about-text strong {
  color: #007a3d;
}

/* Responsive design */
@media (max-width: 768px) {
  .gcs-about-content {
    padding: 25px 20px;
  }

  .gcs-title {
    font-size: 1.6rem;
  }

  .gcs-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
/* ===============================
   Green Community Solutions About Section
   =============================== */
.gcs-about-section {
  background: #ffffff;
  padding: 70px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.gcs-about-content {
  max-width: 900px;
  margin: 0 auto;
  background: #f8fafc;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.gcs-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #007a3d; /* Eco green */
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.gcs-about-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
  text-align: justify;
}

.gcs-about-text strong {
  color: #007a3d;
}

/* Responsive design */
@media (max-width: 768px) {
  .gcs-about-content {
    padding: 25px 20px;
  }

  .gcs-title {
    font-size: 1.6rem;
  }

  .gcs-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
/* ===============================
   Green Community Solutions About Section
   =============================== */
.gcs-about-section {
  background: #ffffff;
  padding: 70px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.gcs-about-content {
  max-width: 900px;
  margin: 0 auto;
  background: #f8fafc;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.gcs-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #007a3d; /* Eco green */
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.gcs-about-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
  text-align: justify;
}

.gcs-about-text strong {
  color: #007a3d;
}

/* Responsive design */
@media (max-width: 768px) {
  .gcs-about-content {
    padding: 25px 20px;
  }

  .gcs-title {
    font-size: 1.6rem;
  }

  .gcs-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
/* ===============================
   Green Community Solutions About Section
   =============================== */
.gcs-about-section {
  background: #ffffff;
  padding: 70px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.gcs-about-content {
  max-width: 900px;
  margin: 0 auto;
  background: #f8fafc;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.gcs-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #007a3d; /* Eco green */
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.gcs-about-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
  text-align: justify;
}

.gcs-about-text strong {
  color: #007a3d;
}

/* Responsive design */
@media (max-width: 768px) {
  .gcs-about-content {
    padding: 25px 20px;
  }

  .gcs-title {
    font-size: 1.6rem;
  }

  .gcs-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
/* ===============================
   Green Community Solutions About Section
   =============================== */
.gcs-about-section {
  background: #ffffff;
  padding: 70px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.gcs-about-content {
  max-width: 900px;
  margin: 0 auto;
  background: #f8fafc;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.gcs-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #007a3d; /* Eco green */
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.gcs-about-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
  text-align: justify;
}

.gcs-about-text strong {
  color: #007a3d;
}

/* Responsive design */
@media (max-width: 768px) {
  .gcs-about-content {
    padding: 25px 20px;
  }

  .gcs-title {
    font-size: 1.6rem;
  }

  .gcs-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
/* ===============================
   Green Community Solutions About Section
   =============================== */
.gcs-about-section {
  background: #ffffff;
  padding: 70px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.gcs-about-content {
  max-width: 900px;
  margin: 0 auto;
  background: #f8fafc;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.gcs-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #007a3d; /* Eco green */
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.gcs-about-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
  text-align: justify;
}

.gcs-about-text strong {
  color: #007a3d;
}

/* Responsive design */
@media (max-width: 768px) {
  .gcs-about-content {
    padding: 25px 20px;
  }

  .gcs-title {
    font-size: 1.6rem;
  }

  .gcs-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
/* ===============================
   Green Community Solutions About Section
   =============================== */
.gcs-about-section {
  background: #ffffff;
  padding: 70px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.gcs-about-content {
  max-width: 900px;
  margin: 0 auto;
  background: #f8fafc;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.gcs-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #007a3d; /* Eco green */
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.gcs-about-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
  text-align: justify;
}

.gcs-about-text strong {
  color: #007a3d;
}

/* Responsive design */
@media (max-width: 768px) {
  .gcs-about-content {
    padding: 25px 20px;
  }

  .gcs-title {
    font-size: 1.6rem;
  }

  .gcs-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}