/* Slider container */
.custom-slider-container {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

/* Slides wrapper */
.custom-slides-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

/* Individual slide */
.custom-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.custom-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slide content */
.custom-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
}

.custom-slide-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.custom-slide-description {
  font-size: 16px;
  max-width: 600px;
}

/* Navigation arrows */
.custom-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.custom-slider-nav:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.custom-slider-prev {
  left: 20px;
}

.custom-slider-next {
  right: 20px;
}

/* Indicators */
.custom-slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.custom-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-indicator.active {
  background-color: white;
  transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .custom-slider-container {
    height: 150px;
  }

  .custom-slide-title {
    font-size: 24px;
  }

  .custom-slide-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .custom-slider-container {
    height: 150px;
  }

  .custom-slider-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .custom-slider-prev {
    left: 10px;
  }

  .custom-slider-next {
    right: 10px;
  }

  .custom-slide-content {
    padding: 20px;
  }

  .custom-slide-title {
    font-size: 20px;
  }

  .custom-slide-description {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .custom-slider-container {
    height: 150px;
  }

  .custom-slide-title {
    font-size: 18px;
  }

  .custom-slide-description {
    font-size: 13px;
  }
}

/* cards section css */

/* Cards Section Container */
.custom-cards-section {
  padding: 20px 15px;
  background-color: white;
}

.custom-cards-container {
  max-width: 1400px;
  margin: 0 auto;
}

.custom-section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: #333;
  font-weight: 600;
}

/* Cards Grid */
.custom-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

/* Individual Card */
.custom-card {
  flex: 1 1 calc(20% - 25px);
  min-width: 230px;
  background-color: whitesmoke;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 1;
}

/* Card Icon */
.custom-card-icon {
  font-size: 48px;
  color: #17a34c;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

/* Card Text */
.custom-card-text {
  font-size: 16px;
  color: black;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

/* Card Fill Effect */
.custom-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #17a34c;
  transition: height 0.4s ease;
  z-index: -1;
}

/* Card Hover Effect */
.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.custom-card:hover::before {
  height: 100%;
}

.custom-card:hover .custom-card-icon,
.custom-card:hover .custom-card-text {
  color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .custom-card {
    flex: 1 1 calc(33.333% - 25px);
  }
}

@media (max-width: 768px) {
  .custom-cards-section {
    padding: 40px 15px;
  }

  .custom-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .custom-card {
    flex: 1 1 calc(50% - 25px);
  }
}

@media (max-width: 576px) {
  .custom-cards-section {
    padding: 30px 15px;
  }

  .custom-section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .custom-card {
    flex: 1 1 100%;
  }

  .custom-card-icon {
    font-size: 40px;
  }

  .custom-card-text {
    font-size: 15px;
  }
}

/* About Section Container */
.custom-about-section {
  padding: 20px 15px;
  background-color: #ffffff;
}

.custom-about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

/* About Content */
.custom-about-content {
  flex: 1 1 70%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f8f9fa;
}

.custom-about-heading {
  font-size: 30px;
  color: black;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  font-weight: 600;
}

.custom-about-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #17a34c;
}

.custom-about-subheading {
  font-size: 22px;
  color: #17a34c;
  margin-bottom: 25px;
  font-weight: 500;
}

.custom-about-text {
  font-size: 16px;
  color: black;
  line-height: 1.7;
  margin-bottom: 25px;
  font-weight: 500;
  text-align: justify;
}

.custom-about-features {
  margin-top: 15px;
}

.custom-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.custom-feature-icon {
  color: #17a34c;
  font-size: 20px;
  margin-right: 15px;
  margin-top: 2px;
}

.custom-feature-text {
  font-size: 16px;
  color: black;
  font-weight: 600;
}

