  :root {
            --primary: #e1bb87;
            --dark: #121212;
            --gray: #1e1e1e;
            --light: #f8f9fa;
            --accent: #6bd1e3;
            --text-muted: #a0a0a0;
        }

        body {
            background-color: var(--dark);
            color: white;
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
        }
         .container{
            min-width: 85vw;
            /* height: 540px */
        }
        /* Modern Card Styles */
        .service-card {
            background: linear-gradient(145deg, #252525, #1a1a1a);
            border-radius: 16px;
            /* min-width: 20vw; */
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.36);
            height: 100%;
            display: flex;
            flex-direction: column;
            margin-bottom: 30px;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            border-color: rgba(225, 187, 135, 0.2);
        }

        .service-image-container {
            height: 220px;
            position: relative;
            overflow: hidden;
        }

        .service-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image {
            transform: scale(1.05);
        }

        .service-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: var(--primary);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .service-content {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .service-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: white;
            margin-bottom: 12px;
            font-size: 1.25rem;
        }

        .service-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .service-meta-item {
            display: flex;
            align-items: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .service-meta-item i {
            margin-right: 6px;
            color: var(--accent);
        }

        .service-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .service-description {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .action-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .btn-primary-accent {
            background-color: var(--primary);
            color: var(--dark);
            border: none;
            border-radius: 8px;
            font-weight: 600;
            padding: 10px;
            transition: all 0.3s;
        }

        .btn-primary-accent:hover {
            background-color: #d4a76a;
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 4px 16px 0 rgba(231, 84, 128, 0.18);
        }

        .btn-outline-accent {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 8px;
            font-weight: 600;
            padding: 10px;
            transition: all 0.3s;
        }

        .btn-outline-accent:hover {
            background-color: rgba(225, 187, 135, 0.1);
            transform: translateY(-2px);
        }

        /* Section Header */
        .section-header {
            margin-bottom: 40px;
            text-align: center;
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 2.2rem;
            color: white;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary);
        }

        .section-subtitle {
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Filter Controls */
        .filter-controls {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .filter-btn {
            background: rgba(255, 255, 255, 0.05);
            border: none;
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary);
            color: var(--dark);
        }

        /* Modern Layout Spacing */
        .service-section {
            padding: 80px 0;
            min-width: 80vw;
            margin-top: 100px;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }

            .service-card {
                max-width: 400px;
                margin: 0 auto;
            }

            .action-buttons {
                grid-template-columns: 1fr;
            }
        }