/* Hero Banner Adjustments */
    .startups-hero {
      background: #05162b !important;
    }
    .startups-hero .banner-image-bg {
      opacity: 0.9 !important;
      background-size: cover;
      background-position: center center !important;
    }
    .startups-hero .banner-image-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(5, 22, 43, 0.6) 0%, rgba(5, 22, 43, 0.3) 40%, rgba(5, 22, 43, 0.05) 80%, transparent 100%) !important;
      pointer-events: none;
      z-index: 1;
    }

    /* Tab Switcher Styles */
    .success-tabs {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 3.5rem;
    }
    .success-tab-btn {
      padding: 0.9rem 2.2rem;
      font-size: 1rem;
      font-weight: 600;
      border: 2px solid var(--navy-light, #1c5296);
      background: transparent;
      color: var(--navy);
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
      font-family: var(--font-display), sans-serif;
    }
    .success-tab-btn:hover {
      background: rgba(28, 82, 150, 0.05);
      color: var(--navy);
      transform: translateY(-2px);
    }
    .success-tab-btn.active {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
      box-shadow: 0 6px 20px rgba(14, 40, 73, 0.15);
    }

    /* Research Overview Layout */
    .research-overview-grid {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 2.5rem;
      margin-bottom: 4rem;
      align-items: center;
    }
    @media (max-width: 992px) {
      .research-overview-grid {
        grid-template-columns: 1fr;
      }
    }

    .stat-hero-card {
      background: linear-gradient(135deg, var(--navy) 0%, #05162b 100%);
      color: var(--white);
      padding: 2.5rem;
      border-radius: 20px;
      box-shadow: var(--shadow-lg);
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
      min-height: 220px;
    }
    .stat-hero-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 80% 20%, rgba(255, 196, 0, 0.12) 0%, transparent 60%);
      pointer-events: none;
    }
    .stat-number-large {
      font-size: 5rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      font-family: var(--font-display), sans-serif;
      margin-bottom: 0.5rem;
    }
    .stat-label-large {
      font-size: 1.25rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      opacity: 0.9;
    }

    /* Publisher Logo Grid */
    .publisher-logo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
      margin-top: 1rem;
    }
    @media (max-width: 992px) {
      .publisher-logo-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    .publisher-logo-card {
      background: var(--white);
      border-radius: 16px;
      padding: 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(0, 0, 0, 0.05);
      height: 95px;
      transition: all 0.3s ease;
    }
    .publisher-logo-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--gold);
    }

    /* Publications 2-column table grid */
    .publications-grid-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      margin-top: 1.5rem;
    }
    @media (max-width: 992px) {
      .publications-grid-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }

    /* Fellowships-style Table Styling */
    .premium-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-family: var(--font-body), sans-serif;
      font-size: 0.9375rem;
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(0, 0, 0, 0.05);
    }
    .premium-table th {
      background: #0b1a30; /* Dark ink navy */
      color: #dfb23f; /* Brass/Gold */
      font-family: 'Lora', Georgia, serif;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 1.125rem 1.5rem;
      border-bottom: 2px solid #b89028; /* Brass border */
    }
    .premium-table td {
      padding: 1.125rem 1.5rem;
      color: var(--grey-700);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      vertical-align: middle;
      line-height: 1.5;
    }
    .premium-table tbody tr:last-child td {
      border-bottom: none;
    }
    .premium-table tbody tr {
      transition: background-color 0.2s ease;
    }
    .premium-table tbody tr:nth-child(even) {
      background-color: rgba(0, 0, 0, 0.015);
    }
    .premium-table tbody tr:hover {
      background-color: rgba(230, 242, 255, 0.6);
    }

    /* Featured Stories Carousel Styles */
    .carousel-container {
      position: relative;
      margin-top: 1.5rem;
      margin-bottom: 3.5rem;
      padding-inline: 3rem; /* Leave room for navigation buttons */
    }
    .carousel-viewport {
      overflow: hidden;
      width: 100%;
    }
    .carousel-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .carousel-slide {
      flex: 0 0 50%; /* Show 2 slides on desktop */
      box-sizing: border-box;
      padding: 0.75rem;
      display: flex;
    }
    @media (max-width: 992px) {
      .carousel-slide {
        flex: 0 0 100%; /* Show 1 slide on tablet/mobile */
      }
    }
    
    .story-card {
      width: 100%; /* Make sure card fills the slide height */
      min-height: 545px; /* Consistent height for cards with images */
    }

    .carousel-ctrl-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid rgba(0, 0, 0, 0.1);
      box-shadow: var(--shadow-md);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      font-size: 1.2rem;
      transition: all 0.3s ease;
      z-index: 10;
    }
    .carousel-ctrl-btn:hover {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
      transform: translateY(-50%) scale(1.05);
    }
    .carousel-ctrl-btn.prev {
      left: 0;
    }
    .carousel-ctrl-btn.next {
      right: 0;
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.5rem;
    }
    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--grey-300);
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      padding: 0;
    }
    .carousel-dot.active {
      background: var(--navy-light);
      transform: scale(1.2);
    }

    .story-card {
      background: var(--white);
      border-radius: 20px;
      padding: 2.25rem;
      box-shadow: var(--shadow-md);
      border-top: 4px solid var(--navy-light);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-top-color 0.3s var(--ease);
      position: relative;
    }
    .story-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-top-color: var(--gold);
    }
    .story-header {
      margin-bottom: 1.5rem;
    }
    .story-tag {
      display: inline-block;
      padding: 0.3rem 0.85rem;
      background: rgba(28, 82, 150, 0.08);
      color: var(--navy-light);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      border-radius: 50px;
      margin-bottom: 1.25rem;
    }
    .story-card-title {
      font-family: var(--font-display), sans-serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 0.75rem;
      line-height: 1.3;
    }
    .story-card-pi {
      font-size: 0.875rem;
      color: var(--grey-500);
      margin-bottom: 1rem;
    }
    .story-card-pi strong {
      color: var(--grey-800);
    }
    .story-card-desc {
      font-size: 0.9rem;
      color: var(--grey-600);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }
    .story-card-metrics {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-block: 1rem;
      border-top: 1px solid var(--grey-100);
      padding-top: 1rem;
    }
    .metric-item {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }
    .metric-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--grey-400);
      font-weight: 600;
    }
    .metric-value {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--navy);
    }
    .trl-value {
      background: rgba(255, 196, 0, 0.15);
      color: var(--gold-dark);
      padding: 0.2rem 0.6rem;
      border-radius: 6px;
      font-size: 0.8rem;
    }
    .btn-read-more {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.8rem 1.5rem;
      background: var(--navy);
      color: var(--white);
      border-radius: 10px;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.25s ease;
      gap: 0.5rem;
      margin-top: 1rem;
    }
    .btn-read-more:hover {
      background: var(--navy-light);
      box-shadow: 0 4px 12px rgba(46, 126, 255, 0.2);
    }
    .btn-read-more i {
      transition: transform 0.25s ease;
    }
    .btn-read-more:hover i {
      transform: translateX(4px);
    }

    /* Startups Section Layout */
    .featured-startups-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-bottom: 4rem;
    }
    @media (max-width: 992px) {
      .featured-startups-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .featured-startups-grid {
        grid-template-columns: 1fr;
      }
    }

    .startup-story-card {
      background: var(--white);
      border-radius: 20px;
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
      position: relative;
      height: 100%;
    }
    .startup-story-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, var(--gold) 0%, #ff9e00 100%);
      opacity: 0.8;
      transition: opacity 0.3s ease;
    }
    .startup-story-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(14, 40, 73, 0.1);
      border-color: rgba(255, 196, 0, 0.3);
    }
    .startup-story-card:hover::before {
      opacity: 1;
    }

    .startup-card-header {
      padding: 2rem 2rem 1.25rem 2rem;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }
    .startup-logo-container {
      width: 65px;
      height: 65px;
      border-radius: 14px;
      background: rgba(14, 40, 73, 0.02);
      padding: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(0,0,0,0.06);
      flex-shrink: 0;
      box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
    }
    .startup-logo-img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
    
    .startup-header-meta {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    .startup-name {
      font-family: var(--font-display), sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0;
      line-height: 1.2;
    }
    .startup-sector {
      font-size: 0.725rem;
      text-transform: uppercase;
      color: var(--gold-dark);
      font-weight: 700;
      letter-spacing: 0.05em;
    }

    .startup-card-body {
      padding: 1.5rem 2rem 0.5rem 2rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .startup-desc {
      font-size: 0.9rem;
      color: var(--grey-600);
      line-height: 1.6;
      margin: 0 0 1.5rem 0;
    }

    /* Startup Card Metrics */
    .startup-metrics-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem;
      background: rgba(14, 40, 73, 0.02);
      border-radius: 12px;
      padding: 0.85rem 0.5rem;
      margin-bottom: 1.25rem;
      border: 1px solid rgba(14, 40, 73, 0.04);
    }
    .startup-metric-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.25rem;
    }
    .startup-metric-box:not(:last-child) {
      border-right: 1px solid rgba(0, 0, 0, 0.06);
    }
    .startup-metric-lbl {
      font-size: 0.65rem;
      color: var(--grey-400);
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 0.02em;
    }
    .startup-metric-val {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--navy);
    }
    .startup-metric-val.trl {
      color: var(--gold-dark);
      background: rgba(255, 196, 0, 0.15);
      padding: 0.05rem 0.4rem;
      border-radius: 4px;
      font-size: 0.725rem;
    }

    .startup-card-footer {
      padding: 0 2rem 2rem 2rem;
      display: flex;
      justify-content: flex-start;
    }
    .startup-link {
      color: var(--navy-light);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.85rem;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      transition: color 0.2s ease;
    }
    .startup-link:hover {
      color: var(--navy);
      text-decoration: underline;
    }