/* Graduation Hero Section */
    .graduation-hero {
        position: relative;
        min-height: 70vh;
        background: url('https://worldmachinerystore.co/assets/uploads/2026/08/1785669704_109d62b7cef6bac7cb00.webp');
        background-size: 100% 120%;
        background-position: top center;
        background-attachment: fixed;
        display: flex;
        align-items: center;
        text-align: center;
        padding: 150px 0 100px;
        margin-top: 0px;
    }
    
    .graduation-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: 50px;
        animation: graduationMoveGrid 20s linear infinite;
    }
    
    @keyframes graduationMoveGrid {
        0% { transform: translateX(0) translateY(0); }
        100% { transform: translateX(50px) translateY(50px); }
    }
    
    .graduation-hero h1 {
        font-size: 4.5rem;
        color: white;
        margin-bottom: 1rem;
        font-weight: 700;
        position: relative;
        z-index: 2;
    }
    
    .graduation-hero h1 span {
        background: linear-gradient(135deg, #007be0, #e31937);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }
    
    .graduation-hero .breadcrumb {
        background: transparent;
        padding: 0;
        justify-content: center;
        position: relative;
        z-index: 2;
    }
    
    .graduation-hero .breadcrumb-item a {
        color: #007be0;
        text-decoration: none;
    }
    
    .graduation-hero .breadcrumb-item.active {
        color: white;
    }
    
    .hero-decoration {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100px;
        z-index: 1;
    }

       /* Hero Section */
    .wms-market-hero {
      background: linear-gradient(135deg, #0a2647 0%, #143252 100%);
      color: white;
      padding: 90px 0 70px;
      position: relative;
      overflow: hidden;
    }
    
    .wms-market-hero::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
      border-radius: 50%;
    }
    
    .wms-market-hero::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
      border-radius: 50%;
    }
    
    .wms-hero-subtitle {
      color: rgba(255,255,255,0.75);
      font-size: 0.9rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 15px;
      font-weight: 500;
    }
    
    .wms-hero-description {
      color: rgba(255,255,255,0.85);
      font-size: 1.15rem;
      line-height: 1.8;
      max-width: 800px;
    }
    
    /* Intro Section */
    .wms-intro-section {
      background: #f8fafc;
      border-bottom: 1px solid #e2e8f0;
    }
    
    .wms-intro-text {
      font-size: 1.1rem;
      line-height: 1.9;
      color: #475569;
    }
    
    .wms-intro-highlight {
      color: #c0392b;
      font-weight: 600;
    }
    
    /* Section Header */
    .wms-section-header {
      margin-bottom: 50px;
    }
    
    .wms-section-label {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #c0392b;
      margin-bottom: 12px;
      border-bottom: 2px solid #c0392b;
      padding-bottom: 8px;
    }
    
    .wms-section-title {
      font-size: 2.25rem;
      font-weight: 700;
      color: #0a2647;
      margin-bottom: 15px;
    }
    
    .wms-section-subtitle {
      font-size: 1.1rem;
      color: #64748b;
      max-width: 700px;
    }
    
    /* Market Segment Card */
    .wms-segment-card {
      background: white;
      border: 1px solid #e2e8f0;
      border-radius: 6px;
      padding: 35px 25px;
      height: 100%;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .wms-segment-card:hover {
      border-color: #1e3a5f;
      box-shadow: 0 15px 35px -12px rgba(10, 38, 71, 0.12);
      transform: translateY(-3px);
    }
    
    .wms-segment-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 0;
      background: #c0392b;
      transition: height 0.3s ease;
    }
    
    .wms-segment-card:hover::before {
      height: 100%;
    }
    
    .wms-segment-icon {
      width: 55px;
      height: 55px;
      background: #f8fafc;
      color: #1e3a5f;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 24px;
      transition: all 0.3s ease;
    }
    
    .wms-segment-card:hover .wms-segment-icon {
      background: #1e3a5f;
      color: white;
    }
    
    .wms-segment-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: #0a2647;
      margin-bottom: 12px;
    }
    
    .wms-segment-description {
      color: #64748b;
      font-size: 0.95rem;
      line-height: 1.7;
    }
    
    /* Featured Segment (larger card) */
    .wms-segment-featured {
      background: linear-gradient(135deg, #0a2647 0%, #1e3a5f 100%);
      color: white;
      border: none;
      border-radius: 8px;
      padding: 45px 35px;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    
    .wms-segment-featured::after {
      content: '';
      position: absolute;
      bottom: -40px;
      right: -40px;
      width: 180px;
      height: 180px;
      background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }
    
    .wms-segment-featured .wms-segment-icon {
      background: rgba(255,255,255,0.15);
      color: white;
      width: 65px;
      height: 65px;
      font-size: 28px;
    }
    
    .wms-segment-featured .wms-segment-title {
      color: white;
      font-size: 1.35rem;
    }
    
    .wms-segment-featured .wms-segment-description {
      color: rgba(255,255,255,0.8);
    }
    
    /* CTA Section */
    .wms-cta-section {
      background: #0a2647;
      padding: 70px 0;
      color: white;
      position: relative;
      overflow: hidden;
    }
    
    .wms-cta-section::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
      border-radius: 50%;
    }
    
    .wms-cta-section h2 {
      font-weight: 700;
      margin-bottom: 15px;
    }
    
    .wms-cta-section p {
      color: rgba(255,255,255,0.8);
      font-size: 1.1rem;
      margin-bottom: 0;
    }
    
    .wms-btn-primary {
      background: #c0392b;
      border: 2px solid #c0392b;
      color: white;
      padding: 14px 35px;
      font-weight: 600;
      letter-spacing: 1px;
      border-radius: 4px;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }
    
    .wms-btn-primary:hover {
      background: transparent;
      border-color: white;
      color: white;
    }
    
    .wms-btn-outline {
      background: transparent;
      border: 2px solid white;
      color: white;
      padding: 14px 35px;
      font-weight: 600;
      letter-spacing: 1px;
      border-radius: 4px;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      margin-left: 12px;
    }
    
    .wms-btn-outline:hover {
      background: white;
      color: #0a2647;
    }
    
    /* Stat Counter */
    .wms-stat-item {
      text-align: center;
      padding: 20px;
    }
    
    .wms-stat-value {
      font-size: 2.5rem;
      font-weight: 800;
      color: #c0392b;
      line-height: 1;
    }
    
    .wms-stat-text {
      font-size: 0.9rem;
      color: #64748b;
      margin-top: 8px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    /* Category filter tags */
    .wms-filter-tag {
      display: inline-block;
      padding: 6px 16px;
      border: 1px solid #e2e8f0;
      border-radius: 30px;
      font-size: 0.85rem;
      color: #64748b;
      margin: 4px;
      transition: all 0.2s ease;
      cursor: pointer;
    }
    
    .wms-filter-tag:hover,
    .wms-filter-tag.wms-active {
      background: #0a2647;
      color: white;
      border-color: #0a2647;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .wms-market-hero {
        padding: 60px 0 45px;
      }
      .wms-section-title {
        font-size: 1.75rem;
      }
      .wms-segment-featured {
        padding: 30px 25px;
      }
      .wms-cta-section .wms-btn-outline {
        margin-left: 0;
        margin-top: 10px;
      }
    }