/* ========== Consistent maroon theme ========== */
:root {
  --maroon: #800000;
  --dark: #000;
  --gray: #666;
}

.text-maroon {
  color: var(--maroon) !important;
}

.bg-maroon {
  background-color: var(--maroon) !important;
}

.text-justify {
  text-align: left;
}

/* ========== View More button (shared) ========== */
/* ===== Unified “View More” red pill button ===== */
.btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #800000;
  /* maroon red */
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  /* margin-top: 20px; */
  font-size: 1rem;
}

.btn-view-more:hover {
  background-color: #5a0000;
  /* darker red on hover */
  color: #fff;
}

.btn-view-more .plus-icon {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
}

.plus-text-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: var(--maroon);
  transition: all 0.3s ease;
  margin-top: 20px;
}

.plus-text-btn:hover {
  color: #001659;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: var(--maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  transition: background 0.3s ease;
}

.plus-text-btn:hover .icon-circle {
  background: #001659;
}

/* ========== Image columns with rounded tops ========== */
.rounded-image {
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  overflow: hidden;
  border: 1px solid #ddd;
  height: 100%;
}

.rounded-image img {
  width: 100%;
  height: 350px;
  /* set a fixed height or use object-fit */
  object-fit: cover;
}
.round {
  border-radius: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.round img {
  border-radius: 10%;
  height: 350px;
  object-fit: cover;
}
/* ========== Divider line ========== */
.divider {
  width: 80px;
  height: 3px;
  background-color: var(--dark);
  margin: 1rem 0;
}

/* ========== Responsive adjustments ========== */

@media (max-width: 768px) {
  .plus-text-btn {
    margin-top: 15px;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .rounded-image {
    min-height: 250px;
    top: 0;
    left: 0;
    position: relative;
  }
  .rounded-image img {
    z-index: 1;
    max-height: 250px;
    position: absolute;
    top: 0px;
    left: 0;
  }
}
