  /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        } */

        .testimonial-section {
            max-width: 1200px;
            width: 100%;
            background: rgba(0, 0, 0, 0.8);
            border-radius: 20px;
            padding:30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
            margin:0 auto;
        }

        .testimonial-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #d4af37, #ffd700, #d4af37);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .section-header {
            text-align: center;
            margin-bottom:10px;
        }

        .section-title {
            font-size: 2.5rem;
            color:#c08830;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .section-subtitle {
            color: #888;
            font-size: 1.1rem;
            font-style: italic;
        }

        .testimonial-container {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .testimonial-carousel-wrapper {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .testimonial-slide {
            min-width: 100%;
            display: flex;
            align-items: center;
            gap: 60px;
            padding: 40px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 15px;
        }

        .client-image-container {
            flex-shrink: 0;
            position: relative;
        }

        .client-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #d4af37;
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
            transition: all 0.3s ease;
        }

        .client-image:hover {
            transform: scale(1.05);
            box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
        }

        .sparkle {
            position: absolute;
            width: 20px;
            height: 20px;
            background: radial-gradient(circle, #ffd700, transparent);
            border-radius: 50%;
            animation: sparkle 2s ease-in-out infinite;
        }

        .sparkle:nth-child(1) {
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .sparkle:nth-child(2) {
            bottom: 15%;
            left: 5%;
            animation-delay: 0.7s;
        }

        .sparkle:nth-child(3) {
            top: 50%;
            left: -10px;
            animation-delay: 1.4s;
        }

        @keyframes sparkle {
            0%, 100% {
                opacity: 0;
                transform: scale(0);
            }
            50% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .testimonial-content {
            flex: 1;
        }

        .quote-icon {
            font-size: 4rem;
            color: #d4af37;
            opacity: 0.3;
            line-height:10px;
        
        }

        .testimonial-text {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #e0e0e0;
            margin-bottom:10px;
            font-style: italic;
            position: relative;
        }

        .client-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .client-name {
            font-size: 1.4rem;
            color: #d4af37;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .client-location {
            color: #999;
            font-size: 1rem;
        }

        .rating {
            display: flex;
            gap: 8px;
        }

        .star {
            font-size: 1.5rem;
            color: #d4af37;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .star:hover {
            transform: scale(1.2);
        }

        .testimonial-property-info {
            background: rgba(212, 175, 55, 0.1);
            padding: 15px 20px;
            border-radius: 10px;
            border-left: 4px solid #d4af37;
        }

        .property-type {
            color: #d4af37;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 40px;
        }

        .control-btn {
            width:40px;
            height:40px;
            border: 2px solid #d4af37;
            background: transparent;
            border-radius: 50%;
            color: #d4af37;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .control-btn:hover {
            background: #d4af37;
            color: #000;
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }

        .control-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .control-btn:disabled:hover {
            background: transparent;
            color: #d4af37;
            transform: none;
            box-shadow: none;
        }

        .carousel-indicators {
            display: flex;
            gap: 15px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .indicator.active {
            background: #d4af37;
            transform: scale(1.3);
        }

        .indicator::before {
            content: '';
            position: absolute;
            width:10px;
            height:10px;
            border: 1px solid #d4af37;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .indicator.active::before {
            opacity: 0.5;
        }

        .pause-play-btn {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border: 1px solid #d4af37;
            background: rgba(0, 0, 0, 0.8);
            border-radius: 8px;
            color: #d4af37;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pause-play-btn:hover {
            background: #d4af37;
            color: #000;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .testimonial-section {
                padding: 40px 20px;
            }

            .testimonial-slide {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .client-image {
                width: 150px;
                height: 150px;
            }

            .section-title {
                font-size: 2rem;
            }

            .testimonial-text {
                font-size: 1.1rem;
            }

            .client-info {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .carousel-controls {
                gap: 20px;
            }

            .control-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }