
        .everythingAtSinglePlace {
            background-color: #000000;
            font-family: 'Georgia', 'Times New Roman', serif;
            color: #c08830;
            line-height: 1.6;
            overflow-x: hidden;
        }

       
        .allServicesHeader {
            text-align: center;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            position: relative;
            overflow: hidden;
        }



        .allServicesMainTitle {
            font-size:36px;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #c08830, #f4d03f, #c08830);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            z-index: 2;
            text-shadow: 0 0 30px rgba(192, 136, 48, 0.3);
        }

        .allServicesSubTitle {
            font-size: 1.3rem;
            font-weight: 300;
            letter-spacing: 1px;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .allServicesGrid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
          
            padding:50px 0;
            max-width: 1200px;
            margin: 0 auto;
        }

        .allServicesCard {
            background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
            border: 1px solid rgba(192, 136, 48, 0.2);
            cursor: pointer;
            padding:25px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }


        .allServicesCard:hover::before {
            left: 100%;
        }

        .allServicesCard:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: #c08830;
            box-shadow: 0 20px 60px rgba(192, 136, 48, 0.2);
        }

        .allServicesIcon {
            width:60px;
            height:60px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #c08830, #f4d03f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #000;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .allServicesCard:hover .allServicesIcon {
            transform: rotateY(360deg);
            box-shadow: 0 0 30px rgba(192, 136, 48, 0.6);
        }

        .allServicesTitle {
            font-size:14px;
            font-weight: 400;
            margin-bottom: 15px;
            color: #c08830;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .allServicesCard:hover .allServicesTitle {
            color: #f4d03f;
            text-shadow: 0 0 20px rgba(192, 136, 48, 0.5);
        }

        .allServicesDiscription {
            color: rgba(192, 136, 48, 0.8);
            font-size: 0.95rem;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        .decorative-line {
            height: 2px;
            background: linear-gradient(90deg, transparent, #c08830, transparent);
            margin:20px auto;
            width: 200px;
            position: relative;
        }

        .decorative-line::before,
        .decorative-line::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: #c08830;
            border-radius: 50%;
            top: -3px;
        }

        .decorative-line::before {
            left: -10px;
        }

        .decorative-line::after {
            right: -10px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .allServicesMainTitle {
                font-size:26px;
                letter-spacing: 1px;
            }

            .allServicesSubTitle {
                font-size: 1.1rem;
            }

            .allServicesGrid {
                grid-template-columns:repeat(3, 1fr);
              
                padding: 40px 0;
            }

         

            .allServicesIcon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .allServicesTitle {
                font-size:12px;
            }
            .allServicesCard{padding:15px;}

            .container {
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .allServicesHeader {
                padding: 60px 0 30px;
            }

            .allServicesMainTitle {
                font-size:22px;
            }

            .allServicesGrid {
                padding: 30px 0;
            }
        }

        /* Additional luxury effects */
        .luxury-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 80%, rgba(192, 136, 48, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(192, 136, 48, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        .floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #c08830;
            border-radius: 50%;
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0; }
            50% { transform: translateY(-100px) rotate(360deg); opacity: 1; }
        }