
    /* ===== MOU Listing Section ===== */
    .mou-hero {
      background: var(--gradient-soft);
      padding: 4rem 0 3rem;
      text-align: center;
    }
    .mou-hero h1 {
      font-weight: 800;
      color: var(--primary);
      font-size: 2.25rem;
      margin-bottom: 0.75rem;
    }
    .mou-hero p {
      color: var(--text-secondary);
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
    }
    
    /* Filter tabs */
    .mou-filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem;
      padding: 2rem 0;
    }
    .mou-filter-btn {
      padding: 0.5rem 1.25rem;
      border: 1px solid var(--border);
      background: var(--white);
      color: var(--text-secondary);
      border-radius: 10px;
      font-size: 0.875rem;
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition);
    }
    .mou-filter-btn:hover,
    .mou-filter-btn.active {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary);
    }
    
    /* Partner rows - ENHANCED */
    .mou-partners {
      padding-bottom: 4rem;
    }
    .mou-row {
      display: flex;
      align-items: center;
      gap: 1.75rem;
      padding: 2rem 2rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      margin-bottom: 1.25rem;
      transition: var(--transition);
      text-decoration: none;
      color: inherit;
    }
    .mou-row:hover {
      border-color: var(--primary-light);
      box-shadow: 0 8px 28px var(--shadow);
      transform: translateY(-2px);
    }
    
    /* Logo - BIGGER & MORE VISIBLE */
    .mou-logo {
      width: 100px;
      height: 100px;
      min-width: 100px;
      border-radius: 14px;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border: 2px solid var(--border);
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      transition: var(--transition);
    }
    .mou-row:hover .mou-logo {
      border-color: var(--primary-light);
      box-shadow: 0 4px 16px rgba(123, 31, 58, 0.12);
    }
    .mou-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 10px;
    }
    .mou-logo i {
      font-size: 2.5rem;
      color: var(--primary-light);
    }
    
    .mou-info {
      flex: 1;
      min-width: 0;
    }
    .mou-info h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.35rem;
      line-height: 1.35;
    }
    .mou-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .mou-meta span {
      font-size: 0.82rem;
      color: var(--text-secondary);
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }
    .mou-meta .badge-mou {
      background: var(--pastel-pink);
      color: var(--primary);
      padding: 0.25rem 0.65rem;
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 600;
    }
    .mou-arrow {
      color: var(--primary-light);
      font-size: 1.5rem;
      transition: var(--transition);
    }
    .mou-row:hover .mou-arrow {
      color: var(--primary);
      transform: translateX(6px);
    }
    
    /* Stats bar */
    .mou-stats {
      background: var(--primary);
      padding: 2rem 0;
      margin-bottom: 2rem;
    }
    .mou-stats .stat-item {
      text-align: center;
      color: var(--white);
    }
    .mou-stats .stat-number {
      font-size: 2rem;
      font-weight: 800;
      display: block;
    }
    .mou-stats .stat-label {
      font-size: 0.875rem;
      opacity: 0.9;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .mou-row {
        padding: 1.5rem;
        gap: 1.25rem;
      }
      .mou-logo {
        width: 80px;
        height: 80px;
        min-width: 80px;
        border-radius: 12px;
      }
      .mou-logo img {
        padding: 8px;
      }
      .mou-logo i {
        font-size: 2rem;
      }
      .mou-info h3 {
        font-size: 1rem;
      }
    }
    
    @media (max-width: 576px) {
      .mou-row {
        padding: 1.25rem 1rem;
        gap: 1rem;
      }
      .mou-logo {
        width: 64px;
        height: 64px;
        min-width: 64px;
        border-radius: 10px;
      }
      .mou-logo img {
        padding: 6px;
      }
      .mou-logo i {
        font-size: 1.5rem;
      }
      .mou-info h3 {
        font-size: 0.9rem;
      }
      .mou-arrow {
        display: none;
      }
    }



    
    /* ===== MOU Detail Page — Full Width ===== */
    .mou-detail-hero {
      background: var(--gradient-primary);
      padding: 3.5rem 0;
      color: var(--white);
      text-align: center;
    }
    .mou-detail-hero .breadcrumb {
      background: none;
      padding: 0;
      margin-bottom: 1rem;
      justify-content: center;
    }
    .mou-detail-hero .breadcrumb-item a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
    }
    .mou-detail-hero .breadcrumb-item.active {
      color: rgba(255,255,255,0.6);
    }
    .mou-detail-hero .breadcrumb-item + .breadcrumb-item::before {
      color: rgba(255,255,255,0.5);
    }
    .mou-detail-hero h1 {
      font-weight: 800;
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
    }
    .mou-detail-hero p {
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
    }
    
    .mou-detail-body {
      padding: 3rem 0;
    }
    
    /* Full-width header with large logo */
    .mou-college-header {
      display: flex;
      align-items: center;
      gap: 2rem;
      margin-bottom: 2.5rem;
      padding-bottom: 2rem;
      border-bottom: 2px solid var(--border);
    }
    .mou-college-logo {
      width: 140px;
      height: 140px;
      min-width: 140px;
      border-radius: 16px;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--border);
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }
    .mou-college-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 12px;
    }
    .mou-college-logo i {
      font-size: 3rem;
      color: var(--primary-light);
    }
    .mou-college-title h2 {
      font-weight: 800;
      font-size: 1.6rem;
      color: var(--text-primary);
      margin-bottom: 0.35rem;
      line-height: 1.3;
    }
    .mou-college-title .subtitle {
      color: var(--text-secondary);
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
    }
    .mou-college-title .mou-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: var(--pastel-pink);
      color: var(--primary);
      padding: 0.4rem 1rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
    }
    
    /* Info grid */
    .mou-info-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }
    .mou-info-item {
      display: flex;
      align-items: flex-start;
      gap: 0.875rem;
      padding: 1.25rem;
      background: var(--off-white);
      border-radius: 12px;
      border: 1px solid var(--border);
    }
    .mou-info-item i {
      font-size: 1.4rem;
      color: var(--primary);
      margin-top: 2px;
    }
    .mou-info-item div strong {
      display: block;
      font-size: 0.75rem;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 0.3rem;
    }
    .mou-info-item div span {
      font-weight: 700;
      color: var(--text-primary);
      font-size: 1.05rem;
    }
    
    /* Content sections */
    .mou-section {
      margin-bottom: 2.5rem;
    }
    .mou-section h3 {
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--primary);
      margin-bottom: 1.25rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding-bottom: 0.75rem;
      border-bottom: 2px solid var(--pastel-pink);
    }
    .mou-section p {
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 1rem;
      font-size: 1.02rem;
    }
    
    /* Highlights */
    .mou-highlights {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
    }
    .mou-highlights li {
      padding: 1rem 1.25rem;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: flex-start;
      gap: 0.875rem;
      color: var(--text-primary);
    }
    .mou-highlights li:nth-child(odd) {
      border-right: 1px solid var(--border);
    }
    .mou-highlights li:nth-last-child(-n+2) {
      border-bottom: none;
    }
    .mou-highlights li i {
      color: var(--success);
      font-size: 1.25rem;
      margin-top: 2px;
      min-width: 1.25rem;
    }
    
    /* Gallery — full width real images */
    .mou-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-top: 1.5rem;
    }
    .mou-gallery-item {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      border: 2px solid var(--border);
      aspect-ratio: 4/3;
    }
    .mou-gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .mou-gallery-item:hover img {
      transform: scale(1.05);
    }
    .mou-gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.7));
      color: var(--white);
      padding: 2rem 1rem 1rem;
      font-size: 0.85rem;
      font-weight: 500;
    }
    
    /* CTA */
    .mou-cta {
      background: var(--gradient-soft);
      border-radius: 16px;
      padding: 2.5rem;
      text-align: center;
      margin-top: 2rem;
    }
    .mou-cta h4 {
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 0.75rem;
      font-size: 1.3rem;
    }
    .mou-cta p {
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
      font-size: 1.05rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .mou-cta .btn-primary {
      background: var(--primary);
      border: none;
      padding: 0.875rem 2.5rem;
      font-weight: 700;
      border-radius: 10px;
      font-size: 1rem;
    }
    .mou-cta .btn-primary:hover {
      background: var(--primary-dark);
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .mou-info-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .mou-gallery {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 768px) {
      .mou-college-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
      }
      .mou-college-logo {
        width: 120px;
        height: 120px;
        min-width: 120px;
      }
      .mou-college-title h2 {
        font-size: 1.3rem;
      }
      .mou-highlights {
        grid-template-columns: 1fr;
      }
      .mou-highlights li:nth-child(odd) {
        border-right: none;
      }
      .mou-highlights li:nth-last-child(2) {
        border-bottom: 1px solid var(--border);
      }
    }
    
    @media (max-width: 576px) {
      .mou-college-logo {
        width: 100px;
        height: 100px;
        min-width: 100px;
      }
      .mou-college-logo img {
        padding: 10px;
      }
      .mou-college-logo i {
        font-size: 2.5rem;
      }
      .mou-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .mou-info-item {
        padding: 1rem;
      }
      .mou-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .mou-gallery-item {
        aspect-ratio: 16/10;
      }
      .mou-cta {
        padding: 1.75rem 1.25rem;
      }
    }
    .workshop-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.workshop-back:hover {
  color: var(--primary-dark);
}