.custom-about-button {
  display: inline-block;
  background-color: #17a34c;
  color: white;
  padding: 8px 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 5px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.custom-about-button:hover {
  background-color: #12813d;
}

/* About Image */
.custom-about-image {
  flex: 1 1 30%;
  position: relative;
  overflow: hidden;
}

.custom-about-image img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.custom-about-image:hover img {
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .custom-about-section {
    padding: 60px 15px;
  }

  .custom-about-content {
    padding: 40px;
  }

  .custom-about-heading {
    font-size: 32px;
  }

  .custom-about-subheading {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .custom-about-section {
    padding: 40px 15px;
  }

  .custom-about-container {
    flex-direction: column;
  }

  .custom-about-content,
  .custom-about-image {
    flex: 1 1 100%;
  }

  .custom-about-content {
    padding: 30px;
  }

  .custom-about-image {
    min-height: 300px;
  }

  .custom-about-heading {
    font-size: 28px;
  }

  .custom-about-subheading {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .custom-about-section {
    padding: 30px 15px;
  }

  .custom-about-content {
    padding: 25px;
  }

  .custom-about-image {
    min-height: 250px;
  }

  .custom-about-heading {
    font-size: 24px;
  }

  .custom-about-subheading {
    font-size: 16px;
  }

  .custom-about-text,
  .custom-feature-text {
    font-size: 15px;
  }
}

/* Counter Section Container */
.custom-counter-section {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background Image */
.custom-counter-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/counter.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  z-index: -1;
}

/* Overlay */
.custom-counter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -1;
}

/* Counter Container */
.custom-counter-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Counter Item */
.custom-counter-item {
  text-align: center;
  color: white;
  flex: 1;
  padding: 0 15px;
}

/* Counter Icon */
.custom-counter-icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: white;
}

/* Counter Number */
.custom-counter-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

/* Counter Label */
.custom-counter-label {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .custom-counter-icon {
    font-size: 24px;
  }

  .custom-counter-number {
    font-size: 28px;
  }

  .custom-counter-label {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .custom-counter-container {
    flex-wrap: wrap;
  }

  .custom-counter-item {
    flex: 1 1 50%;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .custom-counter-item {
    flex: 1 1 100%;
    margin-bottom: 15px;
  }

  .custom-counter-icon {
    font-size: 22px;
  }

  .custom-counter-number {
    font-size: 24px;
  }

  .custom-counter-label {
    font-size: 13px;
  }
}

/* Causes Section Container */
.custom-causes-section {
  padding: 20px 15px;
  background-color: #f8f9fa;
}

.custom-causes-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Heading */
.custom-causes-heading {
  text-align: center;
  margin-bottom: 50px;
  font-size: 30px;
  color: black;
  position: relative;
  padding-bottom: 15px;
  font-weight: 600;
}

.custom-causes-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background-color: #17a34c;
}

/* Causes Grid */
.custom-causes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Cause Item */
.custom-cause-item {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  background-color: #17a34c;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-cause-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Cause Image */
.custom-cause-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.custom-cause-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.custom-cause-item:hover .custom-cause-image img {
  transform: scale(1.05);
}

/* Cause Content */
.custom-cause-content {
  padding: 20px;
  background-color: white;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.custom-cause-text {
  font-size: 18px;
  font-weight: 600;
  color: black;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .custom-causes-section {
    padding: 50px 15px;
  }

  .custom-causes-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .custom-cause-item {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .custom-causes-section {
    padding: 40px 15px;
  }

  .custom-causes-heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .custom-cause-item {
    flex: 1 1 100%;
  }

  .custom-cause-image {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .custom-causes-section {
    padding: 30px 15px;
  }

  .custom-causes-heading {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .custom-cause-image {
    height: 200px;
  }

  .custom-cause-content {
    height: 70px;
    padding: 15px;
  }

  .custom-cause-text {
    font-size: 16px;
  }
}

/* Contact Section Container */
.custom-contact-section {
  width: 100%;
  height: 100px;
  background-color: orange;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

.custom-contact-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

/* Contact Form */
.custom-contact-form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

/* Form Input */
.custom-form-input {
  flex: 1;
  min-width: 145px;
  height: 40px;
  padding: 0 15px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  transition: all 0.3s ease;
}

.custom-form-input:focus {
  outline: none;
  background-color: #ffffff;
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

/* Submit Button */
.custom-submit-btn {
  height: 40px;
  padding: 0 20px;
  background-color: #17a34c;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.custom-submit-btn:hover {
  background-color: #11853d;
}

/* Form Message */
.custom-form-message {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  background-color: #2ecc71;
  color: white;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateX(150%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.custom-form-message.show {
  transform: translateX(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .custom-form-input {
    min-width: 120px;
  }
}

@media (max-width: 768px) {
  .custom-contact-section {
    height: auto;
    padding: 20px 15px;
  }

  .custom-contact-form {
    flex-direction: column;
    align-items: stretch;
  }

  .custom-form-input {
    width: 100%;
    min-width: unset;
  }

  .custom-submit-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .custom-contact-section {
    padding: 15px;
  }
}

/* Blog Section Container */
.custom-blog-section {
  padding: 20px 15px;
  background-color: #f8f9fa;
}

.custom-blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Heading */
.custom-blog-heading {
  text-align: center;
  margin-bottom: 50px;
  font-size: 30px;
  color: black;
  position: relative;
  padding-bottom: 15px;
  font-weight: 600;
}

.custom-blog-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background-color: #17a34c;
}

/* Blog Grid */
.custom-blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Blog Item */
.custom-blog-item {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.custom-blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Blog Image */
.custom-blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.custom-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.custom-blog-item:hover .custom-blog-image img {
  transform: scale(1.05);
}

/* Blog Date */
.custom-blog-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #17a34c;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

/* Blog Content */
.custom-blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Blog Category */
.custom-blog-category {
  display: inline-block;
  background-color: #e8f4fc;
  color: #17a34c;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Blog Title */
.custom-blog-title {
  font-size: 20px;
  font-weight: 600;
  color: black;
  margin: 0 0 15px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.custom-blog-item:hover .custom-blog-title {
  color: #17a34c;
}

/* Blog Excerpt */
.custom-blog-excerpt {
  font-size: 15px;
  color: black;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  font-weight: 500;
}

/* Blog Meta */
.custom-blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.custom-blog-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #17a34c;
  font-weight: 500;
}

.custom-blog-author i {
  color: #17a34c;
}

/* Blog Read More */
.custom-blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #17a34c;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
  cursor: pointer;
}

.custom-blog-readmore:hover {
  gap: 8px;
}

/* Blog Detail Popup */
.custom-blog-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.custom-blog-popup.active {
  opacity: 1;
  visibility: visible;
}

.custom-blog-popup-content {
  background-color: white;
  border-radius: 10px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.custom-blog-popup.active .custom-blog-popup-content {
  transform: scale(1);
}

.custom-blog-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.custom-blog-popup-close:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.custom-blog-popup-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.custom-blog-popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-blog-popup-body {
  padding: 30px;
}

.custom-blog-popup-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.custom-blog-popup-category {
  display: inline-block;
  background-color: #e8f4fc;
  color: #17a34c;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.custom-blog-popup-date {
  font-size: 14px;
  color: black;
}

.custom-blog-popup-title {
  font-size: 28px;
  font-weight: 600;
  color: black;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.custom-blog-popup-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 14px;
  color: black;
  font-weight: 500;
}

.custom-blog-popup-author i {
  color: #17a34c;
}

.custom-blog-popup-text {
  font-size: 16px;
  color: black;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 500;
}

.custom-blog-popup-text p {
  margin-bottom: 15px;
  text-align: justify;
}

.custom-blog-popup-text p:last-child {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .custom-blog-section {
    padding: 50px 15px;
  }

  .custom-blog-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .custom-blog-item {
    flex: 1 1 calc(50% - 30px);
  }

  .custom-blog-popup-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .custom-blog-section {
    padding: 40px 15px;
  }

  .custom-blog-heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .custom-blog-item {
    flex: 1 1 100%;
  }

  .custom-blog-image {
    height: 220px;
  }

  .custom-blog-popup-body {
    padding: 20px;
  }

  .custom-blog-popup-title {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .custom-blog-section {
    padding: 30px 15px;
  }

  .custom-blog-heading {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .custom-blog-image {
    height: 200px;
  }

  .custom-blog-content {
    padding: 15px;
  }

  .custom-blog-title {
    font-size: 18px;
  }

  .custom-blog-excerpt {
    font-size: 14px;
  }

  .custom-blog-popup-image {
    height: 200px;
  }

  .custom-blog-popup-body {
    padding: 15px;
  }

  .custom-blog-popup-title {
    font-size: 20px;
  }

  .custom-blog-popup-text {
    font-size: 15px;
  }
}

/* Testimonial Section */
.custom-testimonial-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

/* Background */
.custom-testimonial-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./assets/images/counter.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  z-index: -2;
}

/* Overlay */
.custom-testimonial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Container */
.custom-testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}

/* Testimonial Card */
.custom-testimonial-item {
  background: rgba(255, 255, 255, 0.9);
  color: black;
  flex: 1 1 45%;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.custom-testimonial-item .quote-icon {
  font-size: 28px;
  color: #17a34c;
  margin-bottom: 10px;
}

.custom-testimonial-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style:italic; 
  color: black;
  font-weight: 500;
}

.custom-testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.custom-testimonial-author h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: black;
}

.custom-testimonial-author span {
  font-size: 12px;
  color: black;
  font-weight: 500;
}

@media (max-width: 768px) {
  .custom-testimonial-item {
    flex: 1 1 100%;
  }
}
