/* =========================================================
   founder-award.css
   Page-specific styles for /founder-award
   Split out of the old monolithic style.css. Rule order is
   unchanged from the original file.
   ========================================================= */

.founders-banner {
  position: relative;
  width: 100%;
  height: 470px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .founders-banner {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
  }
}
.founders-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founders-content {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  z-index: 3;
  color: white;
}
@media (max-width: 768px) {
  .founders-content {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    z-index: 3;
    color: white;
  }
}
.score-item {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 28px;
}
@media(max-width:768px) {
  .score-item {
    display: block;
    align-items: center;
    gap: 25px;
    margin-bottom: 28px;
  }
  .score-label {
    width: 260px;
    text-align: left !important;
    font-weight: 700;
    color: #0a2a66;
    font-size: 20px;
  }
  .score-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .score-label {
    width: 100%;
    text-align: left;
    font-size: 17px;
  }
  .score-value {
    display: none;
  }
}

/* ---------------------------------------------------------
   Moved out of founder-award.php (was an inline <style> block)
   --------------------------------------------------------- */

    

.pitch-overlay{
    position:absolute;
    inset:0;
    background: linear-gradient(to top, rgb(0 0 0 / 40%), rgb(0 0 0 / 11%));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:20px;
    color:#fff;
}

.pitch-card-box{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    min-height:200px; 
}


.judging-title{
    color:#0a2a66;
    font-size:48px;
    font-weight:800;
}

.judging-subtitle{
    max-width:800px;
    margin:auto;
    color:#6c757d;
    font-size:18px;
}


.score-label{
    width:260px;
    text-align:right;
    font-weight:700;
    color:#0a2a66;
    font-size:20px;
}

.score-bar{
    flex:1;
    height:42px;
    background:#e8edf5;
    border-radius:50px;
    overflow:hidden;
    box-shadow: inset 0 2px 8px rgba(0,0,0,.05);
}

.score-fill{
    width:0;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    padding-right:18px;
    color:#fff;
    font-weight:700;
    border-radius:50px;
    transition:all 2s ease;
}

.navy{
    background:linear-gradient(90deg, #5170c3, #1447b1);
}

.navy1{
    background:linear-gradient(90deg, #51bfc3, #14acb1);
}

.blue{
    background:linear-gradient(90deg, #3f1ca7, #352ee6);
}

.sky{
    background:linear-gradient(90deg,#3a7cff,#6aa8ff);
}

.gold{
    background:linear-gradient(90deg,#b98a20,#d7af47);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }

.score-value{
    width:70px;
    font-size:22px;
    font-weight:800;
    color:#0a2a66;
}


.chart-legend {
      padding: 16px 24px;
      border-radius: 30px; 
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      display: flex;
      flex-direction: row; 
      flex-wrap: wrap;     
      gap: 24px;          
      justify-content: center;
      align-items: center;
    }

    .legend-item {
      display: flex;
      align-items: center;
      font-size: 14px;
      color: #333333;
      font-weight: 500;
      white-space: nowrap; 
    }

    .legend-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      margin-right: 8px;
      flex-shrink: 0;
    }

    .legend-text {
      margin-right: 6px;
      color: #ffff;
    }

    .legend-percentage {
      font-weight: 700;
      color: #fff;
    }

    
