    /* === Colors & Fonts === */
.text-primary-custom {
  color: #3eaac4 !important;
}

/* === Hero Section === */
.hero-section {
  position: relative;
  background: linear-gradient(90deg, #f8fbfc 40%, transparent 60%);
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
  display: inline-block;
}

.hero-bg {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
  height: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Rating Badge */
.rating-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 0.9rem;
}
.rating-badge .avatar {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  margin-left: -6px;
  object-fit: cover;
}

/* === Impact Section === */
.impact-section {
  background-color: #fff6f2;
}

.impact-section h5 {
  font-weight: 600;
  letter-spacing: 0.3px;
}

.impact-section p {
  color: #6c757d;
  margin-bottom: 0;
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }
  .rating-badge {
    bottom: 5px;
    right: 5px;
  }
}

/* General */
.text-primary-custom {
  color: #3eaac4 !important;
}

/* Business Journey */
.business-journey {
  background: #fff;
}

.timeline {
  position: relative;
  padding-top: 20px;
}

.timeline-line {
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    transparent,
    transparent 8px,
    #ddd 8px,
    #ddd 12px
  );
}

.timeline-year {
  background-color: #3eaac4;
  color: #fff;
  display: inline-block;
  padding: 5px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  margin-bottom: 10px;
}

.timeline-year::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: 22px;
  background-color: #ddd;
}

.timeline::before,
.timeline::after {
  content: "";
  position: absolute;
  top: 28px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #3eaac4;
}
.timeline::before {
  left: 0;
}
.timeline::after {
  right: 0;
}

/* Milestones Section */
.milestones-section {
  background-color: #fff6f2;
}

.milestone-card {
  background-color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.milestone-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.milestone-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.bg-primary-light {
  background-color: #e3f7fb;
}
.bg-success-light {
  background-color: #eafaf1;
}
.bg-danger-light {
  background-color: #fde8e8;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-line {
    display: none;
  }
  .timeline-year::before {
    display: none;
  }
}

/* === Color Reuse === */
.text-primary-custom {
  color: #3eaac4 !important;
}

/* === Section Styling === */
.my-thoughts-section {
  background: #fff;
}

.btn-primary-custom {
  background-color: #3eaac4;
  color: #fff;
  border: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #2d93aa;
  transform: translateY(-2px);
}

.btn-outline-primary-custom {
  border: 2px solid #3eaac4;
  color: #3eaac4;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
  background-color: #3eaac4;
  color: #fff;
  transform: translateY(-2px);
}

/* === Responsive === */
@media (max-width: 576px) {
  .my-thoughts-section h2 {
    font-size: 1.5rem;
  }
}

.text-primary-custom {
  color: #3eaac4 !important;
}

/* === Outer Scrollable Section === */
.featured-blogs-section {
  height: 90vh; /* visible area */
  overflow-y: scroll;
  scroll-behavior: smooth;
  padding: 40px 0;
}

/* Hide scrollbar */
.featured-blogs-section::-webkit-scrollbar {
  width: 0;
}
.featured-blogs-section {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* === Blog Block Card === */
.blog-block {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  height: 400px; /* Fixed height for all cards */
}

.blog-left {
  flex: 1 1 50%;
  overflow: hidden;
}

.readmore {
  color: #3eaac4;
  font-weight: 600;
  text-decoration: none;
}
.readmore:hover {
  text-decoration: underline;
}

/* === Right Section (Images) === */
.blog-right {
  flex: 1 1 50%;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
  height: 100%;
}

/* Common image style */
.blog-right .img {
  flex: 1;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}

/* Layout variations */
.one-image .img {
  width: 100%;
}

.two-images {
  flex-direction: column;
}
.two-images .img {
  flex: 1;
  height: 50%; /* both images fill full height */
}

.three-images {
  flex-direction: row;
}
.three-images .img {
  flex: 1;
  height: 100%;
}
.three-images .img:nth-child(1),
.three-images .img:nth-child(2) {
  height: 100%;
  flex: 1;
}

/* === Responsive === */
@media (max-width: 992px) {
  .blog-block {
    flex-direction: column;
    height: auto;
  }
  .blog-right {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .blog-right .img {
    height: 200px;
    flex: 1 1 48%;
  }
}
