.text-primary-custom {
  color: #3eaac4 !important;
}

/* Section Styling */
.ishare-section {
  background-color: #fff;
}

.inspires-section {
  background-color: #fff6f2; /* light peach tone */
  border-radius: 16px;
}

/* Divider Lines */
.inspire-list .divider {
  border: 0;
  border-bottom: 1px solid #f0cfc1;
  margin: 0.5rem 0 1rem;
  width: 80%;
}

/* Headings */
.ishare-section h2,
.ishare-section h3,
.ishare-section h5 {
  font-family: "Poppins", sans-serif;
}

ul li {
  margin-bottom: 0.5rem;
}

/* Image Rounded Card */
.bg-light {
  background: #eaeaea;
}

/* Responsive */
@media (max-width: 992px) {
  .inspire-list .divider {
    width: 100%;
  }
}

/* Gallery Layout */
.gallery-item {
  height: 160px;
  background: #e6e6e6;
}

/* Spacing tweaks for balanced look */
.gallery-grid .col-md-8 .gallery-item {
  height: 160px;
}
.gallery-grid .col-md-4 .gallery-item {
  height: 75px;
}

/* Community section */
.bg-peach {
  background-color: #fff6f2;
}

/* Icons */
.icon {
  font-size: 2rem;
  color: #3eaac4;
}

/* Typography */
.gallery-community-section h3 {
  font-family: "Poppins", sans-serif;
}
.gallery-community-section p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Rounded & subtle hover animation */
.info-card {
  transition: all 0.3s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.text-primary-custom {
  color: #3eaac4 !important;
}

/* Section Buttons */
.btn-primary-custom {
  background-color: #3eaac4;
  color: #fff;
  border: none;
  font-size: 0.9rem;
  border-radius: 8px;
  padding: 6px 14px;
}
.btn-outline-primary-custom {
  color: #3eaac4;
  border: 1px solid #3eaac4;
  background: transparent;
  font-size: 0.9rem;
  border-radius: 8px;
  padding: 6px 14px;
}
.btn-outline-primary-custom:hover {
  background-color: #3eaac4;
  color: #fff;
}

/* Section Styling */
.bg-lightblue {
  background-color: #f2f9fb;
}

/* Circle Number */
.circle-number {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid #3eaac4;
  color: #3eaac4;
  font-weight: 500;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image Fix */
.object-cover {
  object-fit: cover;
  height: 100%;
  max-height: 400px;
}

/* Typography */
.mythoughts-section h2 {
  font-family: "Poppins", sans-serif;
}
.mythoughts-section p {
  font-family: "Inter", sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .circle-number {
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .object-cover {
    max-height: 300px;
  }
}

.inspire-list h5 {
  cursor: pointer;
  transition: color 0.3s ease;
}

.inspire-list h5:hover {
  color: #3eaac4;
}

.inspire-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

.inspire-item.active .inspire-content {
  max-height: 200px; /* adjust based on content length */
  opacity: 1;
}

.divider {
  border: 0;
  border-bottom: 1px solid #f0cfc1;
  margin: 0.5rem 0 1rem;
  width: 80%;
}
