  /* Main Section */
    .tb-site-sitemap-section {
        position: relative;
       padding: 35px 0 0px;
       
        color: #fff;
        overflow: hidden;
    }

   

    .tb-site-sitemap-section .container {
        position: relative;
        z-index: 2;
    }

    /* ================= HEADER ================= */

    .tb-site-header {
        margin-bottom: 60px;
        animation: tbSiteFadeUp 0.8s ease both;
    }

    .tb-site-subtitle {
        display: inline-block;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #aaa;
        margin-bottom: 12px;
    }

    .tb-site-title {
        margin: 0;
        font-size: 48px;
        font-weight: 700;
        color: #fff;
        letter-spacing: -1px;
    }

    .tb-site-title-line {
        width: 65px;
        height: 3px;
        background: #fff;
        margin: 18px auto 0;
        border-radius: 50px;
    }


    /* ================= MAIN PAGES ================= */

    .tb-site-main-pages {
        margin-bottom: 50px;
    }

    .tb-site-main-card {
        position: relative;
        display: flex;
        align-items: center;
        gap: 15px;
        min-height: 110px;
        padding: 25px;
        text-decoration: none;
        color: #fff;
        background: #0a0a0a;
        border: 1px solid #222;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.4s ease;
    }

    .tb-site-main-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 0;
        background: #fff;
        transition: height 0.4s ease;
    }

    .tb-site-main-card:hover {
        color: #fff;
        transform: translateY(-8px);
        border-color: #555;
        background: #111;
        box-shadow: 0 15px 35px rgba(255, 255, 255, 0.08);
    }

    .tb-site-main-card:hover::before {
        height: 100%;
    }

    .tb-site-icon {
        flex-shrink: 0;
        width: 52px;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        color: #000;
        border-radius: 50%;
        font-size: 19px;
        transition: all 0.4s ease;
    }

    .tb-site-main-card:hover .tb-site-icon {
        transform: rotate(10deg) scale(1.1);
    }

    .tb-site-main-card h4 {
        margin: 0 0 5px;
        font-size: 18px;
        font-weight: 600;
    }

    .tb-site-main-card p {
        margin: 0;
        color: #888;
        font-size: 13px;
    }

    .tb-site-arrow {
        margin-left: auto;
        color: #777;
        transition: all 0.4s ease;
    }

    .tb-site-main-card:hover .tb-site-arrow {
        color: #fff;
        transform: translateX(6px);
    }


    /* ================= CATEGORY TITLE ================= */

    .tb-site-category-section {
        margin-bottom: 55px;
    }

    .tb-site-category-title {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 30px;
    }

    .tb-site-category-icon {
        width: 58px;
        height: 58px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #333;
        border-radius: 50%;
        color: #fff;
        font-size: 20px;
    }

    .tb-site-small-title {
        display: block;
        color: #777;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 4px;
    }

    .tb-site-category-title h3 {
        margin: 0;
        font-size: 32px;
        font-weight: 600;
        color: #fff;
    }


    /* ================= SERVICES ================= */

    .tb-site-service-card {
        position: relative;
        display: flex;
        align-items: center;
        gap: 14px;
        min-height: 80px;
        padding: 18px 20px;
        background: #080808;
        border: 1px solid #222;
        border-radius: 10px;
        color: #fff;
        text-decoration: none;
        overflow: hidden;
        transition: all 0.4s ease;
    }

    .tb-site-service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            90deg,
            rgba(255,255,255,0.06),
            transparent
        );
        transform: translateX(-100%);
        transition: transform 0.5s ease;
    }

    .tb-site-service-card:hover {
        color: #fff;
        border-color: #555;
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(255,255,255,0.06);
    }

    .tb-site-service-card:hover::before {
        transform: translateX(0);
    }

    .tb-site-service-card > i:not(.tb-site-service-arrow) {
        position: relative;
        z-index: 2;
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        color: #000;
        border-radius: 8px;
        transition: all 0.4s ease;
    }

    .tb-site-service-card:hover > i:not(.tb-site-service-arrow) {
        transform: rotate(-8deg) scale(1.08);
    }

    .tb-site-service-card > span:not(.tb-site-service-number) {
        position: relative;
        z-index: 2;
        font-size: 14px;
        font-weight: 500;
    }

    .tb-site-service-number {
        position: absolute;
        top: 7px;
        right: 12px;
        font-size: 10px;
        color: #444;
        font-weight: 600;
    }

    .tb-site-service-arrow {
        position: relative;
        z-index: 2;
        margin-left: auto;
        color: #555;
        font-size: 12px;
        transition: all 0.3s ease;
    }

    .tb-site-service-card:hover .tb-site-service-arrow {
        color: #fff;
        transform: translateX(5px);
    }


    /* ================= LOCATIONS ================= */

    .tb-site-location-card {
        position: relative;
        display: flex;
        align-items: center;
        gap: 15px;
        min-height: 85px;
        padding: 18px 20px;
        background: #080808;
        border: 1px solid #222;
        border-radius: 10px;
        color: #fff;
        text-decoration: none;
        overflow: hidden;
        transition: all 0.4s ease;
    }

    .tb-site-location-card::after {
        content: "";
        position: absolute;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #fff;
        top: 50%;
        left: -10px;
        transform: translateY(-50%);
        transition: all 0.4s ease;
    }

    .tb-site-location-card:hover {
        color: #fff;
        background: #101010;
        border-color: #444;
        transform: translateX(5px);
        box-shadow: 0 10px 25px rgba(255,255,255,0.05);
    }

    .tb-site-location-card:hover::after {
        left: 5px;
    }

    .tb-site-location-card > span {
        flex-shrink: 0;
        font-size: 11px;
        color: #666;
        font-weight: 600;
        min-width: 22px;
    }

    .tb-site-location-card strong {
        flex: 1;
        font-size: 14px;
        line-height: 1.5;
        font-weight: 500;
    }

    .tb-site-location-card > i {
        flex-shrink: 0;
        color: #555;
        font-size: 12px;
        transition: all 0.3s ease;
    }

    .tb-site-location-card:hover > i {
        color: #fff;
        transform: translateX(5px);
    }


    /* ================= ANIMATION ================= */

    @keyframes tbSiteFadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* ================= TABLET ================= */

    @media (max-width: 991px) {

        .tb-site-sitemap-section {
            padding: 80px 0;
        }

        .tb-site-title {
            font-size: 42px;
        }

        .tb-site-main-pages {
            margin-bottom: 65px;
        }

        .tb-site-category-section {
            margin-bottom: 60px;
        }

        .tb-site-category-title h3 {
            font-size: 28px;
        }

    }


    /* ================= MOBILE ================= */

    @media (max-width: 767px) {

        .tb-site-sitemap-section {
            padding: 60px 0;
        }

        .tb-site-header {
            margin-bottom: 40px;
        }

        .tb-site-title {
            font-size: 36px;
        }

        .tb-site-subtitle {
            font-size: 11px;
            letter-spacing: 2px;
        }

        .tb-site-main-pages {
            margin-bottom: 55px;
        }

        .tb-site-main-card {
            min-height: 95px;
            padding: 20px;
        }

        .tb-site-icon {
            width: 46px;
            height: 46px;
            font-size: 16px;
        }

        .tb-site-main-card h4 {
            font-size: 16px;
        }

        .tb-site-category-section {
            margin-bottom: 55px;
        }

        .tb-site-category-title {
            margin-bottom: 22px;
            gap: 12px;
        }

        .tb-site-category-icon {
            width: 48px;
            height: 48px;
            font-size: 17px;
        }

        .tb-site-category-title h3 {
            font-size: 25px;
        }

        .tb-site-small-title {
            font-size: 10px;
            letter-spacing: 1.5px;
        }

        .tb-site-service-card {
            min-height: 75px;
            padding: 16px;
        }

        .tb-site-service-card > span:not(.tb-site-service-number) {
            font-size: 13px;
        }

        .tb-site-location-card {
            min-height: 78px;
            padding: 15px;
            gap: 10px;
        }

        .tb-site-location-card strong {
            font-size: 13px;
        }

    }


    /* ================= SMALL MOBILE ================= */

    @media (max-width: 575px) {

        .tb-site-sitemap-section {
            padding: 35px 0 10px;
        }
          .tb-site-main-pages {
    margin-bottom: 40px;
  }
   .tb-site-category-section {
    margin-bottom: 40px;
  }

        .tb-site-title {
            font-size: 32px;
        }

        .tb-site-main-card {
            padding: 18px;
        }

        .tb-site-main-card p {
            font-size: 12px;
        }

        .tb-site-service-card {
            min-height: 70px;
        }

        .tb-site-service-card > i:not(.tb-site-service-arrow) {
            width: 34px;
            height: 34px;
            font-size: 13px;
        }

        .tb-site-location-card {
            min-height: 75px;
        }

    }
    
    
@media only screen and (min-width: 1200px) and (max-width: 1319px) {
    
    .tb-site-icon {

  width: 40px;
  height: 40px;

  font-size: 18px;
  
    }
    .tb-site-main-card p {

  font-size: 12px;
}
}

body.light .tb-site-category-title h3{
    color :#000;
}

body.light .tb-site-category-icon{
     color :#000;
}