        :root {
    --primary: #ff9114ff;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #02245B;
}

        
        /* Cleaning Services Section */
        .cleaning-services {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #181274;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #ff5722, #ff9800);
        }
        
        .section-header p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 30px auto 0;
            line-height: 1.6;
        }
        
        /* Main Layout */
        .services-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }
        
        /* Accordion Styles */
        .accordion-container {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            height: fit-content;
        }
        
        .accordion-item {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 15px;
            background: #f8f9fa;
            transition: all 0.3s ease;
        }
        
        .accordion-item:hover {
            background: #fff;
            box-shadow: 0 4px 12px rgba(255, 87, 34, 0.1);
        }
        
        .accordion-header {
            padding: 0;
            border: none;
        }
        
        .accordion-button {
            background: linear-gradient(45deg, #ff5722, #ff9800);
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 16px 25px;
            border: none;
            border-radius: 8px !important;
            transition: all 0.3s ease;
        }
        
        .accordion-button:not(.collapsed) {
            background: linear-gradient(45deg, #e64a19, #f57c00);
            color: white;
            box-shadow: none;
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transform: scale(1.1);
        }
        
        .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.2);
        }
        
        .accordion-body {
            padding: 20px 25px;
            background: white;
            border-radius: 0 0 8px 8px;
        }
        
        .service-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .service-features li {
            padding: 8px 0;
            color: #555;
            font-size: 0.95rem;
            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: 10px;
            font-size: 1rem;
            width: 18px;
            text-align: center;
        }
        
        .service-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        
        .service-meta {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .meta-badge {
            background: linear-gradient(45deg, #ff5722, #ff9800);
            color: white;
            padding: 6px 14px;
            border-radius: 18px;
            font-size: 0.85rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .meta-badge i {
            font-size: 0.85rem;
        }
        
        /* Image Slider Container - Simple Design */
        .slider-container {
            position: sticky;
            top: 100px;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Simple Image Slider */
        .image-slider {
            width: 100%;
            height: 100%;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }
        
        .slider-images {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slider-image {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.8s ease, transform 0.8s ease;
            transform: scale(1.1);
        }
        
        .slider-image.active {
            opacity: 1;
            transform: scale(1);
        }
        
        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 15px;
            z-index: 10;
        }
        
        .slider-btn {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ff5722;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .slider-btn:hover {
            background: #ff5722;
            color: white;
            transform: scale(1.1);
        }
        
        /* Slider Dots */
        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background: #ff5722;
            transform: scale(1.2);
        }
        
        .slider-dot:hover {
            background: #ff9800;
        }
        
        /* Image Overlay */
        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            padding: 30px 20px 20px;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .image-slider:hover .image-overlay {
            transform: translateY(0);
        }
        
        .image-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .image-desc {
            font-size: 0.9rem;
            opacity: 0.9;
            margin: 0;
        }
        
        /* Service Cards */
        .service-cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 80px;
            grid-column: 1 / -1;
        }
        
        .service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }
        
        .service-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .service-card-content {
            padding: 20px;
        }
        
        .service-card h4 {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 12px;
        }
        
        .service-card p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        /* Call to Action */
        .cta-section {
            background: linear-gradient(45deg, #ff5722, #ff9800);
            padding: 60px 0;
            margin-top: 80px;
            border-radius: 15px;
            text-align: center;
            color: white;
            grid-column: 1 / -1;
        }
        
        .cta-section h3 {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .cta-section p {
            font-size: 1.1rem;
            max-width: 650px;
            margin: 0 auto 25px;
            opacity: 0.9;
        }
        
        .btn-cta {
            background: white;
            color: #ff5722;
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-cta:hover {
            background: #333;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .services-container {
                gap: 30px;
            }
            
            .slider-container {
                height: 320px;
            }
        }
        
        @media (max-width: 992px) {
            .services-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .slider-container {
                height: 300px;
                order: -1;
                position: relative;
                top: 0;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .cleaning-services {
                padding: 60px 0;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .section-header p {
                font-size: 1rem;
            }
            
            .accordion-container {
                padding: 20px;
            }
            
            .accordion-button {
                font-size: 1rem;
                padding: 14px 20px;
            }
            
            .slider-container {
                height: 250px;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .image-title {
                font-size: 1.1rem;
            }
            
            .cta-section {
                padding: 50px 20px;
                margin-top: 60px;
            }
            
            .cta-section h3 {
                font-size: 1.7rem;
            }
            
            .service-cards-container {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 60px;
            }
        }
        
        @media (max-width: 576px) {
            .slider-container {
                height: 220px;
            }
            
            .slider-btn {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }
            
            .service-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .meta-badge {
                width: fit-content;
            }
            
            .cta-section h3 {
                font-size: 1.5rem;
            }
            
            .btn-cta {
                padding: 10px 30px;
                font-size: 0.9rem;
            }
        }
        
        /* 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;
        
    }
}