.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-item {
  display: none;
  text-align: center;
}

.carousel-item.active {
  display: block;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.carousel-arrow.left {
  left: 10px;
}

.carousel-arrow.right {
  right: 10px;
}

.carousel-arrow:hover {
  background: rgba(0,0,0,0.7);
}

.carousel-dots {
  text-align: center;
  margin-top: 15px;
}

.carousel-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  display: inline-block;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dots .dot.active {
  background-color: #3d85c6;
}
.collection-sidebar{
  padding:20px;
  border-right:1px solid #eee;
}

.collection-title{
  font-weight:bold;
  margin-top: 0;
}

.collection-strapline{
  color:#666;
}

.setup-call{
  margin-top:10px;
  cursor: pointer;
}

.collection-cover{
  width:100%;
  border-radius:16px;
}

.info-title{
  font-weight:bold;
}

.score-title{
  margin-bottom:10px;
  font-weight:bold;
}

.mini-scorecard-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  border-radius:14px;
  overflow:hidden;
}

.scorecard-box{
  padding:25px;
}

.activity{background:#dde8f3;}
.engagement{background:#a0c5e4;}
.ability{background:#73a9d8;}
.behaviour{background:#1b5490;color:white;}
.growth{background:#12284d;color:white;}

.template-image{
  width:100%;
  border-radius:12px;
}

.final-cta{
  background:#073763;
  padding:60px;
  border-radius:16px;
  color:white;
}

.btn-secondary{
  background:#3d85c6;
  color:white;
}

.faq-accordion{
  max-width:800px;
  margin:40px auto;
}

.faq-card{
  border:1px solid #e5e5e5;
  border-radius:10px;
  margin-bottom:15px;
  overflow:hidden;
}

.faq-question{
  padding:18px 22px;
  font-weight:bold;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#fff;
}

.faq-question:hover{
  background:#f7f7f7;
}

.faq-icon{
  color:#666;
}

.faq-answer{
  display:none;
  padding:18px 22px;
  border-top:1px solid #eee;
  background:#fafafa;
  color:#444;
}

.second-cta{
  background:#073763;
  border-radius:16px;
  padding:20px;
  color:white;
}

.second-cta-inner{
  max-width:750px;
  margin:0 auto;
}

.second-cta-title{
  font-weight:bold;
  margin-bottom:15px;
}

.second-cta-text{
  margin-bottom:30px;
  color:#e4edf6;
}

.second-cta-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.cta-btn-blue{
  background:#3d85c6;
  color:white;
  border-radius:6px;
}

.cta-btn-blue:hover{
  background:#2f6ea5;
  color:white;
}

.cta-btn-pink{
  background:#ff4fa3;
  color:white;
  font-weight:bold;
  border-radius:6px;
}

.cta-btn-pink:hover{
  background:#e63d8f;
  color:white;
}

#add-collection-to-projects-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.custom-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.custom-modal-box {
  width: 520px;
  height: 80vh;
  margin: 40px auto;
  background: #fff;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.modal-title {
  font-weight:bold;
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.modal-footer {
  padding: 15px;
  border-top: 1px solid #eee;
  text-align: center;
  background: #fff;
}

.close-btn {
  background: #3d85c6;
  color: #fff;
  padding: 8px 24px;
  border-radius: 6px;
}

.project-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.project-subtext {
  color: #777;
}

.add-btn {
  background: #2f80c0;
  color: white;
  border-radius: 6px;
  padding: 6px 12px;
}

.create-section {
  text-align: center;
  margin-top: 20px;
}

.create-btn {
  background: #c84da0;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
}

.modal-image img {
  width: 180px;
  display: block;
  margin: 20px auto;
}

.survey-panel {
  margin: 50px 0;
}

.survey-images {
  width: 100%;
  border-radius: 10px;
}

.survey-panel.left .text-col {
  text-align: left;
}

.survey-panel.right .text-col {
  text-align: left;
}

.survey-panel.right .row {
  display: flex;
  flex-direction: row-reverse;
}

.survey-panel .row {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .survey-panel .row {
    flex-direction: column !important;
  }
  
  .mini-scorecard-grid {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
  }

  .scorecard-box {
    min-width: 140px;
    flex: 0 0 auto;
    padding: 15px;
  }
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 15px;
  color: #777;
}

.breadcrumb-link {
  color: #3d85c6;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-link:hover {
  text-decoration: underline;
}

.separator {
  margin: 0 6px;
  color: #aaa;
}

.current {
  color: #333;
  font-weight: 600;
}

.survey-benefits-section {
  margin-top: 60px;
  text-align: center;
}

.featured-surveys, .mini-scorecard-section, .featured-scorecards, .cta-section, .faq-section, .second-cta-wrapper{
  margin-top: 60px;
}

.survey-benefits-title {
  font-size: 30px;
  font-weight: 700;
}

.survey-benefits-tabs {
  display: flex;
  gap: 30px;
  text-align: left;
}

.survey-tabs-left {
  width: 30%;
  display: flex;
  flex-direction: column;
}

.survey-video-wrapper,
.tips-video-wrapper,
.metric-video-wrapper {
  width: 100%;
}

.survey-video-wrapper iframe,
.tips-video-wrapper iframe,
.metric-video-wrapper iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0;
  border: 0;
}

.survey-tab-item {
  border-left: 4px solid transparent;
  padding: 15px;
  cursor: pointer;
  background: #f7f7f7;
  margin-bottom: 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.survey-tab-item.active {
  font-weight: bold;
}

.survey-tabs-content {
  width: 70%;
}

.survey-tab-content {
  display: none;
}

.benefit_name {
  font-weight: bold;
}

.survey-tab-content.active {
  display: block;
}

.use-template-btn {
  margin-top: 40px;
  padding: 12px 30px;
  font-size: 16px;
}

.impact-playbook-section {
  margin-top: 60px;
  text-align: center;
}

a:hover {
  text-decoration: none;
}

.playbook-title {
  font-size: 30px;
  font-weight: 700;
  color: #000;
}

.playbook-subtitle {
  margin-top: 10px;
  font-size: 16px;
  color: #555;
}

.tips-scroll-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  scroll-behavior: smooth;
}

.tips-row {
  display: flex;
  gap: 20px;
}

.tip-card {
  flex: 0 0 calc(25% - 15px);
  display: flex;
}

.tip-card-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border: 2px solid #3595d5;
  border-radius: 20px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: 0.2s ease;
}

.tip-card-inner:hover {
  transform: translateY(-0.5px);
}

.card-header {
  padding: 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tip-title {
  font-size: 18px;
  font-weight: 600;
  color: #2f5fa7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}

.card-divider {
  height: 1px;
  background: #e0e0e0;
}

.card-body {
  padding: 16px;
  text-align: left;
  height: 130px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-description {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  margin-top: auto;
}

.card-footer .left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-footer .right {
  display: flex;
  align-items: center;
}

.add-btn {
  background: #2f3e57;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  border: none;
  font-size: 13px;
  cursor: pointer;
}

.heart {
  color: red;
  font-size: 16px;
  cursor: pointer;
}

.see-more-link {
  display: inline-block;
  margin-top: 25px;
  color: #327ab7ff;
  text-decoration: none;
  cursor: pointer;
}

.tips-row {
  scroll-snap-type: x mandatory;
}

.tip-benefits-section {
  margin-top: 60px;
  text-align: center;
}

.tip-benefits-title {
  font-size: 30px;
  font-weight: 700;
  color: #000;
}

.tip-benefits-subtitle {
  margin-top: 10px;
  font-size: 16px;
  color: #555;
}

.tip-benefits-tabs {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.tips-tabs-left, .tabs-left {
  width: 30%;
  display: flex;
  flex-direction: column;
}

.tips-tab-item, .benefits-tab-item {
  border-left: 4px solid transparent;
  padding: 15px;
  cursor: pointer;
  background: #f7f7f7;
  margin-bottom: 10px;
  border-radius: 6px;
}

.tips-tab-item.active, .benefits-tab-item.active {
  background: #fff;
  font-weight: bold;
}

.tips-tabs-content, .tabs-content {
  width: 70%;
}

.tip-tab-content, .tab-content {
  display: none;
  border-left: 6px solid var(--benefit-color);
  padding-left: 20px;
}

.tip-tab-content.active, .tab-content.active {
  display: block;
}

.metrics-section {
  margin-top: 60px;
  text-align: center;
}

.metrics-title {
  font-size: 30px;
  font-weight: 700;
  color: #000;
}

.metrics-subtitle {
  margin-top: 10px;
  font-size: 16px;
  color: #555;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.metric-card {
  height: 340px;
  display: flex;
}

.metric-card-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-bottom: 5px;
  background: #f5f7fb;
  overflow: hidden;
  border: 2px solid #2f80c0;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.metric-card-inner:hover {
  transform: translateY(-4px);
}

.metric-image {
  height: 150px;
  flex-shrink: 0;
}

.metric-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metric-content {
  flex-grow: 1;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-title {
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}

.metric-subtitle {
  font-size: 12px;
  margin-top: 4px;
  color: #666;
}

.metric-description {
  font-size: 13px;
  margin-top: 6px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.indicators-wrapper {
  margin-top: 10px;
  min-height: 60px;
}

.indicators-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
}

.indicator-card {
  background: #2f80c0;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

.more-indicators {
  font-size: 11px;
  margin-top: 4px;
  color: #555;
}

.no-indicators {
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
}

.add-btn {
  background: #2f3e57;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
}

.see-more-kpis-link {
  display: inline-block;
  margin-top: 25px;
  color: #327ab7ff;
  text-decoration: none;
  cursor: pointer;
}

.metric-benefits-section {
  margin-top: 60px;
  text-align: center;
}

.metric-benefits-title {
  font-size: 30px;
  font-weight: 700;
  color: #000;
}

.metric-benefits-subtitle {
  margin-top: 10px;
  font-size: 16px;
  color: #555;
}

.metric-benefits-tabs {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.benefits-tab-content {
  display: none;
  border-left: 6px solid var(--benefit-color);
  padding-left: 20px;
}

.benefits-tab-content.active {
  display: block;
}

@media (max-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .metric-card {
    height: auto;
  }

  .metric-card-inner {
    border-radius: 20px;
  }

  .metric-image {
    height: 130px;
  }

  .metric-title {
    font-size: 14px;
  }

  .metric-description {
    font-size: 12px;
  }
}

.btn-success, .btn-success:hover{
  background: #3bac9cff;
}
