 .hero-gradient {
            background: linear-gradient(135deg, #14365d 0%, #2F5C8F 50%, #b999be 100%);
        }
        .glass-effect {
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
        }
        .jewelry-card {
            transition: all 0.3s ease;
        }
        .jewelry-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(47, 92, 143, 0.3);
        }
        
        /* Collection Cards Enhancements */
        .collection-card {
            min-height: 400px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        .collection-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }
        
        .collection-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.6s;
            z-index: 15;
        }
        
        .collection-card:hover::before {
            left: 100%;
        }
        
        /* Collection card image enhancement */
        .collection-card img {
            filter: brightness(0.8) contrast(1.1) saturate(1.2);
            transition: all 0.5s ease;
        }
        
        .collection-card:hover img {
            filter: brightness(0.9) contrast(1.2) saturate(1.3);
            transform: scale(1.1);
        }
        
        /* Icon circle enhancement */
        .collection-card .w-20 {
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }
        
        .collection-card:hover .w-20 {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
        }
        
        /* Button enhancement */
        .collection-card button {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .collection-card button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }
        
        .collection-card button:hover::before {
            left: 100%;
        }
        
        /* Responsive design for collection cards */
        @media (max-width: 768px) {
            .collection-card {
                min-height: 350px;
                margin-bottom: 2rem;
            }
            
            .collection-card:hover {
                transform: translateY(-10px) scale(1.01);
            }
        }
        .scroll-smooth {
            scroll-behavior: smooth;
        }
        
        /* Enhanced animations and effects */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        @keyframes shimmer {
            0% {
                background-position: -200px 0;
            }
            100% {
                background-position: calc(200px + 100%) 0;
            }
        }
        
        .animate-fade-in {
            animation: fadeInUp 1s ease-out;
        }
        
        .animate-pulse-slow {
            animation: pulse 3s ease-in-out infinite;
        }
        
        /* Gallery enhancements */
        .gallery-item {
            position: relative;
            overflow: hidden;
        }
        
        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
            z-index: 1;
        }
        
        .gallery-item:hover::before {
            left: 100%;
        }
        
        /* Image loading and error handling */
        .gallery-item img {
            transition: all 0.3s ease;
            filter: brightness(1) contrast(1.05) saturate(1.1);
        }
        
        .gallery-item:hover img {
            filter: brightness(1.1) contrast(1.1) saturate(1.2);
        }
        
        /* Image zoom effect on hover */
        .gallery-item .relative {
            cursor: pointer;
        }
        
        /* Enhanced gallery grid for better responsiveness */
        @media (max-width: 640px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        
        @media (min-width: 641px) and (max-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }
        
        @media (min-width: 1025px) {
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.5rem;
            }
        }
        
        /* Gallery item image container */
        .gallery-item .relative {
            background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
        }
        
        /* Loading placeholder for images */
        .gallery-item img[src=""] {
            opacity: 0;
        }
        
        /* Smooth image loading */
        .gallery-item img {
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        
        .gallery-item img.loaded {
            opacity: 1;
        }
        
        /* Service card hover effects */
        .service-card {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(47, 92, 143, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }
        
        .service-card:hover::before {
            transform: translateX(100%);
        }
        
        /* FAQ enhancements */
        .faq-item {
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            transform: translateX(5px);
        }
        
        /* Button hover effects */
        .btn-glow {
            position: relative;
            overflow: hidden;
        }
        
        .btn-glow::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }
        
        .btn-glow:hover::before {
            left: 100%;
        }
        
        /* Testimonial card enhancements */
        .testimonial-card {
            transition: all 0.3s ease;
            position: relative;
        }
        
        .testimonial-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 1rem;
            padding: 2px;
            background: linear-gradient(45deg, #2F5C8F, #c7af6b, #b999be);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .testimonial-card:hover::after {
            opacity: 1;
        }
        
        /* Loading spinner */
        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #2F5C8F;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 20px auto;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Enhanced hero section with video */
        .hero-video-section {
            position: relative;
            min-height: 100vh;
        }
        
        /* .hero-video-section video {
            filter: brightness(0.7) contrast(1.1);
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
         */
        /* .hero-video-section video.loaded {
            opacity: 1;
        } */
        
        /* Fallback animated background for when video is not available */
        /* .hero-gradient {
            background: linear-gradient(135deg, #14365d 0%, #2F5C8F 50%, #b999be 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }
         */
        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        /* Video controls styling */
        #videoToggle {
            transition: all 0.3s ease;
        }
        
        #videoToggle:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        
        /* Ensure video covers entire section */
        .hero-video-section video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        /* Mobile video optimization */
        @media (max-width: 768px) {
            .hero-video-section video {
                object-position: center center;
            }
            
            #videoToggle {
                top: 80px;
                right: 16px;
                padding: 8px;
            }
        }
        
        /* Improved glass effect */
        .glass-effect {
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        /* Responsive improvements */
        @media (max-width: 768px) {
            .gallery-item {
                margin-bottom: 1rem;
            }
            
            .service-card {
                margin-bottom: 1rem;
            }
            
            .testimonial-card {
                margin-bottom: 1rem;
            }
        }
        
        /* Custom Design Process Section */
        .custom-design-process {
            min-height: 400px;
            position: relative;
        }
        
        .custom-design-process .process-step {
            transition: all 0.3s ease;
        }
        
        .custom-design-process .process-step:hover {
            transform: translateY(-5px);
        }
        
        .custom-design-process .process-step.active {
            transform: translateY(-10px);
        }
        
        .custom-design-process .process-step.active .w-20 {
            box-shadow: 0 10px 30px rgba(199, 175, 107, 0.8);
            border-color: #c7af6b;
        }
        
        .custom-design-process .process-step.active h4 {
            color: #c7af6b;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .custom-design-process .process-step .relative {
            transition: all 0.3s ease;
        }
        
        .custom-design-process .process-step:hover .relative {
            transform: scale(1.1);
        }
        
        /* Step circle animations */
        .process-step .w-20 {
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(199, 175, 107, 0.3);
        }
        
        .process-step:hover .w-20 {
            box-shadow: 0 8px 25px rgba(199, 175, 107, 0.5);
            transform: scale(1.05);
        }
        
        /* Step number badge animation */
        .process-step .absolute.w-8 {
            transition: all 0.3s ease;
        }
        
        .process-step:hover .absolute.w-8 {
            transform: scale(1.2);
            box-shadow: 0 4px 15px rgba(199, 175, 107, 0.6);
        }
        
        /* Timeline animation */
        .custom-design-process .border-t {
            position: relative;
        }
        
        .custom-design-process .border-t::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #c7af6b, transparent);
            animation: timelineGlow 3s ease-in-out infinite;
        }
        
        @keyframes timelineGlow {
            0%, 100% { width: 0; opacity: 0; }
            50% { width: 100%; opacity: 1; }
        }
        
        /* Background image enhancement */
        .custom-design-process img {
            filter: brightness(0.8) contrast(1.1) saturate(1.2);
        }
        
        /* Glass morphism effect for step circles */
        .process-step .bg-white\/10 {
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        /* Responsive design for process steps */
        @media (max-width: 768px) {
            .custom-design-process .grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
            
            .process-step {
                margin-bottom: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .custom-design-process .grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, #2F5C8F, #c7af6b);
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(45deg, #14365d, #a4893d);
        }

        /* Video Showcase Section Styles */
        .video-card {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .video-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(47, 92, 143, 0.2), transparent);
            transition: left 0.6s;
            z-index: 1;
        }

        .video-card:hover::before {
            left: 100%;
        }

        .video-card video {
            transition: all 0.3s ease;
            filter: none;
        }

        .video-card:hover video {
            filter: none;
        }

        .video-card video:hover {
            filter: none !important;
        }

        .video-card video:focus {
            filter: none !important;
        }

        /* Remove all filters when video is playing */
        .video-card video[data-playing="true"] {
            filter: none !important;
            brightness: 1 !important;
            contrast: 1 !important;
        }

        /* Ensure playing videos have no dark overlay */
        .video-card video:not([paused]) {
            filter: none !important;
        }

        /* Featured Video Styles */
        #featuredVideo {
            transition: all 0.3s ease;
        }

        #featuredVideo[data-playing="true"] {
            filter: none !important;
            brightness: 1 !important;
            contrast: 1 !important;
        }

        #videoOverlay {
            transition: opacity 0.3s ease;
        }

        #featuredVideo:hover + #videoOverlay {
            opacity: 0;
        }

        /* Video Filter Buttons */
        .video-filter-btn {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .video-filter-btn.active {
            background-color: #2F5C8F;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(47, 92, 143, 0.4);
        }

        .video-filter-btn:not(.active):hover {
            background-color: #2F5C8F;
            transform: translateY(-2px);
        }

        .video-filter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .video-filter-btn:hover::before {
            left: 100%;
        }

        /* Video Loading States */
        .video-card video {
            background: transparent;
        }

        .video-card video::-webkit-media-controls {
            filter: none;
        }

        /* Video Responsive Design */
        @media (max-width: 768px) {
            .video-card {
                margin-bottom: 1.5rem;
            }

            #featuredVideo {
                height: 250px;
            }

            .video-filter-btn {
                padding: 12px 20px;
                font-size: 14px;
            }
        }

        @media (max-width: 640px) {
            .video-card video {
                height: 200px;
            }

            .video-filter-btn {
                padding: 10px 16px;
                font-size: 12px;
                margin-bottom: 8px;
            }
        }

        /* Video Controls Enhancement */
        .video-card video::-webkit-media-controls-panel {
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
            position: relative;
            z-index: 10;
        }

        .video-card video::-webkit-media-controls-play-button {
            background-color: #2F5C8F;
            border-radius: 50%;
            position: relative;
            z-index: 10;
        }

        .video-card video::-webkit-media-controls {
            position: relative;
            z-index: 10;
            background: rgba(0,0,0,0.8);
            border-radius: 8px;
            margin: 8px;
        }

        /* Video Grid Responsive Layout */
        @media (min-width: 1280px) {
            .video-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 768px) and (max-width: 1279px) {
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            .video-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Video Overlay Effects */
        .video-card .relative::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 5;
        }

        .video-card:hover .relative::after {
            opacity: 1;
        }

        /* Prevent overlay from affecting video controls */
        .video-card video {
            position: relative;
            z-index: 15;
        }

        /* Video Meta Information Enhancement */
        .video-card h4 {
            transition: color 0.3s ease;
        }

        .video-card:hover h4 {
            color: #c7af6b;
        }

        /* Video Section Background Animation */
        #video-showcase {
            background: linear-gradient(45deg, #111827, #1f2937, #111827);
            background-size: 400% 400%;
            animation: gradientShift 20s ease infinite;
        }

        /* Loading state for videos */
        .video-loading {
            position: relative;
        }

        .video-loading::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            border: 3px solid rgba(255,255,255,0.3);
            border-top: 3px solid #c7af6b;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            z-index: 2;
        }

        /* Video poster image styling */
        .video-card video[poster] {
            object-fit: cover;
        }

        /* Enhanced video controls styling */
        .video-card video::-webkit-media-controls {
            background: rgba(0,0,0,0.8);
            border-radius: 8px;
            margin: 8px;
            position: relative;
            z-index: 20;
        }

        /* Disable transforms on video element when playing or focused */
        .video-card video:focus,
        .video-card video:hover,
        .video-card video[data-playing="true"] {
            transform: none !important;
        }

        /* Ensure video controls stay visible and functional */
        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* Override hover transform for video element specifically */
        .video-card:hover video {
            transform: none !important;
        }

        /* Video thumbnail hover effect */
        .video-card .relative {
            cursor: pointer;
            border-radius: 12px;
            overflow: hidden;
        }

        /* Smooth transitions for all video elements */
        .video-card * {
            transition: all 0.3s ease;
        }