    /* =========================================
           CUSTOM CLASSES STARTING WITH 'th-ab-'
           ========================================= */

        /* --- Main Section --- */
        .th-ab-section {
           padding: 45px 0 40px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow: hidden;
            background: #ffffff; /* Pure white background */
        }

        /* --- Image Wrapper & Shapes --- */
        .th-ab-img-wrapper {
            position: relative;
            padding: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .th-ab-img-wrapper img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 12px;
            position: relative;
            z-index: 2;
            box-shadow: 0 15px 35px rgba(0,0,0,0.06);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            filter: grayscale(15%);
        }

        .th-ab-img-wrapper:hover img {
            transform: translateY(-12px) scale(1.02);
            filter: grayscale(0%);
            box-shadow: 0 25px 50px rgba(0,0,0,0.12);
        }

        /* Geometric Shapes */
        .th-ab-shape {
            position: absolute;
            border: 3px solid #e60000;
            z-index: 1;
            opacity: 0.15;
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .th-ab-shape-1 {
            width: 140px;
            height: 140px;
            top: -25px;
            left: -25px;
            border-radius: 50%;
        }

        .th-ab-shape-2 {
            width: 80px;
            height: 80px;
            bottom: -15px;
            right: -15px;
            transform: rotate(45deg);
        }

        /* Shape Hover Effects */
        .th-ab-img-wrapper:hover .th-ab-shape-1 {
            top: -5px;
            left: -5px;
            opacity: 0.3;
            transform: scale(1.15);
        }
        .th-ab-img-wrapper:hover .th-ab-shape-2 {
            bottom: 5px;
            right: 5px;
            opacity: 0.3;
            transform: rotate(90deg) scale(1.15);
        }

        /* --- Experience Badge --- */
        .th-ab-badge {
            position: absolute;
            bottom: 30px;
            left: -20px;
            background: #e60000;
            color: white;
            padding: 14px 25px 14px 20px;
            border-radius: 0 40px 40px 0;
            font-weight: 700;
            font-size: 1.1rem;
            z-index: 3;
            box-shadow: 0 8px 25px rgba(230, 0, 0, 0.35);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: th-ab-float 3s ease-in-out infinite;
        }

        .th-ab-badge i {
            background: rgba(255,255,255,0.2);
            padding: 8px;
            border-radius: 50%;
            animation: th-ab-glow 2s infinite;
        }

        @keyframes th-ab-float {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-6px) translateX(6px); }
        }

        @keyframes th-ab-glow {
            0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
            70% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
        }

        /* --- Content Wrapper --- */
        .th-ab-content {
            padding: 30px 20px 30px 40px;
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.02);
            border-left: 4px solid #e60000;
            transition: all 0.4s ease;
            height: 100%;
        }

        .th-ab-content:hover {
            transform: translateX(8px);
            box-shadow: 0 15px 45px rgba(0,0,0,0.06);
        }

        /* --- Heading --- */
        .th-ab-head-box {
            position: relative;
            margin-bottom: 10px;
        }

        .th-ab-head-box h2 {
            color: #1a1a1a;
            font-weight: 800;
            font-size: 35px;
            letter-spacing: 1px;
            margin: 0;
        }

        .th-ab-head-box h2 span {
            color: #e60000;
        }

        .th-ab-sub {
            display: block;
            color: #888;
            font-size: 0.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 12px;
            font-weight: 600;
        }

        /* Animated Red Line */
        .th-ab-line {
            width: 60px;
            height: 4px;
            background: #e60000;
            margin-top: 10px;
            border-radius: 4px;
            transition: width 0.5s ease;
        }
        .th-ab-content:hover .th-ab-line {
            width: 120px;
        }

        /* --- Text Animations --- */
        .th-ab-text {
            color: #555;
            line-height: 1.9;
            margin-bottom: 0px;
            font-size: 0.98rem;
            opacity: 0;
            animation: th-ab-fadeUp 0.8s forwards;
        }
        .th-ab-text:nth-child(2) { animation-delay: 0.2s; }
        .th-ab-text:nth-child(3) { animation-delay: 0.4s; }
        .th-ab-text:nth-child(4) { animation-delay: 0.6s; }

        @keyframes th-ab-fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- Highlighted List Items --- */
        .th-ab-point {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 10px;
            padding: 5px 0;
            border-bottom: 1px dashed #f0f0f0;
        }
        .th-ab-point:last-child {
            border-bottom: none;
        }

        .th-ab-point i {
            color: #e60000;
            margin-top: 6px;
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }
        
        .th-ab-point:hover i {
            transform: scale(1.3) rotate(90deg);
        }

        .th-ab-point strong {
            color: #222;
        }

        /* --- Button --- */
        .th-ab-btn {
          background: #e60000;
  color: white;
  padding: 12px 38px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #e60000;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0px;
  box-shadow: 0 5px 15px rgba(230, 0, 0, 0.2);
        }

        .th-ab-btn:hover {
            background: transparent;
            color: #e60000;
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 10px 25px rgba(230, 0, 0, 0.15);
        }
        
        .th-ab-btn i {
            transition: transform 0.3s ease;
        }
        .th-ab-btn:hover i {
            transform: translateX(8px);
        }

        /* --- Responsive --- */
        @media (max-width: 991px) {
            .th-ab-content { 
                padding: 25px; 
                border-left: none; 
                border-top: 4px solid #e60000; 
                margin-top: 20px;
            }
            .th-ab-content:hover { transform: translateY(-5px); }
            .th-ab-badge { left: 15px; border-radius: 40px; }
            .th-ab-shape-1 { left: 10px; }
            .th-ab-shape-2 { right: 10px; }
            .th-ab-img-wrapper { padding: 20px; }
        }
        
        
        
        
        
        
            .th-ps-wrapper {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      background: transparent;
    }

    /* Header with smooth animation */
    .th-ps-header {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
      gap: 1rem;
    }

    .th-ps-header-left h2 {
      font-size: 35px;
      font-weight: 800;
      color: #0c0a1a;
      letter-spacing: -0.5px;
      line-height: 1.2;
      margin: 0;
    }

    .th-ps-header-left h2 span {
      color: #e60000;
      position: relative;
    }

    .th-ps-header-left h2 span::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      width: 100%;
      height: 8px;
      background: rgba(230, 0, 0, 0.15);
      z-index: -1;
    }

    .th-ps-header-left p {
      color: #0c0a1a;
      opacity: 0.6;
      margin: 0.3rem 0 0;
      font-size: 0.95rem;
      font-weight: 500;
    }

    .th-ps-filter-tags {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .th-ps-tag {
      border: 1.5px solid #0c0a1a;
      background: transparent;
      color: #0c0a1a;
      padding: 0.4rem 1.2rem;
      border-radius: 30px;
      font-size: 0.8rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.4s ease;
      text-transform: uppercase;
      letter-spacing: 0.3px;
    }

    .th-ps-tag.active,
    .th-ps-tag:hover {
      background: #e60000;
      border-color: #e60000;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(230, 0, 0, 0.3);
    }

    /* Grid */
    .th-ps-grid {
     
      justify-content: center;
    }

    /* Card design with smooth transitions */
    .th-ps-card {
      position: relative;
      border: 1.5px solid rgba(12, 10, 26, 0.15);
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      background: transparent;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      height: 100%;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
      visibility: hidden;
      will-change: transform, opacity;
    }

    .th-ps-card.wow.animated {
      visibility: visible;
    }

    .th-ps-card:hover {
      border-color: #e60000;
      box-shadow: 0 25px 50px rgba(230, 0, 0, 0.2), 0 0 0 2px rgba(230,0,0,0.15);
      transform: translateY(-12px) scale(1.02);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Image section */
    .th-ps-img-wrap {
      width: 100%;
      aspect-ratio: 370 / 248;
      overflow: hidden;
      position: relative;
      border-bottom: 2px solid transparent;
      transition: border-color 0.5s ease;
      background: transparent;
    }

    .th-ps-card:hover .th-ps-img-wrap {
      border-bottom-color: #e60000;
    }

    .th-ps-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
      filter: grayscale(0.1);
    }

    .th-ps-card:hover .th-ps-img {
      transform: scale(1.08);
      filter: grayscale(0);
    }

    /* Floating icon badge */
    .th-ps-icon-badge {
      position: absolute;
      bottom: 15px;
      left: 15px;
      width: 42px;
      height: 42px;
      background: #e60000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1rem;
      box-shadow: 0 4px 15px rgba(230,0,0,0.5);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 2;
    }

    .th-ps-card:hover .th-ps-icon-badge {
      background: #0c0a1a;
      transform: translateY(-8px) scale(1.15);
      box-shadow: 0 10px 25px rgba(12,10,26,0.6);
    }

    /* Content area */
    .th-ps-content {
      padding: 1rem 1.3rem 1rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      background: transparent;
    }

    .th-ps-meta {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.7rem;
      transition: all 0.4s ease;
    }

    .th-ps-serial {
      font-size: 0.7rem;
      font-weight: 700;
      color: #e60000;
      letter-spacing: 0.5px;
      border: 1px solid #e60000;
      padding: 0.25rem 0.8rem;
      border-radius: 20px;
      transition: all 0.4s ease;
    }

    .th-ps-card:hover .th-ps-serial {
      background: #e60000;
      color: white;
    }

    .th-ps-rating {
      font-size: 0.75rem;
      color: #0c0a1a;
      display: flex;
      align-items: center;
      gap: 0.2rem;
    }

    .th-ps-rating i {
      color: #e60000;
      font-size: 0.65rem;
      transition: transform 0.4s ease;
    }

    .th-ps-card:hover .th-ps-rating i {
      transform: scale(1.2);
    }

    .th-ps-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #0c0a1a;
      margin: 0.3rem 0 0.5rem;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      transition: color 0.4s ease;
      line-height: 1.3;
    }

    .th-ps-card:hover .th-ps-title {
      color: #e60000;
    }

    .th-ps-desc {
      font-size: 0.85rem;
      color: #0c0a1a;
      opacity: 0.6;
      margin-bottom: 0.5rem;
      line-height: 1.5;
      font-weight: 500;
      transition: opacity 0.4s ease;
    }

    .th-ps-card:hover .th-ps-desc {
      opacity: 0.85;
    }

    /* Spec bar with smooth transition */
    .th-ps-spec {
      width: 100%;
      margin-bottom: 1.3rem;
    }

    .th-ps-spec-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.5rem;
      font-size: 0.7rem;
      font-weight: 600;
      color: #0c0a1a;
    }

    .th-ps-bar {
      width: 100%;
      height: 5px;
      background: rgba(12,10,26,0.08);
      border-radius: 5px;
      overflow: hidden;
      margin-top: 0.2rem;
      transition: all 0.5s ease;
    }

    .th-ps-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, #e60000, #ff3333);
      border-radius: 5px;
      transition: width 1s cubic-bezier(0.4, 0, 0.2, 1), background 0.5s ease;
    }

    .th-ps-card:hover .th-ps-bar-fill {
      background: linear-gradient(90deg, #0c0a1a, #1a1530);
    }

    /* Bottom row */
    .th-ps-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
     
    }

    .th-ps-price {
      font-weight: 700;
      font-size: 1.1rem;
      color: #0c0a1a;
      transition: color 0.4s ease;
    }

    .th-ps-card:hover .th-ps-price {
      color: #e60000;
    }

    .th-ps-arrow-btn {
      width: 40px;
      height: 40px;
      border: 2px solid #0c0a1a;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0c0a1a;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      background: transparent;
    }

    .th-ps-card:hover .th-ps-arrow-btn {
      background: #e60000;
      border-color: #e60000;
      color: white;
      transform: rotate(-45deg) scale(1.1);
      box-shadow: 0 5px 20px rgba(230, 0, 0, 0.4);
    }

    /* WOW.js smooth animation overrides */
    .wow {
      visibility: hidden;
    }

    /* Custom smooth animation classes */
    .animate__slow {
      animation-duration: 1.2s !important;
    }

    .animate__slower {
      animation-duration: 1.5s !important;
    }

    .animate__slowest {
      animation-duration: 1.8s !important;
    }

    /* Smooth staggered delays */
    .delay-smooth-1 { animation-delay: 0.15s !important; }
    .delay-smooth-2 { animation-delay: 0.3s !important; }
    .delay-smooth-3 { animation-delay: 0.45s !important; }
    .delay-smooth-4 { animation-delay: 0.6s !important; }
    .delay-smooth-5 { animation-delay: 0.75s !important; }
    .delay-smooth-6 { animation-delay: 0.9s !important; }

    /* Smooth scroll behavior */
    html {
      scroll-behavior: smooth;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .th-ps-header {
        flex-direction: column;
        align-items: flex-start;
      }
      .th-ps-title {
        font-size: 1.1rem;
      }
      .th-ps-content {
        padding: 1.2rem 1rem;
      }
      .animate__slow,
      .animate__slower,
      .animate__slowest {
        animation-duration: 1s !important;
      }
    }

    @media (max-width: 576px) {
      .th-ps-card {
        max-width: 360px;
        margin: 0 auto;
      }
          /* Header with smooth animation */
    .th-ps-header {
     
      margin-bottom: 0.8rem;
    }
      
    }

    a.th-ps-card, a.th-ps-card:hover {
      text-decoration: none;
      color: inherit;
    }
    
    
    
       :root {
            --th-red: #e60000;
            --th-dark: #0c0a1a;
            --th-red-light: #ff1a1a;
            --th-red-glow: rgba(230, 0, 0, 0.4);
            --th-card-bg: #ffffff;
            --th-text-primary: #0c0a1a;
            --th-text-muted: #5a556e;
            --th-border: rgba(12, 10, 26, 0.08);
        }

        /* ============ SECTION WRAPPER (transparent) ============ */
        .th-cl-section {
            background: transparent;
            padding: 40px 0;
            position: relative;
            overflow: visible;
        }

        /* ── SECTION HEADER ── */
        .th-cl-header {
            text-align: center;
            margin-bottom: 30px;
        }
        .th-cl-header .th-cl-subtitle {
            display: inline-block;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--th-red);
            font-weight: 600;
           
            position: relative;
            padding: 0 20px;
        }
        .th-cl-header .th-cl-subtitle::before,
        .th-cl-header .th-cl-subtitle::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 25px;
            height: 1.5px;
            background: var(--th-red);
            opacity: 0.7;
        }
        .th-cl-header .th-cl-subtitle::before {
            left: -15px;
        }
        .th-cl-header .th-cl-subtitle::after {
            right: -15px;
        }
        .th-cl-header .th-cl-title {
            font-size: 35px;
            font-weight: 700;
            color: var(--th-dark);
            margin: 0;
            letter-spacing: -0.5px;
        }
        .th-cl-header .th-cl-title span {
            color: var(--th-red);
            position: relative;
        }
        .th-cl-header .th-cl-divider {
            width: 60px;
            height: 3px;
            background: var(--th-red);
            margin: 16px auto 0;
            border-radius: 10px;
            position: relative;
        }
        .th-cl-header .th-cl-divider::after {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--th-red);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 16px var(--th-red-glow);
            animation: th-cl-pulse-dot 2s ease-in-out infinite;
        }
        @keyframes th-cl-pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 10px var(--th-red-glow);
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                box-shadow: 0 0 24px rgba(230, 0, 0, 0.7);
                transform: translate(-50%, -50%) scale(1.5);
            }
        }

        /* ── SLIDER CONTAINER ── */
        .th-cl-slider-wrapper {
            position: relative;
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 50px;
        }
        .th-cl-slider-viewport {
            overflow: hidden;
            border-radius: 16px;
            position: relative;
            -webkit-mask-image: linear-gradient(to right,
                    transparent 0%,
                    rgba(0, 0, 0, 0.2) 5%,
                    rgba(0, 0, 0, 1) 12%,
                    rgba(0, 0, 0, 1) 88%,
                    rgba(0, 0, 0, 0.2) 95%,
                    transparent 100%);
            mask-image: linear-gradient(to right,
                    transparent 0%,
                    rgba(0, 0, 0, 0.2) 5%,
                    rgba(0, 0, 0, 1) 12%,
                    rgba(0, 0, 0, 1) 88%,
                    rgba(0, 0, 0, 0.2) 95%,
                    transparent 100%);
        }
        .th-cl-slider-track {
            display: flex;
            gap: 20px;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }
        .th-cl-slider-track.th-cl-dragging {
            transition: none;
            cursor: grabbing;
        }
        .th-cl-slider-track.th-cl-smooth {
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* ── CLIENT CARD ── */
        .th-cl-card {
         flex: 0 0 calc(20% - 0px);
  min-width: 140px;
            background: var(--th-card-bg);
            border: 1px solid var(--th-border);
            border-radius: 14px;
            padding: 28px 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition:
                transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease,
                border-color 0.4s ease,
                background 0.4s ease;
            user-select: none;
            -webkit-user-select: none;
        }
        .th-cl-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--th-red);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border-radius: 0 0 6px 6px;
        }
        .th-cl-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 50%,
                    rgba(230, 0, 0, 0.05) 0%,
                    transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        .th-cl-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow:
                0 16px 32px rgba(12, 10, 26, 0.08),
                0 0 0 1px rgba(230, 0, 0, 0.25),
                0 0 24px rgba(230, 0, 0, 0.08);
            border-color: rgba(230, 0, 0, 0.35);
            background: #fff;
        }
        .th-cl-card:hover::before {
            transform: scaleX(1);
        }
        .th-cl-card:hover::after {
            opacity: 1;
        }
        .th-cl-card:hover .th-cl-logo-img {
            transform: scale(1.08);
            filter: drop-shadow(0 0 10px rgba(230, 0, 0, 0.35));
        }
        .th-cl-card:hover .th-cl-logo-name {
            color: var(--th-red);
            letter-spacing: 0.4px;
        }

        /* ── LOGO IMAGE ── */
        .th-cl-logo-img {
            width: 140px;
            height: 80px;
            border-radius: 12px;
            object-fit: contain;      /* keeps image proportions inside the box */
            background: rgba(12, 10, 26, 0.03);
            transition:
                transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.4s ease;
            padding: 4px;             /* slight padding so image doesn't touch edges */
        }

        /* ── LOGO NAME ── */
        .th-cl-logo-name {
            font-size: 0.85rem;
            font-weight: 500;
            color: #3a3548;
            text-align: center;
            transition: color 0.4s ease, letter-spacing 0.4s ease;
            letter-spacing: 0;
            display : none;
        }

        /* ── NAVIGATION ARROWS ── */
        .th-cl-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #ffffff;
            border: 1px solid rgba(12, 10, 26, 0.12);
            color: #4a4560;
            cursor: pointer;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
            transition:
                background 0.3s ease,
                border-color 0.3s ease,
                color 0.3s ease,
                box-shadow 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }
        .th-cl-arrow:hover {
            background: var(--th-red);
            border-color: var(--th-red);
            color: #fff;
            box-shadow: 0 8px 20px rgba(230, 0, 0, 0.25);
        }
        .th-cl-arrow:active {
            transform: translateY(-50%) scale(0.92);
        }
        .th-cl-arrow-prev {
            left: 0;
        }
        .th-cl-arrow-next {
            right: 0;
        }

        /* ── DOTS INDICATOR ── */
        .th-cl-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 32px;
        }
        .th-cl-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(12, 10, 26, 0.15);
            border: none;
            cursor: pointer;
            transition:
                background 0.3s ease,
                box-shadow 0.3s ease,
                transform 0.3s ease;
            padding: 0;
        }
        .th-cl-dot.th-cl-active {
            background: var(--th-red);
            box-shadow: 0 0 12px var(--th-red-glow);
            transform: scale(1.3);
        }
        .th-cl-dot:hover {
            background: rgba(230, 0, 0, 0.5);
            box-shadow: 0 0 6px rgba(230, 0, 0, 0.3);
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 992px) {
            .th-cl-card {
                flex: 0 0 calc(25% - 15px);
                min-width: 120px;
                padding: 22px 14px;
                border-radius: 12px;
            }
            .th-cl-logo-img {
                width: 46px;
                height: 46px;
                border-radius: 10px;
            }
            .th-cl-logo-name {
                font-size: 0.78rem;
            }
            .th-cl-slider-wrapper {
                padding: 0 44px;
            }
            .th-cl-slider-track {
                gap: 16px;
            }
            .th-cl-section {
                padding: 60px 0;
            }
        }
        @media (max-width: 768px) {
            .th-cl-card {
                flex: 0 0 calc(33.333% - 12px);
                min-width: 100px;
                padding: 18px 10px;
                border-radius: 10px;
                gap: 8px;
            }
            .th-cl-logo-img {
                width: 40px;
                height: 40px;
                border-radius: 8px;
            }
            .th-cl-logo-name {
                font-size: 0.7rem;
            }
            .th-cl-slider-wrapper {
                padding: 0 38px;
            }
            .th-cl-slider-track {
                gap: 12px;
            }
            .th-cl-arrow {
                width: 34px;
                height: 34px;
                font-size: 0.9rem;
            }
            .th-cl-section {
                padding: 45px 0;
            }
            .th-cl-header {
                margin-bottom: 32px;
            }
        }
        @media (max-width: 480px) {
            .th-cl-card {
                flex: 0 0 calc(50% - 8px);
                min-width: 80px;
                padding: 14px 8px;
                border-radius: 8px;
                gap: 6px;
            }
            .th-cl-logo-img {
                width: 34px;
                height: 34px;
                border-radius: 7px;
            }
            .th-cl-logo-name {
                font-size: 0.65rem;
            }
            .th-cl-slider-wrapper {
                padding: 0 32px;
            }
            .th-cl-slider-track {
                gap: 10px;
            }
            .th-cl-arrow {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
            }
            .th-cl-slider-viewport {
                border-radius: 10px;
                -webkit-mask-image: linear-gradient(to right,
                        transparent 0%,
                        rgba(0, 0, 0, 0.15) 6%,
                        rgba(0, 0, 0, 1) 16%,
                        rgba(0, 0, 0, 1) 84%,
                        rgba(0, 0, 0, 0.15) 94%,
                        transparent 100%);
                mask-image: linear-gradient(to right,
                        transparent 0%,
                        rgba(0, 0, 0, 0.15) 6%,
                        rgba(0, 0, 0, 1) 16%,
                        rgba(0, 0, 0, 1) 84%,
                        rgba(0, 0, 0, 0.15) 94%,
                        transparent 100%);
            }
            .th-cl-section {
                padding: 22px 0;
            }
            .th-cl-header .th-cl-title {
                font-size: 1.3rem;
            }
            .th-cl-header .th-cl-subtitle {
                font-size: 0.7rem;
                letter-spacing: 2px;
            }
            .th-cl-dots {
                margin-top: 22px;
                gap: 7px;
            }
            .th-cl-dot {
                width: 8px;
                height: 8px;
            }
        }
        
        
        /* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .th-ab-section {
  padding: 30px 0 5px;
    }
    .mb-4{
        margin-bottom : 0px !important;
    }
    .th-ab-head-box h2 {
  color: #1a1a1a;
  font-weight: 800;
  font-size: 26px;
    }
    .th-ps-header-left h2 {
  font-size: 25px;
    }
    .th-cl-header .th-cl-subtitle {

  margin-bottom: 0px;
    }
     .th-cl-header {
    margin-bottom: 20px;
  }
  .th-cl-header .th-cl-divider {

  margin: 12px auto 0;
  }
  .dd{
       margin-bottom: 20px;
  }
  .th-ab-badge {

  padding: 5px 25px 5px 20px ;

  font-size: 0.8rem;
  }
    
}
  