/* ----- GLOBAL & RESET (only section context) ----- */
    .sitemap-section {
      background: linear-gradient(135deg, rgba(255, 245, 245, 0.96) 0%, rgba(21, 58, 132, 0.06) 100%);
      position: relative;
     overflow:hidden;

      padding: 3rem 0 4rem;
      font-family: 'Inter', system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    }

    /* subtle floating shapes animation */
    .sitemap-section::before {
      content: '';
      position: absolute;
      top: -50px;
      left: -50px;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(255, 75, 75, 0.2), rgba(21, 58, 132, 0.05));
      border-radius: 50%;
      z-index: 0;
      animation: floatShape 18s infinite alternate ease-in-out;
    }
    
    @media only screen and (max-width: 576px) {
       .sitemap-section{
           padding:2rem 0 2rem;
       } 
       .row > *{
           margin-top:0;
       }
       .sitemap-title{
           font-size: 34px;
           margin-bottom : 20px !important;
           
           
       }
         .sitemap-section{
           
             overflow:hidden;
         }
         
    }

    .sitemap-section::after {
      content: '';
      position: absolute;
      bottom: -80px;
      right: -40px;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, rgba(21, 58, 132, 0.15), rgba(255, 75, 75, 0.05));
      border-radius: 50%;
      z-index: 0;
      animation: floatShape2 22s infinite alternate ease-in-out;
    }

    @keyframes floatShape {
      0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
      }

      100% {
        transform: translate(40px, 40px) scale(1.2);
        opacity: 0.7;
      }
    }

    @keyframes floatShape2 {
      0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
      }

      100% {
        transform: translate(-30px, -30px) scale(1.25);
        opacity: 0.6;
      }
    }

    /* main container relative */
    .sitemap-container {
      position: relative;
      z-index: 2;
    }

    /* title with animated underline */
    .sitemap-title {
      font-size: 3.2rem;
      font-weight: 800;
      background: linear-gradient(135deg, #dc3545, #153a84);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: inline-block;
     
      letter-spacing: -0.5px;
    }

    .title-wrapper {
      position: relative;
      display: inline-block;
    }

    .animated-underline {
      position: relative;
    }

    .animated-underline::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 0%;
      height: 4px;
      background: linear-gradient(90deg, #dc3545, #153a84);
      transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border-radius: 4px;
    }

    .title-wrapper:hover .animated-underline::after {
      width: 100%;
    }

    /* card / node styling (glassmorphism + soft shadow) */
    .sitemap-card {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(6px);
      border-radius: 1.5rem;
      border: 1px solid rgba(255, 255, 255, 0.5);
      transition: all 0.3s ease;
      box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.08);
      cursor: pointer;
      margin-bottom: 1rem;
      overflow: hidden;
    }

    .sitemap-card:hover {
      transform: scale(1.02);
      background: rgba(255, 255, 255, 0.96);
      border-color: #dc3545;
      box-shadow: 0 20px 35px -12px rgba(220, 53, 69, 0.25), 0 4px 12px rgba(21, 58, 132, 0.1);
    }

    /* main category header */
    .main-cat {
      padding: 1rem 1.4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-weight: 700;
      font-size: 1.25rem;
      color: #153a84;
      border-left: 5px solid #dc3545;
      background: rgba(21, 58, 132, 0.02);
    }

    .main-cat i {
      font-size: 1.4rem;
      color: #dc3545;
      transition: transform 0.2s;
    }

    .main-cat .toggle-icon {
      transition: transform 0.3s ease;
    }

    /* subpage list styling */
    .submenu-list {
      padding: 0.5rem 1rem 1rem 2rem;
      background: rgba(255, 255, 255, 0.5);
      border-top: 1px solid rgba(0, 0, 0, 0.03);
    }

    .sub-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0.7rem 0.5rem;
      margin: 0.2rem 0;
      border-radius: 1rem;
      transition: all 0.2s;
      color: #1f2a44;
      text-decoration: none;
      font-weight: 500;
      position: relative;
    }

    .sub-item i {
      width: 28px;
      color: #dc3545;
      font-size: 1rem;
    }

    .sub-item span {
      flex: 1;
      font-size: 0.95rem;
    }

    /* link hover underline left-to-right effect */
    .sub-item {
      position: relative;
      display: inline-flex;
      width: 100%;
      text-decoration: none;
    }

    .sub-item::after {
      content: '';
      position: absolute;
      bottom: 6px;
      left: 40px;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #dc3545, #153a84);
      transition: width 0.35s ease;
    }

    .sub-item:hover::after {
      width: calc(100% - 50px);
    }

    .sub-item:hover {
      background: rgba(220, 53, 69, 0.05);
      transform: translateX(5px);
      color: #dc3545;
    }

    /* connecting lines (breadcrumb visual) */
    @media (min-width: 768px) {
      .submenu-list {
        position: relative;
        margin-left: 0.5rem;
        border-left: 2px dashed rgba(220, 53, 69, 0.4);
      }

      .sub-item {
        margin-left: 0.5rem;
      }
    }

    /* collapse icon rotation */
    .collapse-icon {
      transition: transform 0.3s ease;
    }

    /* touch friendly */
    .main-cat {
      cursor: pointer;
      user-select: none;
    }

    /* product grouping - compact and clean like services */
    .product-group-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.6rem 0.8rem;
      margin: 0.5rem 0 0.2rem 0;
      background: rgba(21, 58, 132, 0.05);
      border-radius: 1rem;
      cursor: pointer;
      transition: all 0.2s;
      font-weight: 600;
      color: #153a84;
    }

    .product-group-header:hover {
      background: rgba(220, 53, 69, 0.08);
    }

    .product-group-header i:first-child {
      margin-right: 10px;
      color: #dc3545;
    }

    .product-group-header span {
      flex: 1;
    }

    .product-badge-container {
      padding: 0.2rem 0 0.5rem 1rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }

    .product-badge {
      background: white;
      border-radius: 2rem;
      padding: 0.35rem 1rem;
      font-size: 0.78rem;
      font-weight: 500;
      color: #153a84;
      transition: all 0.2s;
      border: 1px solid #e2e8f0;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .product-badge i {
      font-size: 0.7rem;
      color: #dc3545;
    }

    .product-badge:hover {
      background: #dc3545;
      color: white;
      transform: translateY(-2px);
      border-color: #dc3545;
      box-shadow: 0 5px 12px rgba(220, 53, 69, 0.2);
    }

    .product-badge:hover i {
      color: white;
    }

    /* scrollable fix for many items but with collapsed groups it's clean */
    .compact-list {
      max-height: none;
    }

    /* responsive spacing */
    @media (max-width: 576px) {
      .sitemap-title {
        font-size: 2.2rem;
      }

      .main-cat {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
      }

      .submenu-list {
        padding: 0.5rem 0.8rem 1rem 1rem;
      }

      .product-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
      }
    }

    /* accessibility */
    a,
    .sub-item,
    .main-cat,
    .product-group-header {
      outline: none;
    }

    .main-cat:focus-visible,
    .sub-item:focus-visible,
    .product-group-header:focus-visible {
      outline: 2px solid #dc3545;
      border-radius: 1rem;
    }