
        /* 
         * Scoped CSS for .tringer 
         * Prevents conflicts with global styles 
         */
        .tringer {
            font-family: 'Inter', sans-serif;
            background-color: #f8f9fa;
            padding: 30px 0;
            overflow: hidden; /* Prevent horizontal scroll from animations */
            color: #000;
        }

        /* Typography */
        .tringer .section-title {
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
            font-size: clamp(1.75rem, 4vw, 2.5rem);
        }

        .tringer .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #004784;
            margin-top: 10px;
            border-radius: 2px;
        }

        .tringer .section-desc {
            color: #6c757d;
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 800px;
            margin-bottom: 3rem;
        }

        /* Feature Boxes */
        .tringer .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-bottom: 15px;
        }

        .tringer .feature-item {
            background: #ffffff;
            border: 1px solid #e9ecef;
            border-radius: 12px;
            padding: 10px 24px;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
            opacity: 0; /* For animation */
            transform: translateY(20px); /* For animation */
            gap: 20px;
        }

        .tringer .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            border-color: #dee2e6;
        }

        .tringer .feature-icon {
            width: 50px;
            height: 50px;
            background: #0047842b;
            color: #004784;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 0px;
            transition: background 0.3s ease;
        }

        .tringer .feature-item:hover .feature-icon {
            background: #004784;
            color: #fff;
        }

        .tringer .feature-title {
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 10px;
            color: #212529;
        }

        .tringer .feature-text {
            font-size: 0.95rem;
            color: #6c757d;
            line-height: 1.5;
        }

        /* Supply Locations Area */
        .tringer .supply-section {
            background: #ffffff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
            border: 1px solid #f0f0f0;
        }

        .tringer .locations-intro {
            margin-bottom: 30px;
        }

        .tringer .locations-intro h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* Location Tags/Chips */
        .tringer .locations-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .tringer .location-tag {
            display: inline-flex;
            align-items: center;
            padding: 5px 20px;
            background: #00478424;
  border-color: #00478478;
  color: #004784;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;

            cursor: default;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .tringer .location-tag i {
            margin-right: 8px;
            font-size: 0.8rem;
            color: #004784;
            transition: color 0.2s ease;
        }

        /* Hover Effect for Standard Tags */
        .tringer .location-tag:hover {
            background: #004784;
            border-color: #adb5bd;
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transform: translateY(-1px);
        }

        .tringer .location-tag:hover i {
            color: #ffffff;
        }

        /* Primary Locations (Hyderabad, Telangana, AP) */
        .tringer .location-tag.primary {
            background: #00478424;
  border-color: #00478478;
  color: #004784;
        }

        .tringer .location-tag.primary i {
            color: #004784;
        }

        .tringer .location-tag.primary:hover {
            background: #004784;
            color: #fff;
            border-color: #004784;
        }
        
        .tringer .location-tag.primary:hover i {
            color: #fff;
        }

        /* Featured Location (All Over India) */
        .tringer .location-tag.featured {
            background: #212529;
            border-color: #212529;
            color: #ffffff;
            font-weight: 600;
            padding: 10px 24px;
        }

        .tringer .location-tag.featured i {
            color: #ffc107;
        }

        .tringer .location-tag.featured:hover {
            background: #000;
            box-shadow: 0 6px 15px rgba(33, 37, 41, 0.3);
            transform: translateY(-2px);
        }

        /* Show More/Less Button */
        .tringer .toggle-btn-container {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .tringer .btn-toggle {
            background: transparent;
            border: none;
            color: #0d6efd;
            font-weight: 600;
            cursor: pointer;
            padding: 8px 16px;
            border-radius: 4px;
            transition: background 0.2s;
            display: none; /* Hidden by default on desktop */
        }

        .tringer .btn-toggle:hover {
            background: rgba(13, 110, 253, 0.1);
        }

        /* Animation Classes */
        .tringer .fade-up-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .tringer {
                padding: 60px 0;
            }
            
            .tringer .supply-section {
                padding: 30px;
            }
        }

        @media (max-width: 767px) {
            .tringer .section-title {
                font-size: 1.75rem;
            }

            .tringer .supply-section {
                padding: 20px;
            }

            .tringer .location-tag {
                font-size: 0.85rem;
                padding: 8px 16px;
            }

            /* Mobile Toggle Logic Styles */
            .tringer .locations-wrap.mobile-collapsed .location-tag:nth-child(n+7) {
                display: none;
            }
            
            .tringer .toggle-btn-container {
                display: flex;
            }
        }

        /* Reduced Motion Preference */
        @media (prefers-reduced-motion: reduce) {
            .tringer .feature-item {
                transition: none;
                opacity: 1;
                transform: none;
            }
            .tringer .location-tag {
                transition: none;
            }
        }


