#core-csr-hero {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #1f1a17;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  padding: 30px;
  border-radius: 30px;
}

#core-csr-hero .csr-hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
}

#core-csr-hero .csr-label {
  letter-spacing: 3px;
  font-size: 12px;
  color: #aaa;
}

#core-csr-hero .csr-quote {
  font-size: 38px;
  line-height: 1.4;
  margin: 20px 0;
  color: #fff;
}

#core-csr-hero .csr-author {
  color: #ccc;
}

#core-csr-intro {
  padding: 30px 50px;
}

#core-impact-spotlight {
  padding: 30px;
}

/* LAYOUT */
#core-impact-spotlight .cis-container {
  display: flex;
  gap: 80px;
  align-items: center;
}

/* LEFT CONTENT */
.cis-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 50px;
  padding: 3px 10px;
}

#core-impact-spotlight .cis-title {
  font-size: 28px;
  margin: 20px 0;
  line-height: 1.3;
}

#core-impact-spotlight .cis-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* RIGHT STATS */
#core-impact-spotlight .cis-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
#core-impact-spotlight .cis-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  display: flex;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  /* justify-content: space-between; */
  gap: 50px;
  align-content: center;
  align-items: center;
  border-left: 4px solid var(--accent-color);
}

#core-impact-spotlight .cis-card:nth-child(2) {
  background-color: var(--primary-color);
  color: #fff;
}

#core-impact-spotlight .cis-card:nth-child(2) h3 {
  color: var(--accent-color);
}

#core-impact-spotlight .cis-card:nth-child(2) p {
  color: #fff;
}

/* NUMBER */
#core-impact-spotlight .cis-card h3 {
  font-size: 30px;
  margin-bottom: 0px;
  color: #111;
}

/* TEXT */
#core-impact-spotlight .cis-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0px;
}

/* HOVER EFFECT */
#core-impact-spotlight .cis-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #core-impact-spotlight .cis-container {
    flex-direction: column;
  }

  #core-impact-spotlight .cis-title {
    font-size: 26px;
  }

  #core-csr-hero .csr-quote {
    font-size: 30px;
  }
}

#core-journey-minimal {
  margin: 20px auto;
  padding: 20px 20px;
  background-color: #201b18;
  border-radius: 20px;
}

/* ITEM */
#core-journey-minimal .cjm-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 50px 0;
  border-bottom: 1px dashed var(--accent-color);
  transition: 0.4s;
}

#core-journey-minimal .cjm-item:last-child {
  border-bottom: none;
}

/* YEAR */
#core-journey-minimal .cjm-year span {
  font-size: 42px;
  color: #dcdcdc;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}

#core-journey-minimal .cjm-year small {
  font-size: 11px;
  letter-spacing: 1px;
  color: #999;
}

/* CONTENT */
#core-journey-minimal .cjm-content h4 {
  color: #fff;
  margin-bottom: 15px;
}

/* UNDERLINE ANIMATION */
#core-journey-minimal .cjm-content h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--accent-color);
  transition: 0.4s;
}

/* TEXT */
#core-journey-minimal .cjm-content p {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 10px;
  transition: 0.3s;
}

/* TAGS */
#core-journey-minimal .cjm-tags span {
  font-size: 11px;
  padding: 5px 10px;
  background: #eef2ef;
  margin-right: 6px;
  border-radius: 3px;
  transition: 0.3s;
}

/* 🔥 HOVER EFFECT (SUBTLE + PREMIUM) */
#core-journey-minimal .cjm-item:hover {
  transform: translateX(10px);
}

#core-journey-minimal .cjm-item:hover h4::after {
  width: fit-content;
}

#core-journey-minimal .cjm-item:hover .cjm-tags span {
  background: var(--accent-color);
  color: #fff;
}

#core-journey-minimal .cjm-item:hover p {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #core-journey-minimal .cjm-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #core-journey-minimal .cjm-year span {
    font-size: 28px;
  }
}

/*  */
/* TAB WRAPPER */
.csr-tabs {
  margin-top: 30px;
}

/* TAB BUTTONS */
.csr-tab-buttons {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: 25px;
}

.csr-tab-btn {
  padding: 12px 25px;
  background: #f5f5f5;
  border: none;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  font-weight: 600;
  color: #263070;
  position: relative;
  transition: 0.3s;
}

/* ACTIVE TAB */
.csr-tab-btn.active {
  background: #ffffff;
  color: #EC1C24;
}

/* BOTTOM LINE EFFECT */
.csr-tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: #EC1C24;
}

/* HOVER */
.csr-tab-btn:hover {
  color: #EC1C24;
}

/* TAB CONTENT */
.csr-tab-content {
  display: none;
}

.csr-tab-content.active {
  display: block;
}

/*  */
/* VIEW MORE CONTENT */
.view-more-content {
  max-height: 0;
  overflow: hidden;
  position: relative;
  transition: max-height 0.8s ease-in-out;
  will-change: max-height;
}

/* FADE EFFECT */
.view-more-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
  transition: opacity 0.4s ease;
}

/* EXPANDED STATE */
.view-more-content.expanded::after {
  opacity: 0;
}

/* BUTTON WRAP */
.view-more-wrap {
  margin-top: 20px;
  margin-left: 2%;
}

/* BUTTON STYLE */
.view-more-btn {
  padding: 12px 30px;
  background: #DA2927;
  color: #fff;
  border: 2px solid #DA2927;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 10px;
}

/* HOVER */
.view-more-btn:hover {
  background: transparent;
  color: #DA2927;
}

/*  */

/* NEW CARD DESIGN WRAPPER */
.cis-feature-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.cis-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* IMAGE INTEGRATION WITHIN CARD */
.cis-card-image {
  margin: -40px -40px 30px -40px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.cis-card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cis-feature-card:hover .cis-card-image img {
  transform: scale(1.05);
}

/* QUOTE ACCENT FOR RESEARCH SECTION */
.quote-accent {
  border-left: 3px solid var(--accent-color);
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
}

.cis-text.italic {
  color: #444;
  font-weight: 500;
}

/* ADJUSTING YOUR EXISTING STATS FOR INSIDE THE CARD */
.cis-feature-card .cis-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
}

/* BUTTON ALIGNMENT FIX */
.cis-feature-card .view-more-wrap {
  margin-left: 0;
  margin-top: auto;
  padding-top: 20px;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 991px) {
  .cis-feature-card {
    padding: 25px;
    margin-bottom: 20px;
  }

  .cis-card-image {
    margin: -25px -25px 20px -25px;
  }
}