    /* Debts Recovery Services Section */
        .debts-services {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #063d74;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #cf765b, #ff5722);
        }
        
        .section-header p {
            color: #666;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 30px auto 0;
            line-height: 1.6;
        }
        
        /* Main Content Layout */
        .content-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        /* Left Side: Description */
        .description-content {
            padding: 30px;
        }
        
        .description-content h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #054788;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .description-content h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #fc5f30;
        }
        
        .description-content p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }
        
        .service-features {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }
        
        .service-features li {
            padding: 12px 0;
            color: #444;
            font-size: 1rem;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #eee;
        }
        
        .service-features li:last-child {
            border-bottom: none;
        }
        
        .service-features li i {
            color: #ff5722;
            margin-right: 12px;
            font-size: 1.2rem;
            min-width: 25px;
            text-align: center;
        }
        
        .service-benefits {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        
        .benefit-item {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #ff5722;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        
        .benefit-item:hover {
            transform: translateY(-5px);
            background: #f3e5f5;
        }
        
        .benefit-item i {
            color: #ff5722;
            font-size: 1.5rem;
            margin-bottom: 15px;
            display: block;
        }
        
        .benefit-item h4 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .benefit-item p {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
            line-height: 1.5;
        }
        
        /* Right Side: Image Slider */
        .slider-container {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            height: 500px;
            border: 3px solid #e8daef;
        }
        
        .image-slider {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slider-images {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slider-image {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease;
        }
        
        .slider-image.active {
            opacity: 1;
        }
        
        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 10;
        }
        
        .slider-btn {
            background: rgba(255, 81, 37, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .slider-btn:hover {
            background: #ff5722;
            transform: scale(1.1);
        }
        
        /* Slider Dots */
        .slider-dots {
            position: absolute;
            bottom: 25px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background: #ff5722;
            transform: scale(1.3);
        }
        
        .slider-dot:hover {
            background: #ff6536;
        }
        
        /* Image Overlay */
        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 30px;
            transform: translateY(0);
        }
        
        .image-overlay-content {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 0.3s;
        }
        
        .slider-image.active + .image-overlay .image-overlay-content {
            opacity: 1;
            transform: translateY(0);
        }
        
        .image-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: white;
        }
        
        .image-desc {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
            color: #ecf0f1;
        }
        
        
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .content-container {
                gap: 40px;
            }
            
            .slider-container {
                height: 450px;
            }
        }
        
        @media (max-width: 992px) {
            .content-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .slider-container {
                height: 400px;
                order: -1;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .description-content h3 {
                font-size: 1.8rem;
            }
            
            .process-step {
                grid-template-columns: 60px 1fr;
                gap: 20px;
                padding: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .debts-services {
                padding: 60px 0;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .section-header p {
                font-size: 1rem;
            }
            
            .slider-container {
                height: 350px;
            }
            
            .slider-btn {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
            
            .service-benefits {
                grid-template-columns: 1fr;
            }
            
            .recovery-process {
                padding: 30px 20px;
            }
            
            .cta-section {
                padding: 50px 20px;
                margin-top: 60px;
            }
            
            .cta-section h3 {
                font-size: 2rem;
            }
            
            .types-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .slider-container {
                height: 300px;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
            
            .description-content {
                padding: 20px;
            }
            
            .process-step {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .step-number {
                margin: 0 auto 15px;
            }
            
            .cta-section h3 {
                font-size: 1.7rem;
            }
            
            .btn-cta {
                padding: 12px 30px;
                font-size: 1rem;
            }
            
            .types-container {
                grid-template-columns: 1fr;
            }
        }
        
        /* Language Switcher Styles */
        .language-dropdown {
            position: relative;
            display: inline-block;
            z-index: 99999 !important;
        }
        
        .language-dropdown-toggle {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 5px 15px;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .language-dropdown-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .language-dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 150px;
            border-radius: 5px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 999999;
            margin-top: 5px;
        }
        
        .language-dropdown-menu.show {
            display: block;
        }
        
        .language-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 15px;
            cursor: pointer;
            border-bottom: 1px solid #eee;
            color: #333;
        }
        
        .language-option:last-child {
            border-bottom: none;
        }
        
        .language-option:hover {
            background: #f8f9fa;
        }
        
        .language-option.active {
            background: #f0f7ff;
            color: #0d6efd;
        }
        
        .flag-icon, .current-flag {
            width: 20px;
            height: 15px;
            border-radius: 2px;
            object-fit: cover;
        }
        
        .current-language {
            font-size: 14px;
        }

        @media (max-width: 991px) {
            .language-dropdown-menu {
                position: fixed;
                top: 70px;
                right: 10px;
                width: 160px;
                border-radius: 8px;
            }

            .language-dropdown-toggle {
                width: 100%;
                justify-content: flex-start;
            }
        }
    
        
@media (max-width: 991px) {
    .language-dropdown-menu {
        right: 0;
        left: auto;
        width: 150px;
        color: #333;
    }

    .current-language{
        color: #333;
        
    }
}

