
        /* ===== CAROUSEL STYLES ===== */
        .dcl-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 50px;
        }
        
        .dcl-carousel {
            overflow: hidden;
            position: relative;
            border-radius: 20px;
        }
        
        .dcl-carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .dcl-carousel-slide {
            flex: 0 0 calc(100% / 5);
            padding: 15px;
            box-sizing: border-box;
        }
        
        .dcl-carousel-slide .dcl-card {
            height: 100%;
            margin: 0;
            animation: none;
        }
        
        .dcl-carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            border: 2px solid #2CB5AD;
            color: #2CB5AD;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            transition: all 0.3s;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .dcl-carousel-button:hover {
            background: #2CB5AD;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }
        
        .dcl-carousel-button.prev {
            left: 0;
        }
        
        .dcl-carousel-button.next {
            right: 0;
        }
        
        .dcl-carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .dcl-carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #e2e8f0;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .dcl-carousel-dot.active {
            background: #2CB5AD;
            transform: scale(1.3);
        }
        
        /* ===== FILTER AND SEARCH STYLES ===== */
        .dcl-filter-container {
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            padding: 30px;
            border-radius: 20px;
            margin-bottom: 30px;
            border: 1px solid #e9edf2;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }
        
        .dcl-search-box {
            margin-bottom: 20px;
        }
        
        .dcl-search-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            font-size: 16px;
            transition: all 0.3s;
            background: white url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23999" stroke-width="2"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>') no-repeat 20px center;
            padding-left: 50px;
        }
        
        .dcl-search-input:focus {
            border-color: #2CB5AD;
            outline: none;
            box-shadow: 0 0 0 4px rgba(44, 181, 173, 0.1);
        }
        
        .dcl-country-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        
        .dcl-country-filter-btn {
            padding: 10px 20px;
            border-radius: 40px;
            background: white;
            border: 1px solid #e2e8f0;
            color: #334155;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .dcl-country-filter-btn:hover {
            border-color: #2CB5AD;
            color: #2CB5AD;
            transform: translateY(-2px);
        }
        
        .dcl-country-filter-btn.active {
            background: #2CB5AD;
            color: white;
            border-color: #2CB5AD;
        }
        
        .dcl-country-filter-btn .count {
            background: rgba(44, 181, 173, 0.2);
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .dcl-country-filter-btn.active .count {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .dcl-clear-filters {
            margin-top: 15px;
            text-align: right;
        }
        
        .dcl-clear-filters-btn {
            background: none;
            border: none;
            color: #2CB5AD;
            cursor: pointer;
            font-size: 14px;
            text-decoration: underline;
            padding: 5px 10px;
        }
        
        .dcl-clear-filters-btn:hover {
            color: #F5A623;
        }
        
        /* ===== CARD STYLES ===== */
        .dcl-landing {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }
        
        .dcl-landing h3 {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 50px;
            position: relative;
        }
        
        .dcl-landing h3 span {
            color: #2CB5AD;
            position: relative;
            display: inline-block;
        }
        
        .dcl-landing h3 span::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 10%;
            width: 80%;
            height: 4px;
            background: #F5A623;
            border-radius: 4px;
        }
        
        .dcl-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .dcl-card {
            background: white;
            border-radius: 20px;
            padding: 25px 20px;
            text-align: center;
            border: 1px solid #e9edf2;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
            opacity: 1;
            transform: scale(1);
        }
        
        .dcl-card.hidden {
            display: none;
        }
        
        .dcl-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(44, 181, 173, 0.15);
            border-color: #2CB5AD;
        }
        
        .dcl-card.featured {
            border: 2px solid #F5A623;
            background: linear-gradient(135deg, #fff9f0, white);
        }
        
        .dcl-card.featured::after {
            content: "⭐";
            position: absolute;
            top: -10px;
            right: -10px;
            font-size: 24px;
            background: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
            border: 2px solid #F5A623;
        }
        
        .dcl-logo {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            background: #f8fafc;
            border-radius: 16px;
            padding: 15px;
            border: 1px solid #e9edf2;
            transition: all 0.3s;
        }
        
        .dcl-card:hover .dcl-logo {
            border-color: #2CB5AD;
            background: white;
        }
        
        .dcl-logo img {
            max-width: 100%;
            max-height: 70px;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: transform 0.3s;
        }
        
        .dcl-card:hover .dcl-logo img {
            transform: scale(1.1);
        }
        
        .dcl-company {
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 8px;
            font-size: 16px;
        }
        
        .dcl-country {
            font-size: 14px;
            color: #2CB5AD;
            margin-bottom: 5px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .dcl-city {
            font-size: 13px;
            color: #F5A623;
            margin-bottom: 12px;
        }
        
        .dcl-industry {
            font-size: 12px;
            color: #64748b;
            margin: 8px 0;
            padding: 4px 10px;
            background: #f1f5f9;
            display: inline-block;
            border-radius: 30px;
        }
        
        .dcl-website {
            display: inline-block;
            margin-top: 12px;
            padding: 8px 20px;
            background: #2CB5AD;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(44, 181, 173, 0.2);
        }
        
        .dcl-website:hover {
            background: #239b94;
            transform: translateX(3px);
            box-shadow: 0 8px 20px rgba(44, 181, 173, 0.3);
            color: white;
        }
        
        /* All Clients Page */
        .dcl-all {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .dcl-country-section {
            margin-bottom: 50px;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid #e9edf2;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        }
        
        .dcl-country-header {
            background: linear-gradient(90deg, #2CB5AD 0%, #1f9b94 100%);
            color: white;
            padding: 20px 30px;
            font-size: 24px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .dcl-country-header span:first-child {
            font-size: 32px;
            background: rgba(255, 255, 255, 0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .dcl-country-header .count {
            margin-left: auto;
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 20px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 500;
        }
        
        .dcl-country-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 25px;
            padding: 30px;
        }
        
        /* Country List */
        .dcl-country-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            padding: 20px;
        }
        
        .dcl-country-tag {
            background: white;
            padding: 12px 25px;
            border-radius: 50px;
            border: 1px solid #e9edf2;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 15px;
        }
        
        .dcl-country-tag:hover {
            background: #2CB5AD;
            color: white;
            border-color: #2CB5AD;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(44, 181, 173, 0.2);
        }
        
        .dcl-country-tag .count {
            background: #F5A623;
            color: white;
            border-radius: 30px;
            padding: 2px 12px;
            font-size: 12px;
            font-weight: 600;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .dcl-carousel-slide {
                flex: 0 0 calc(100% / 3);
            }
        }
        
        @media (max-width: 768px) {
            .dcl-carousel-slide {
                flex: 0 0 calc(100% / 2);
            }
            
            .dcl-carousel-container {
                padding: 0 40px;
            }
            
            .dcl-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .dcl-country-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                padding: 20px;
            }
            
            .dcl-landing h3 {
                font-size: 28px;
            }
            
            .dcl-country-header {
                flex-direction: column;
                text-align: center;
            }
            
            .dcl-country-header .count {
                margin-left: 0;
            }
        }
        
        @media (max-width: 480px) {
            .dcl-carousel-slide {
                flex: 0 0 100%;
            }
            
            .dcl-grid {
                grid-template-columns: 1fr;
            }
            
            .dcl-country-grid {
                grid-template-columns: 1fr;
            }
        }
    