@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: linear-gradient(180deg, #0a0a0f 0%, #151520 50%, #0f0f1a 100%);
      background-attachment: fixed;
      color: #fff;
      padding-top: 70px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Global Select/Dropdown Dark Styling - Enhanced for Visibility */
    select {
      background-color: rgba(15, 15, 20, 0.95) !important;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ffe7' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
      background-repeat: no-repeat !important;
      background-position: right 1rem center !important;
      background-size: 12px !important;
      color: #fff !important;
      border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
      border-radius: 8px !important;
      padding: 0.75rem 2.5rem 0.75rem 1rem !important;
      font-size: 0.95rem !important;
      font-weight: 500 !important;
      appearance: none !important;
      -webkit-appearance: none !important;
      -moz-appearance: none !important;
      cursor: pointer !important;
      min-height: 44px !important;
      transition: all 0.3s ease !important;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }

    select:hover {
      background-color: rgba(20, 20, 30, 0.95) !important;
      border-color: rgba(255, 255, 255, 0.3) !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    }

    select:focus {
      background-color: rgba(20, 20, 30, 0.98) !important;
      border-color: rgba(0, 255, 231, 0.7) !important;
      outline: none !important;
      box-shadow: 0 0 0 4px rgba(0, 255, 231, 0.15), 0 4px 16px rgba(0, 255, 231, 0.2) !important;
    }

    select:disabled {
      opacity: 0.5 !important;
      cursor: not-allowed !important;
      background-color: rgba(10, 10, 15, 0.8) !important;
    }

    /* Select Options - Enhanced Visibility */
    select option {
      background: rgba(20, 20, 30, 0.98) !important;
      color: #fff !important;
      padding: 0.75rem 1rem !important;
      font-size: 0.95rem !important;
      font-weight: 500 !important;
      border: none !important;
      margin: 2px 0 !important;
    }

    select option:hover {
      background: rgba(0, 255, 231, 0.2) !important;
      color: #00ffe7 !important;
    }

    select option:checked,
    select option[selected] {
      background: rgba(0, 255, 231, 0.3) !important;
      color: #00ffe7 !important;
      font-weight: 600 !important;
    }

    select option:disabled {
      color: rgba(255, 255, 255, 0.4) !important;
      background: rgba(10, 10, 15, 0.8) !important;
    }

      
       .loader-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 999999;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }
        
        .loader-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(0, 255, 231, 0.1) 0%, transparent 70%);
            animation: pulseBg 2s ease-in-out infinite;
        }
        
        @keyframes pulseBg {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .loader-container.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .icon-loader {
            position: relative;
            width: 200px;
            height: 200px;
        }

        .gemstone-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
        }

        /* Gemstone outline paths */
        .gem-outline {
            fill: none;
            stroke: #00ffe7;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-dasharray: 400;
            stroke-dashoffset: 400;
            animation: drawGem 1.2s ease-out forwards;
        }

        @keyframes drawGem {
            0% {
                stroke-dashoffset: 400;
                stroke: #3b82f6;
            }
            50% {
                stroke-dashoffset: 0;
                stroke: #00ffe7;
            }
            100% {
                stroke-dashoffset: 0;
                stroke: #00ffe7;
            }
        }

        .gem-facet {
            fill: none;
            stroke: #a78bfa;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-dasharray: 100;
            stroke-dashoffset: 100;
            opacity: 0;
        }

        .gem-facet:nth-child(2) {
            animation: drawFacet 1.2s ease-out forwards 0.2s;
        }

        .gem-facet:nth-child(3) {
            animation: drawFacet 1.2s ease-out forwards 0.3s;
        }

        .gem-facet:nth-child(4) {
            animation: drawFacet 1.2s ease-out forwards 0.4s;
        }

        .gem-facet:nth-child(5) {
            animation: drawFacet 1.2s ease-out forwards 0.5s;
        }

        .gem-facet:nth-child(6) {
            animation: drawFacet 1.2s ease-out forwards 0.6s;
        }

        @keyframes drawFacet {
            0% {
                stroke-dashoffset: 100;
                opacity: 0;
            }
            100% {
                stroke-dashoffset: 0;
                opacity: 1;
            }
        }

        .sparkle {
            fill: #00ffe7;
            opacity: 0;
            animation: sparkleAnim 1.2s ease-out forwards;
        }

        .sparkle:nth-child(7) {
            animation-delay: 0.7s;
        }

        .sparkle:nth-child(8) {
            animation-delay: 0.8s;
        }

        .sparkle:nth-child(9) {
            animation-delay: 0.9s;
        }

        @keyframes sparkleAnim {
            0% {
                opacity: 0;
                transform: scale(0);
            }
            50% {
                opacity: 1;
                transform: scale(1.2);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .orbit-container {
            position: absolute;
            
            width: 180px;
            height: 180px;
            transform: translate(-50%, -50%);
            animation: rotate 2s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .orbit-gem {
            position: absolute;
            width: 12px;
            height: 14px;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .orbit-gem svg {
            width: 100%;
            height: 100%;
        }

        .mini-gem {
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .orbit-gem:nth-child(1) .mini-gem {
            stroke: #00ffe7;
            animation: glowPulse 1s ease-in-out infinite;
        }

        .orbit-gem:nth-child(2) {
            top: auto;
            bottom: 0;
        }

        .orbit-gem:nth-child(2) .mini-gem {
            stroke: #6a5af9;
            animation: glowPulse 1s ease-in-out infinite 0.3s;
        }

        .orbit-gem:nth-child(3) {
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        .orbit-gem:nth-child(3) .mini-gem {
            stroke: #00ffe7;
            animation: glowPulse 1s ease-in-out infinite 0.15s;
        }

        .orbit-gem:nth-child(4) {
            top: 50%;
            left: auto;
            right: 0;
            transform: translateY(-50%);
        }

        .orbit-gem:nth-child(4) .mini-gem {
            stroke: #6a5af9;
            animation: glowPulse 1s ease-in-out infinite 0.45s;
        }

        @keyframes glowPulse {
            0%, 100% {
                filter: drop-shadow(0 0 2px currentColor);
                opacity: 1;
            }
            50% {
                filter: drop-shadow(0 0 6px currentColor);
                opacity: 0.7;
            }
        }

        .loading-text {
            position: absolute;
            bottom: -80px;
            left: 50%;
            transform: translateX(-50%);
            color: #00ffe7;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            white-space: nowrap;
            text-shadow: 0 0 20px rgba(0, 255, 231, 0.5);
            font-family: 'Inter', sans-serif;
        }

        .loading-text::after {
            content: '';
            animation: dots 0.8s steps(4, end) infinite;
        }

        @keyframes dots {
            0%, 20% {
                content: '';
            }
            40% {
                content: '.';
            }
            60% {
                content: '..';
            }
            80%, 100% {
                content: '...';
            }
        }

        .content {
            display: block;
            padding: 0;
            max-width: 100%;
            margin: 0;
            color: inherit;
            text-align: inherit;
        }

        .content.visible {
            display: block;
            animation: fadeIn 0.8s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .content p {
            font-size: 20px;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            margin-bottom: 40px;
        }

        .gem-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .gem-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 40px 20px;
            border-radius: 15px;
            transition: transform 0.3s ease, background 0.3s ease;
            cursor: pointer;
        }

        .gem-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .gem-card svg {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: block;
        }

        .gem-card h3 {
            font-size: 16px;
            color: #cbd5e1;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .gem-card p {
            font-size: 14px;
            color: #94a3b8;
            margin: 0;
        }

        .rotating-gem .mini-gem {
            animation: rotateGem 4s linear infinite;
            transform-origin: center;
        }

        @keyframes rotateGem {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
      
      
      
        /* Enhanced Gemstone Section Styles */
        .featured {
            background-image: url("../../img/bghero2.png");
            background-repeat: no-repeat;
            background-size: cover;
            background-attachment: scroll;
            background-position: center center;
            padding: 100px 0 80px;
            margin-top: 0;
            position: relative;
            z-index: 1;
            clear: both;
        }

        /* Search and Filter Controls */
        .gemstone-controls {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            align-items: center;
            margin-bottom: 3rem;
        }

        .search-box {
            position: relative;
            flex: 1;
            max-width: 400px;
        }

        .search-box i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.1rem;
        }

        .search-input {
            width: 100%;
            padding: 1rem 1.25rem 1rem 3.5rem;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(10px);
            border: 1.5px solid rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            color: #fff;
            font-size: 0.95rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 400;
        }

        .search-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(0, 255, 231, 0.6);
            box-shadow: 0 0 0 4px rgba(0, 255, 231, 0.1), 0 8px 32px rgba(0, 255, 231, 0.3);
            transform: translateY(-2px);
        }

        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .filter-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .filter-btn {
            padding: 0.75rem 1.75rem;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(10px);
            border: 1.5px solid rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .filter-btn:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(0, 255, 231, 0.5);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 255, 231, 0.2);
        }

        .filter-btn.active {
            background: linear-gradient(135deg, rgba(106, 90, 249, 0.9), rgba(0, 255, 231, 0.9));
            border-color: transparent;
            color: #fff;
            box-shadow: 0 8px 32px rgba(0, 255, 231, 0.4);
            transform: translateY(-2px);
        }

        /* Modern Enhanced Gemstone Cards */
        .gemstone-card-enhanced {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        .gemstone-card-enhanced::before {
            display: none;
        }

        .gemstone-card-enhanced:hover::before {
            display: none;
        }

        .gemstone-card-enhanced:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 24px 80px rgba(0, 255, 231, 0.5);
            background: rgba(255, 255, 255, 0.06);
        }

        .gemstone-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0, 255, 231, 0.15);
            color: #00ffe7;
            padding: 0.35rem 0.75rem;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 500;
            z-index: 10;
            text-transform: none;
            letter-spacing: 0;
            border: 1px solid rgba(0, 255, 231, 0.3);
            backdrop-filter: blur(10px);
        }

        .gemstone-badge.bestseller {
            background: rgba(255, 107, 107, 0.15);
            color: #ff6b6b;
            border-color: rgba(255, 107, 107, 0.3);
        }

        .gemstone-badge.popular {
            background: rgba(243, 156, 18, 0.15);
            color: #f39c12;
            border-color: rgba(243, 156, 18, 0.3);
        }

        .gemstone-badge.new {
            background: rgba(39, 174, 96, 0.15);
            color: #27ae60;
            border-color: rgba(39, 174, 96, 0.3);
        }

        .gemstone-badge.certified {
            background: rgba(0, 255, 231, 0.15);
            color: #00ffe7;
            border-color: rgba(0, 255, 231, 0.3);
            box-shadow: none;
            animation: none;
        }

        .certificate-btn {
            background: linear-gradient(135deg, rgba(0, 255, 231, 0.2), rgba(106, 90, 249, 0.2));
            border: 1.5px solid rgba(0, 255, 231, 0.5);
            color: #00ffe7;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .certificate-btn:hover {
            background: linear-gradient(135deg, rgba(0, 255, 231, 0.3), rgba(106, 90, 249, 0.3));
            border-color: #00ffe7;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 255, 231, 0.3);
        }

        .gemstone-image-wrapper {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1;
            background: rgba(0, 0, 0, 0.2);
        }

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

        .gemstone-card-enhanced:hover .gemstone-image {
            transform: scale(1.2) rotate(3deg);
            filter: brightness(1.1) saturate(1.2);
        }

        .gemstone-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .gemstone-card-enhanced:hover .gemstone-overlay {
            opacity: 1;
            pointer-events: auto;
        }

        .quick-view-btn {
            padding: 0.75rem 1.5rem;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50px;
            color: #0f0f0f;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            pointer-events: auto;
            z-index: 10;
            position: relative;
        }

        .quick-view-btn:hover {
            background: #00ffe7;
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(0, 255, 231, 0.4);
        }

        .gemstone-content {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .gemstone-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.75rem;
        }

        .gemstone-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: #fff;
            margin: 0;
        }

        .gemstone-rating {
            display: flex;
            gap: 0.2rem;
            color: #f1c40f;
            font-size: 0.9rem;
        }

        .gemstone-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            flex: 1;
        }

        .gemstone-properties {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .property-tag {
            padding: 0.4rem 0.8rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .property-tag i {
            font-size: 0.7rem;
        }

        .gemstone-footer {
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .learn-more-btn {
            width: 100%;
            padding: 0.9rem 1.5rem;
            background: linear-gradient(135deg, #6a5af9, #00ffe7);
            border: none;
            border-radius: 50px;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }

        .learn-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(106, 90, 249, 0.5);
        }

        /* No Results */
        .no-results {
            text-align: center;
            padding: 4rem 2rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .no-results i {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.3;
        }

        .no-results h4 {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.5rem;
        }

        /* Loading Indicator */
        #loadingIndicator {
            padding: 3rem 2rem;
        }

        #loadingIndicator .spinner-border {
            width: 3rem;
            height: 3rem;
            border-width: 0.3rem;
            border-color: rgba(0, 255, 231, 0.3);
            border-right-color: #00ffe7;
            animation: spinner-border 0.75s linear infinite;
        }

        @keyframes spinner-border {
            to {
                transform: rotate(360deg);
            }
        }

        #loadingIndicator p {
            color: rgba(255, 255, 255, 0.7);
            margin-top: 1rem;
            font-size: 0.95rem;
        }

        /* Gemstone Detail Modal */
        .gemstone-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            animation: fadeIn 0.3s ease;
        }

        .gemstone-modal.active {
            display: flex;
        }

        .modal-content-gem {
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            border-radius: 20px;
            max-width: 800px;
            width: 100%;
            max-height: 75vh;
            overflow-y: auto;
            position: relative;
            border: 2px solid rgba(0, 255, 231, 0.3);
            animation: slideUp 0.4s ease;
        }

        #modalBody {
            padding: 1.25rem !important;
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        /* Knowledge Modal Styles */
        .knowledge-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 10001;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            animation: fadeIn 0.3s ease;
        }

        .knowledge-modal.active {
            display: flex;
        }

        .knowledge-modal-content {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(42, 42, 42, 0.98));
            backdrop-filter: blur(20px);
            border-radius: 24px;
            max-width: 700px;
            width: 100%;
            max-height: 75vh;
            overflow-y: auto;
            position: relative;
            border: 2px solid rgba(0, 255, 231, 0.3);
            box-shadow: 0 20px 60px rgba(0, 255, 231, 0.2);
            animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .knowledge-modal-content::-webkit-scrollbar {
            width: 8px;
        }

        .knowledge-modal-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }

        .knowledge-modal-content::-webkit-scrollbar-thumb {
            background: rgba(0, 255, 231, 0.3);
            border-radius: 10px;
        }

        .knowledge-modal-content::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 255, 231, 0.5);
        }

        .knowledge-modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .knowledge-modal-close:hover {
            background: rgba(255, 0, 0, 0.2);
            border-color: rgba(255, 0, 0, 0.4);
            transform: rotate(90deg) scale(1.1);
        }

        /* Booking Modal Styles */
        .booking-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 10002;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            animation: fadeIn 0.3s ease;
            overflow-y: auto;
        }

        .booking-modal.active {
            display: flex;
        }

        .booking-modal-content {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(42, 42, 42, 0.98));
            backdrop-filter: blur(20px);
            border-radius: 20px;
            max-width: 750px;
            width: 100%;
            max-height: 75vh;
            overflow-y: auto;
            position: relative;
            border: 2px solid rgba(0, 255, 231, 0.3);
            box-shadow: 0 20px 60px rgba(0, 255, 231, 0.2);
            animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin: auto;
        }

        #bookingModalBody {
            padding: 1.25rem !important;
        }

        .booking-modal-content::-webkit-scrollbar {
            width: 8px;
        }

        .booking-modal-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }

        .booking-modal-content::-webkit-scrollbar-thumb {
            background: rgba(0, 255, 231, 0.3);
            border-radius: 10px;
        }

        .booking-modal-content::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 255, 231, 0.5);
        }

        .booking-modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .booking-modal-close:hover {
            background: rgba(255, 0, 0, 0.2);
            border-color: rgba(255, 0, 0, 0.4);
            transform: rotate(90deg) scale(1.1);
        }

        /* Certificate Modal Styles */
        .certificate-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 10003;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            animation: fadeIn 0.3s ease;
            overflow-y: auto;
        }

        .certificate-modal.active {
            display: flex;
        }

        .certificate-modal-content {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(42, 42, 42, 0.98));
            backdrop-filter: blur(20px);
            border-radius: 24px;
            max-width: 800px;
            width: 100%;
            max-height: 75vh;
            overflow-y: auto;
            position: relative;
            border: 2px solid rgba(0, 255, 231, 0.3);
            box-shadow: 0 20px 60px rgba(0, 255, 231, 0.2);
            animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin: auto;
        }

        .certificate-modal-content::-webkit-scrollbar {
            width: 8px;
        }

        .certificate-modal-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }

        .certificate-modal-content::-webkit-scrollbar-thumb {
            background: rgba(0, 255, 231, 0.3);
            border-radius: 10px;
        }

        .certificate-modal-content::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 255, 231, 0.5);
        }

        .certificate-modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .certificate-modal-close:hover {
            background: rgba(255, 0, 0, 0.2);
            border-color: rgba(255, 0, 0, 0.4);
            transform: rotate(90deg) scale(1.1);
        }

        .booking-form-group {
            margin-bottom: 1rem;
        }

        .booking-form-group label {
            display: block;
            color: #00ffe7;
            font-weight: 600;
            margin-bottom: 0.4rem;
            font-size: 0.9rem;
        }

        .booking-form-group label i {
            color: rgba(255, 255, 255, 0.9);
            margin-right: 0.5rem;
        }

        .booking-form-group input,
        .booking-form-group select,
        .booking-form-group textarea {
            width: 100%;
            padding: 0.7rem 0.9rem;
            background: rgba(15, 15, 20, 0.8);
            border: 1.5px solid rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            color: #fff;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .booking-form-group select {
            background-color: rgba(15, 15, 20, 0.9);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ffe7' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 12px;
            padding-right: 2.5rem;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
        }

        .booking-form-group select option {
            background: rgba(15, 15, 20, 0.95);
            color: #fff;
            padding: 0.5rem;
        }

        .booking-form-group input:focus,
        .booking-form-group select:focus,
        .booking-form-group textarea:focus {
            outline: none;
            border-color: rgba(0, 255, 231, 0.6);
            background: rgba(15, 15, 25, 0.9);
            box-shadow: 0 0 0 4px rgba(0, 255, 231, 0.1);
        }

        .booking-form-group input::placeholder,
        .booking-form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .booking-form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .time-slot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 0.75rem;
            margin-top: 0.5rem;
        }

        .time-slot {
            padding: 0.6rem 0.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .time-slot:hover {
            border-color: rgba(0, 255, 231, 0.5);
            background: rgba(0, 255, 231, 0.1);
            transform: translateY(-2px);
        }

        .time-slot.selected {
            background: linear-gradient(135deg, rgba(0, 255, 231, 0.2), rgba(106, 90, 249, 0.2));
            border-color: rgba(0, 255, 231, 0.6);
            color: #fff;
            box-shadow: 0 4px 12px rgba(0, 255, 231, 0.3);
        }

        .time-slot.disabled {
            opacity: 0.4;
            cursor: not-allowed;
            background: rgba(255, 255, 255, 0.02);
        }

        .duration-options {
            display: flex;
            gap: 1rem;
            margin-top: 0.5rem;
            flex-wrap: wrap;
        }

        .duration-option {
            flex: 1;
            min-width: 120px;
            padding: 0.75rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .duration-option:hover {
            border-color: rgba(0, 255, 231, 0.5);
            background: rgba(0, 255, 231, 0.1);
            transform: translateY(-2px);
        }

        .duration-option.selected {
            background: linear-gradient(135deg, rgba(0, 255, 231, 0.2), rgba(106, 90, 249, 0.2));
            border-color: rgba(0, 255, 231, 0.6);
            box-shadow: 0 4px 12px rgba(0, 255, 231, 0.3);
        }

        .duration-option strong {
            display: block;
            color: #00ffe7;
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .duration-option span {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
        }

        .booking-summary {
            background: rgba(0, 255, 231, 0.05);
            border: 1px solid rgba(0, 255, 231, 0.2);
            border-radius: 10px;
            padding: 1rem;
            margin-top: 1rem;
        }

        .booking-summary h4 {
            color: #00ffe7;
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .summary-item:last-child {
            border-bottom: none;
            font-weight: 600;
            font-size: 1.1rem;
            color: #00ffe7;
            margin-top: 0.5rem;
            padding-top: 1rem;
            border-top: 2px solid rgba(0, 255, 231, 0.3);
        }

        .summary-item span:first-child {
            color: rgba(255, 255, 255, 0.7);
        }

        .summary-item span:last-child {
            color: #fff;
        }

        .booking-submit-btn {
            width: 100%;
            padding: 0.85rem;
            background: linear-gradient(135deg, #00ffe7, #6a5af9);
            border: none;
            border-radius: 10px;
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .booking-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 255, 231, 0.4);
        }

        .booking-submit-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        @media (max-width: 768px) {
            .booking-modal-content {
                max-width: 95%;
                padding: 1rem;
            }

            .time-slot-grid {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            }

            .duration-options {
                flex-direction: column;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .gemstone-controls {
                flex-direction: column;
            }

            .search-box {
                max-width: 100%;
            }

            .filter-buttons {
                justify-content: center;
            }
        }
      
    /* Navbar - Enhanced with Modern Animations */
    .navbar {
      background: rgba(15, 15, 20, 0.85) !important;
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid rgba(0, 255, 231, 0.1);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 0.75rem 0;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar.scrolled {
      background: rgba(15, 15, 20, 0.98) !important;
      box-shadow: 0 8px 40px rgba(0, 255, 231, 0.25);
      border-bottom: 1px solid rgba(0, 255, 231, 0.3);
      padding: 0.5rem 0;
    }

    .navbar-brand {
      font-weight: 700;
      font-size: 1.4rem;
      letter-spacing: 2px;
      color: #fff !important;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .navbar-brand i {
      font-size: 1.5rem;
      background: linear-gradient(135deg, #00ffe7, #6a5af9);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      transition: all 0.4s ease;
      animation: gemRotate 3s ease-in-out infinite;
    }

    @keyframes gemRotate {
      0%, 100% { transform: rotate(0deg) scale(1); }
      50% { transform: rotate(180deg) scale(1.1); }
    }

    .navbar-brand:hover {
      color: #00ffe7 !important;
      transform: translateY(-2px);
    }

    .navbar-brand:hover i {
      animation: gemRotate 1s ease-in-out infinite;
      filter: drop-shadow(0 0 10px rgba(0, 255, 231, 0.8));
    }

    /* Enhanced Nav Links with Animated Underline */
    .navbar-nav {
      gap: 0.25rem;
    }

    .navbar-nav .nav-link {
      color: rgba(255, 255, 255, 0.85);
      font-weight: 500;
      padding: 0.75rem 1.25rem;
      position: relative;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 8px;
      margin: 0 0.25rem;
      overflow: hidden;
    }

    .navbar-nav .nav-link::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #00ffe7, #6a5af9, #00ffe7);
      background-size: 200% 100%;
      transform: translateX(-50%);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 2px;
    }

    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(0, 255, 231, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .navbar-nav .nav-link:hover {
      color: #fff;
      transform: translateY(-2px);
      background: rgba(0, 255, 231, 0.05);
    }

    .navbar-nav .nav-link:hover::before {
      width: 80%;
      animation: gradientShift 2s ease infinite;
    }

    .navbar-nav .nav-link:hover::after {
      left: 100%;
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .navbar-nav .nav-link.active {
      color: #00ffe7 !important;
      background: rgba(0, 255, 231, 0.1);
      box-shadow: 0 0 20px rgba(0, 255, 231, 0.2);
    }

    .navbar-nav .nav-link.active::before {
      width: 80%;
      background: linear-gradient(90deg, #00ffe7, #6a5af9);
    }

    /* Mobile Menu Toggler - Animated */
    .navbar-toggler {
      border: 2px solid rgba(0, 255, 231, 0.3);
      border-radius: 8px;
      padding: 0.5rem 0.75rem;
      transition: all 0.3s ease;
      background: rgba(0, 255, 231, 0.05);
    }

    .navbar-toggler:focus {
      box-shadow: 0 0 0 0.25rem rgba(0, 255, 231, 0.25);
      border-color: #00ffe7;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 255, 231, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      transition: all 0.3s ease;
    }

    .navbar-toggler:hover {
      border-color: #00ffe7;
      background: rgba(0, 255, 231, 0.1);
      transform: scale(1.05);
    }

    .navbar-toggler[aria-expanded="true"] {
      border-color: #00ffe7;
      background: rgba(0, 255, 231, 0.15);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
      transform: rotate(90deg);
    }

    /* Mobile Menu Backdrop Overlay */
    .navbar-collapse::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      z-index: -1;
    }

    .navbar-collapse.show::before {
      opacity: 1;
      visibility: visible;
    }

    /* Mobile Menu - Slide Animation */
    @media (max-width: 991.98px) {
      .navbar-collapse {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 20, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-top: 1px solid rgba(0, 255, 231, 0.2);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        padding: 1.5rem;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .navbar-collapse.show {
        transform: translateX(0);
      }

      .navbar-collapse::before {
        top: 70px;
      }

      .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
      }

      .navbar-nav .nav-link {
        padding: 1rem 1.5rem;
        margin: 0;
        border-radius: 12px;
        text-align: left;
        animation: slideInLeft 0.4s ease forwards;
        opacity: 0;
      }

      .navbar-nav .nav-link:nth-child(1) { animation-delay: 0.1s; }
      .navbar-nav .nav-link:nth-child(2) { animation-delay: 0.15s; }
      .navbar-nav .nav-link:nth-child(3) { animation-delay: 0.2s; }
      .navbar-nav .nav-link:nth-child(4) { animation-delay: 0.25s; }
      .navbar-nav .nav-link:nth-child(5) { animation-delay: 0.3s; }

      @keyframes slideInLeft {
        from {
          opacity: 0;
          transform: translateX(-30px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .navbar-nav .nav-link::before {
        left: 0;
        transform: translateX(0);
        width: 3px;
        height: 100%;
        bottom: 0;
      }

      .navbar-nav .nav-link:hover::before,
      .navbar-nav .nav-link.active::before {
        width: 3px;
        height: 100%;
      }
    }

    /* Smooth Scroll Behavior */
    html {
      scroll-behavior: smooth;
    }

    /* Navbar Brand Responsive */
    @media (max-width: 576px) {
      .navbar-brand {
        font-size: 1.1rem;
        letter-spacing: 1px;
      }

      .navbar-brand i {
        font-size: 1.2rem;
      }
    }

    /* Hero Section */
    .hero {
      padding: 120px 0 140px;
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      align-items: center;
      z-index: 0;
      margin-bottom: 0;
    }

    .hero-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      z-index: 0;
      object-fit: cover;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at top left, rgba(0, 255, 231, 0.18), transparent 55%),
                 radial-gradient(circle at bottom right, rgba(255, 0, 204, 0.20), transparent 55%),
                 rgba(0, 0, 0, 0.60);
      z-index: 1;
    }

    .hero::after {
      content: '';
      position: absolute;
      width: 420px;
      height: 420px;
      right: -120px;
      top: 10%;
      background: radial-gradient(circle, rgba(0, 255, 231, 0.12), transparent 65%);
      filter: blur(4px);
      z-index: 1;
      pointer-events: none;
    }

    .hero .container {
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-weight: 700;
      animation: fadeInUp 0.8s ease;
      font-size: clamp(2.4rem, 4vw, 3.4rem);
      line-height: 1.15;
    }

    .hero h1.gem-text {
      background: linear-gradient(120deg, #ffffff 0%, #00ffe7 35%, #ff8af2 80%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 0 18px rgba(0, 255, 231, 0.35);
      letter-spacing: 0.03em;
    }

    .hero p.gem-text {
      color: #e5e7eb;
      max-width: 420px;
      font-size: 1rem;
      line-height: 1.7;
      margin-top: 1.2rem;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0.5rem;
      padding: 0.35rem 0.85rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid rgba(148, 163, 184, 0.6);
      color: #e5e7eb;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 0.9rem;
    }

    .hero-badge i {
      color: #00ffe7;
      font-size: 0.95rem;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Animated Button */
    .btn-custom {
      background-color: transparent;
      border: 2px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      padding: 14px 32px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 50px;
      font-weight: 600;
      letter-spacing: 0.5px;
      backdrop-filter: blur(10px);
    }

    .btn-custom::before {
      content: "";
      position: absolute;
      inset: 0;
      padding: 2px;
      border-radius: inherit;
      background: linear-gradient(90deg, #6a5af9, #00ffe7, #ff00cc, #6a5af9);
      background-size: 300% 300%;
      animation: borderLoop 6s linear infinite;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      z-index: -1;
    }

    .btn-custom:hover {
      background: linear-gradient(135deg, rgba(0, 255, 231, 0.2), rgba(106, 90, 249, 0.2));
      border-color: rgba(0, 255, 231, 0.6);
      color: #fff;
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 255, 231, 0.4);
    }

    @keyframes borderLoop {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* Modern Glass Card with Enhanced Effects */
    .card-glass {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      text-align: center;
      color: #e5e7eb;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .card-glass::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(0, 255, 231, 0.15) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .card-glass::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      padding: 1px;
      background: linear-gradient(135deg, rgba(0, 255, 231, 0.3), rgba(106, 90, 249, 0.3));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .card-glass:hover::before {
      opacity: 1;
      animation: rotate 4s linear infinite;
    }

    .card-glass:hover::after {
      opacity: 1;
    }

    @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .card-glass:hover {
      border-color: rgba(0, 255, 231, 0.5);
      box-shadow: 0 20px 60px rgba(0, 255, 231, 0.4), 0 0 0 1px rgba(0, 255, 231, 0.2);
      transform: translateY(-12px) scale(1.03);
      background: rgba(255, 255, 255, 0.05);
    }

    .card-glass img {
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      filter: brightness(0.95);
    }

    .card-glass:hover img {
      transform: scale(1.15) rotate(3deg);
      filter: brightness(1.1);
    }

    /* Astrologer Section - Redesigned (from gem3.html) */
    .astrologer-sec {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 80px 0;
    }
    .astrologer-sec h2, .astrologer-sec h6 { color: #18181B; }
    .consultation-card { background: #fff; border-radius: 20px; padding: 2rem; height: 100%; border: 3px solid transparent; transition: all 0.4s ease; cursor: pointer; position: relative; overflow: hidden; }
 
    .consultation-card:hover::before { transform: scaleX(1); }
    .consultation-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); border-color: #00ffe7; }
    .online-card:hover { border-color: #0d6efd; }
    .direct-card:hover { border-color: #198754; }
    .consultation-icon { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; transition: all 0.4s ease; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
    .online-card .consultation-icon { background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%); }
    .direct-card .consultation-icon { background: linear-gradient(135deg, #198754 0%, #20c997 100%); }
    .consultation-card:hover .consultation-icon { transform: scale(1.1) rotate(360deg); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
    .consultation-icon i { font-size: 2.5rem; color: #fff; }
    .consultation-card h5 { font-weight: 700; margin-bottom: 1rem; color: #18181B; text-align: center; }
    .consultation-card p { text-align: center; color: #666; margin-bottom: 1.5rem; font-size: 0.95rem; }
    .feature-list { list-style: none; padding: 0; margin-bottom: 2rem; }
    .feature-list li { display: flex; align-items: center; padding: 0.5rem 0; color: #444; font-size: 0.9rem; }
    .feature-list i { color: #0d7dfb; margin-right: 0.75rem; font-size: 1rem; }
    .consultation-btn { width: 100%; padding: 1rem; background: linear-gradient(135deg, #6a5af9 0%, #00ffe7 100%); border: none; border-radius: 50px; color: #fff; font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 0.5rem; position: relative; overflow: hidden; }
    .online-card .consultation-btn { background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%); }
    .direct-card .consultation-btn { background: linear-gradient(135deg, #198754 0%, #20c997 100%); }
    .consultation-btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255,255,255,0.3); border-radius: 50%; transform: translate(-50%, -50%); transition: width 0.6s, height 0.6s; }
    .consultation-btn:hover::before { width: 300px; height: 300px; }
    .consultation-btn:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
    .consultation-btn i { transition: transform 0.3s ease; }
    .consultation-btn:hover i { transform: translateX(5px); }
    .expert-profile { position: relative; }
    .expert-image-wrapper { position: relative; border-radius: 210px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.15); cursor: pointer; transition: all 0.4s ease; max-width: 320px; margin: 0 auto; }
    .expert-image-wrapper:hover { transform: scale(1.05); box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
    .expert-image { width: 100%; display: block; transition: all 0.4s ease; }
    .expert-image-wrapper:hover .expert-image { filter: brightness(0.8); }
    .play-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: #fff; opacity: 0; transition: all 0.4s ease; z-index: 10; }
    .expert-image-wrapper:hover .play-overlay { opacity: 1; }
    .play-overlay i { font-size: 4rem; margin-bottom: 0.5rem; display: block; animation: pulse-play 2s infinite; }
    @keyframes pulse-play { 0%,100%{ transform: scale(1);} 50%{ transform: scale(1.1);} }
    .play-overlay span { font-size: 1rem; font-weight: 600; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
    /* Always-visible play button */
    .play-fab {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80px;
      height: 80px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      color: #fff;
      background: radial-gradient(120px 120px at 50% 50%, rgba(13,110,253,0.25), transparent 60%), linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
      box-shadow: 0 10px 24px rgba(13,110,253,0.35);
      border: 0;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      overflow: hidden;
    }
    .play-fab::before {
      content: '';
      position: absolute;
      inset: -10px;
      border-radius: inherit;
      background: radial-gradient(100px 100px at 50% 50%, rgba(255,255,255,0.25), transparent 70%);
      opacity: 0;
      transition: opacity 0.2s ease;
      pointer-events: none;
    }
    .play-fab.ripple::after {
      content: '';
      position: absolute;
      width: 10px;
      height: 10px;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background: rgba(255,255,255,0.5);
      border-radius: 999px;
      animation: btn-ripple 600ms ease-out forwards;
      pointer-events: none;
    }
    @keyframes btn-ripple {
      0% { width: 10px; height: 10px; opacity: 0.4; }
      100% { width: 200px; height: 200px; opacity: 0; }
    }
    .play-fab:hover { transform: translate(-50%, -50%) scale(1.04); box-shadow: 0 14px 28px rgba(13,110,253,0.45); }
    .play-fab:hover::before { opacity: 1; }
    .play-fab i { font-size: 2.2rem; }
    @media (max-width: 992px) { .expert-image-wrapper { max-width: 280px; } .play-fab { width: 68px; height: 68px; } .play-fab i { font-size: 1.9rem; } }
    @media (max-width: 576px) { .expert-image-wrapper { max-width: 240px; } .play-fab { width: 56px; height: 56px; } .play-fab i { font-size: 1.6rem; } }
    .expert-info { margin-top: 1.5rem; text-align: center; }
    .expert-info h3 { font-weight: 700; color: #18181B; margin-bottom: 0.5rem; }
    .expert-title { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
    .expert-stats { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
    .stat-item { text-align: center; }
    .stat-item i { display: block; font-size: 1.5rem; color: #0d7dfb; margin-bottom: 0.5rem; }
    .stat-item span { display: block; font-size: 0.85rem; color: #666; font-weight: 600; }

    /* Video Section */
    .video-showcase {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 255, 231, 0.2);
      cursor: pointer;
      transition: all 0.4s ease;
      margin-bottom: 2rem;
    }

    .video-showcase:hover {
      transform: scale(1.02);
      box-shadow: 0 30px 80px rgba(0, 255, 231, 0.4);
    }

    .video-showcase img {
      width: 100%;
      display: block;
    }

    .video-play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100px;
      height: 100px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 10;
    }

    .video-play-button::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 120px;
      height: 120px;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      animation: pulse-ring 2s infinite;
    }

    @keyframes pulse-ring {
      0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
      }
      100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
      }
    }

    .video-showcase:hover .video-play-button {
      transform: translate(-50%, -50%) scale(1.1);
      background: rgba(0, 255, 231, 0.9);
    }

    .video-play-button i {
      font-size: 3rem;
      color: #6a5af9;
      margin-left: 8px;
    }

    .video-showcase:hover .video-play-button i {
      color: #fff;
    }

    /* Expert Info Cards */
    .expert-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
      transition: all 0.4s ease;
      height: 100%;
    }

    .expert-card:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: #00ffe7;
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 255, 231, 0.3);
    }

    .expert-card-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      background: linear-gradient(135deg, #6a5af9 0%, #00ffe7 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
    }

    .expert-card:hover .expert-card-icon {
      transform: rotate(360deg) scale(1.1);
    }

    .expert-card-icon i {
      font-size: 2.5rem;
      color: #fff;
    }

    .expert-card h4 {
      color: #fff;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .expert-card p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* CTA Buttons */
    .consultation-cta {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-top: 3rem;
      flex-wrap: wrap;
    }

    .cta-btn {
      padding: 1rem 2.5rem;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      position: relative;
      overflow: hidden;
      border: 2px solid transparent;
    }

    .cta-btn-primary {
      background: linear-gradient(135deg, #6a5af9 0%, #00ffe7 100%);
      color: #fff;
    }

    .cta-btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(106, 90, 249, 0.5);
      color: #fff;
    }

    .cta-btn-secondary {
      background: transparent;
      border-color: #00ffe7;
      color: #00ffe7;
    }

    .cta-btn-secondary:hover {
      background: #00ffe7;
      color: #0f0f0f;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 255, 231, 0.5);
    }

    .cta-btn i {
      transition: transform 0.3s ease;
    }

    .cta-btn:hover i {
      transform: translateX(5px);
    }

    /* Video Modal - Fixed */
    .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      justify-content: center;
      align-items: center;
      z-index: 10000;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .overlay-content {
      position: relative;
      width: 90%;
      max-width: 900px;
      animation: slideUp 0.4s ease;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .close-btn {
      position: absolute;
      top: -50px;
      right: 0;
      font-size: 40px;
      color: #fff;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 10001;
    }

    .close-btn:hover {
      color: #ff00cc;
      transform: rotate(90deg) scale(1.2);
    }

    .overlay video {
      width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    }

    /* (gem3.html style) keep default gemstone-card styles below */

    .gemstone-card {
      backdrop-filter: blur(10px);
      background: rgba(255, 255, 255, 0.05);
      border-radius: 15px;
      padding: 20px;
      color: #fff;
      transition: all 0.4s ease;
      cursor: pointer;
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
    }

    .gemstone-card::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      transition: all 0.5s ease;
      border-radius: 50%;
    }

    .gemstone-card:hover::after {
      width: 300px;
      height: 300px;
    }

    .gemstone-card:hover {
      transform: translateY(-10px) scale(1.05);
      border-color: #00ffe7;
      box-shadow: 0 15px 40px rgba(0, 255, 231, 0.3);
    }

    .gemstone-card img {
      transition: transform 0.4s ease;
    }

    .gemstone-card:hover img {
      transform: scale(1.15) rotate(-5deg);
    }

    /* Knowledge Cards */
    .knowledge {
      padding: 80px 0;
    }

    .knowledge-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 30px;
      height: 100%;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      border: 1.5px solid rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
    }

    .knowledge-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 0;
      background: linear-gradient(180deg, #00ffe7, #6a5af9);
      transition: height 0.4s ease;
    }

    .knowledge-card:hover::before {
      height: 100%;
    }

    .knowledge-card:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(0, 255, 231, 0.5);
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(0, 255, 231, 0.3);
    }

    .knowledge-card i {
      transition: transform 0.4s ease;
    }

    .knowledge-card:hover i {
      transform: scale(1.15) rotate(5deg);
    }

    /* Testimonials */
    .testimonial-section {
      padding: 80px 0;
    }

    .testimonial-section .card {
      transition: all 0.4s ease;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.05);
      color: #fff;
      border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .testimonial-section .card:hover {
      transform: translateY(-10px) rotate(2deg);
      box-shadow: 0 15px 40px rgba(0, 240, 255, 0.3);
      border-color: #00f0ff;
    }

    /* FAQ Section */
    .faq-section {
      padding: 80px 0;
      background: rgba(255, 255, 255, 0.02);
      position: relative;
    }

    .faq-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0, 255, 231, 0.3), transparent);
    }

    .faq-container {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .faq-item {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      border: 1.5px solid rgba(255, 255, 255, 0.1);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      border-color: rgba(0, 255, 231, 0.3);
      box-shadow: 0 8px 24px rgba(0, 255, 231, 0.1);
    }

    .faq-item.active {
      border-color: rgba(0, 255, 231, 0.5);
      background: rgba(255, 255, 255, 0.08);
    }

    .faq-question {
      padding: 1.5rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
      user-select: none;
    }

    .faq-question:hover {
      background: rgba(255, 255, 255, 0.03);
    }

    .faq-question span {
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
      flex: 1;
    }

    .faq-question i {
      font-size: 1.25rem;
      color: #00ffe7;
      transition: transform 0.3s ease;
      margin-left: 1rem;
      flex-shrink: 0;
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      padding: 0 2rem;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 0 2rem 1.5rem 2rem;
    }

    .faq-answer p {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.8;
      margin: 0;
      font-size: 1rem;
    }

    /* Responsive FAQ */
    @media (max-width: 768px) {
      .faq-section {
        padding: 60px 0;
      }

      .faq-question {
        padding: 1.25rem 1.5rem;
      }

      .faq-question span {
        font-size: 1rem;
      }

      .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
      }

      .faq-answer p {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .faq-question {
        padding: 1rem 1.25rem;
      }

      .faq-question span {
        font-size: 0.95rem;
      }

      .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
      }

      .faq-answer p {
        font-size: 0.85rem;
      }
    }

    /* Enhanced Footer */
    footer {
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
      color: #fff;
      padding: 0;
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #6a5af9, #00ffe7, #ff00cc);
    }

    .footer-top {
      padding: 80px 0 50px;
      background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(15, 15, 20, 0.98) 100%);
      position: relative;
    }

    .footer-top::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 50%, rgba(106, 90, 249, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 231, 0.1) 0%, transparent 50%);
      pointer-events: none;
    }

    .footer-brand {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #00ffe7 0%, #6a5af9 50%, #ff00cc 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-description {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.9;
      margin-bottom: 2rem;
      font-size: 0.95rem;
    }

    /* Footer Contact Items */
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.3s ease;
      height: 100%;
    }

    .footer-contact-item:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(0, 255, 231, 0.3);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .contact-icon-wrapper {
      width: 50px;
      height: 50px;
      min-width: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      background: linear-gradient(135deg, rgba(106, 90, 249, 0.2), rgba(0, 255, 231, 0.2));
      border: 2px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .footer-contact-item:first-of-type .contact-icon-wrapper,
    .col-md-4:first-of-type .contact-icon-wrapper {
      color: #00ffe7;
      border-color: rgba(0, 255, 231, 0.3);
    }

    .footer-contact-item:nth-of-type(2) .contact-icon-wrapper,
    .col-md-4:nth-of-type(2) .contact-icon-wrapper {
      color: #6a5af9;
      border-color: rgba(106, 90, 249, 0.3);
    }

    .footer-contact-item:nth-of-type(3) .contact-icon-wrapper,
    .col-md-4:last-of-type .contact-icon-wrapper {
      color: #ff00cc;
      border-color: rgba(255, 0, 204, 0.3);
    }

    .footer-contact-item:hover .contact-icon-wrapper {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 4px 12px rgba(0, 255, 231, 0.3);
    }

    .contact-info {
      flex: 1;
    }

    .contact-info strong {
      display: block;
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      letter-spacing: 0.5px;
    }

    .contact-info p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.95rem;
      margin: 0;
      line-height: 1.6;
    }

    .contact-info a:hover {
      color: #00ffe7 !important;
    }

    .footer-section {
      position: relative;
      z-index: 1;
    }

    .footer-section h5 {
      font-weight: 700;
      margin-bottom: 1.75rem;
      position: relative;
      padding-bottom: 0.75rem;
      font-size: 1.15rem;
      color: #fff;
      letter-spacing: 0.5px;
    }

    .footer-section h5::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #6a5af9, #00ffe7);
      border-radius: 2px;
      box-shadow: 0 2px 8px rgba(0, 255, 231, 0.3);
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 0.75rem;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-flex;
      align-items: center;
      padding: 0.25rem 0;
      font-size: 0.95rem;
    }

    .footer-links a:hover {
      color: #00ffe7;
      transform: translateX(8px);
      text-shadow: 0 0 10px rgba(0, 255, 231, 0.5);
    }

    .footer-links a i {
      margin-right: 8px;
      font-size: 0.9rem;
    }

    /* Social Links */
    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
      justify-content: flex-start;
      align-items: flex-start;
    }

    .social-link {
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .social-link::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: radial-gradient(circle, rgba(0, 255, 231, 0.3) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      transition: all 0.4s ease;
      border-radius: 50%;
    }

    .social-link:hover::before {
      width: 100px;
      height: 100px;
    }

    .social-link:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: #00ffe7;
      transform: translateY(-5px) rotate(360deg);
      color: #00ffe7;
      box-shadow: 0 8px 20px rgba(0, 255, 231, 0.3);
    }

    /* Newsletter / Business Hours Box */
    .newsletter-box {
      background: linear-gradient(135deg, rgba(106, 90, 249, 0.1) 0%, rgba(0, 255, 231, 0.1) 100%);
      border: 2px solid rgba(255, 255, 255, 0.15);
      border-radius: 20px;
      padding: 2.5rem;
      backdrop-filter: blur(20px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .newsletter-box::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(0, 255, 231, 0.1) 0%, transparent 70%);
      animation: pulse 4s ease-in-out infinite;
    }

    .newsletter-box:hover {
      border-color: rgba(0, 255, 231, 0.4);
      box-shadow: 0 12px 40px rgba(0, 255, 231, 0.2);
      transform: translateY(-2px);
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 0.8; }
    }

    .newsletter-form {
      display: flex;
      margin-top: 1rem;
      gap: 0.5rem;
    }

    .newsletter-input {
      flex: 1;
      padding: 0.75rem 1.25rem;
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.05);
      color: #fff;
      transition: all 0.3s ease;
    }

    .newsletter-input:focus {
      outline: none;
      border-color: #00ffe7;
      background: rgba(255, 255, 255, 0.1);
      box-shadow: 0 0 20px rgba(0, 255, 231, 0.2);
    }

    .newsletter-input::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .newsletter-btn {
      padding: 0.75rem 2rem;
      background: linear-gradient(135deg, #6a5af9, #00ffe7);
      border: none;
      border-radius: 30px;
      color: #fff;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .newsletter-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 25px rgba(106, 90, 249, 0.4);
    }

    /* Footer Bottom */
    .footer-bottom {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
      padding: 2rem 0;
      border-top: 2px solid rgba(255, 255, 255, 0.08);
      position: relative;
    }

    .footer-bottom::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0, 255, 231, 0.3), transparent);
    }

    .footer-bottom-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .copyright {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.95rem;
      font-weight: 500;
    }

    .footer-bottom-links {
      display: flex;
      gap: 2.5rem;
      flex-wrap: wrap;
    }

    .footer-bottom-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      padding: 0.25rem 0;
    }

    .footer-bottom-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #6a5af9, #00ffe7);
      transition: width 0.3s ease;
    }

    .footer-bottom-links a:hover {
      color: #00ffe7;
      text-shadow: 0 0 8px rgba(0, 255, 231, 0.5);
    }

    .footer-bottom-links a:hover::after {
      width: 100%;
    }

    /* Scroll to Top Button */
    .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #6a5af9, #00ffe7);
      border-radius: 50%;
      display: none;
      align-items: center;
      justify-content: center;
      color: #fff;
      cursor: pointer;
      z-index: 9999;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(106, 90, 249, 0.4);
    }

    .scroll-top:hover {
      transform: translateY(-5px) scale(1.1);
      box-shadow: 0 10px 30px rgba(106, 90, 249, 0.6);
    }

    .scroll-top.active {
      display: flex;
    }

    /* WhatsApp Floating Button */
    .whatsapp-fab {
      position: fixed;
      right: 30px;
      bottom: 95px; /* sits above scroll-to-top */
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: linear-gradient(135deg, #25D366, #15b354);
      color: #fff;
      display: grid;
      place-items: center;
      text-decoration: none;
      z-index: 9999;
      box-shadow: 0 10px 24px rgba(21, 179, 84, 0.35);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      overflow: hidden;
      animation: wa-pop 900ms ease-out 600ms both;
    }

    .whatsapp-fab i { font-size: 1.8rem; }

    .whatsapp-fab:hover {
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 14px 32px rgba(21, 179, 84, 0.45);
    }

    .whatsapp-fab::before {
      content: '';
      position: absolute;
      inset: -12px;
      border-radius: inherit;
      background: radial-gradient(100px 100px at 50% 50%, rgba(255,255,255,0.25), transparent 70%);
      opacity: 0;
      transition: opacity 0.2s ease;
      pointer-events: none;
    }

    .whatsapp-fab:hover::before { opacity: 1; }

    .whatsapp-fab.ripple::after {
      content: '';
      position: absolute;
      width: 10px;
      height: 10px;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background: rgba(255,255,255,0.5);
      border-radius: 999px;
      animation: btn-ripple 600ms ease-out forwards;
      pointer-events: none;
    }

    @keyframes wa-pop {
      0% { transform: translateY(12px) scale(0.9); opacity: 0; }
      100% { transform: translateY(0) scale(1); opacity: 1; }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hidemobile{
            display: none;
        }
      .footer-top {
        padding: 40px 0 30px;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .newsletter-btn {
        width: 100%;
      }

      .footer-bottom-content {
        flex-direction: column;
        text-align: center;
      }

      .footer-bottom-links {
        justify-content: center;
      }
    }

    /* Particle Effect (Optional decoration) */
    .particle {
      position: absolute;
      width: 3px;
      height: 3px;
      background: rgba(0, 255, 231, 0.5);
      border-radius: 50%;
      animation: float-particle 10s infinite;
    }

    @keyframes float-particle {
      0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
      }
      50% {
        opacity: 1;
      }
    }

    /* About Us Section Styles */
    .about-section {
      padding: 100px 0;
      background: linear-gradient(180deg, #0f0f1a 0%, #151520 50%, #0a0a0f 100%);
      position: relative;
      overflow: hidden;
      min-height: calc(100vh - 70px);
    }

    .about-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 30%, rgba(0, 255, 231, 0.08) 0%, transparent 50%),
                  radial-gradient(circle at 80% 70%, rgba(106, 90, 249, 0.08) 0%, transparent 50%);
      pointer-events: none;
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1.25rem;
      background: rgba(0, 255, 231, 0.1);
      border: 1px solid rgba(0, 255, 231, 0.3);
      border-radius: 50px;
      color: #00ffe7;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 1.5rem;
    }

    .section-badge i {
      font-size: 1rem;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      background: linear-gradient(135deg, #ffffff 0%, #00ffe7 50%, #6a5af9 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.7);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .about-card {
      background: rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      padding: 2.5rem;
      border: 1.5px solid rgba(255, 255, 255, 0.1);
      height: 100%;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .about-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 0;
      background: linear-gradient(180deg, #00ffe7, #6a5af9);
      transition: height 0.4s ease;
    }

    .about-card:hover::before {
      height: 100%;
    }

    .about-card:hover {
      transform: translateY(-8px);
      border-color: rgba(0, 255, 231, 0.4);
      box-shadow: 0 20px 60px rgba(0, 255, 231, 0.2);
      background: rgba(255, 255, 255, 0.06);
    }

    .about-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, rgba(0, 255, 231, 0.2), rgba(106, 90, 249, 0.2));
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: all 0.4s ease;
    }

    .about-icon i {
      font-size: 2rem;
      color: #00ffe7;
    }

    .about-card:hover .about-icon {
      transform: rotate(360deg) scale(1.1);
      background: linear-gradient(135deg, rgba(0, 255, 231, 0.3), rgba(106, 90, 249, 0.3));
    }

    .about-card h3 {
      color: #fff;
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .about-card p {
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.8;
      margin-bottom: 1rem;
      font-size: 1rem;
    }

    .mission-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .mission-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
    }

    .mission-list li i {
      color: #00ffe7;
      font-size: 1.1rem;
      margin-top: 0.2rem;
      flex-shrink: 0;
    }

    /* Why Choose Us Section */
    .why-choose-section {
      margin: 4rem 0;
    }

    .why-choose-section h3 {
      color: #fff;
      font-size: 2.25rem;
      font-weight: 700;
      margin-bottom: 3rem;
    }

    .feature-card {
      background: rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(20px);
      border-radius: 16px;
      padding: 2rem;
      border: 1.5px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(0, 255, 231, 0.1) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.6s ease;
    }

    .feature-card:hover::before {
      opacity: 1;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      border-color: rgba(0, 255, 231, 0.4);
      box-shadow: 0 20px 60px rgba(0, 255, 231, 0.2);
      background: rgba(255, 255, 255, 0.06);
    }

    .feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      background: linear-gradient(135deg, rgba(0, 255, 231, 0.2), rgba(106, 90, 249, 0.2));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
    }

    .feature-icon i {
      font-size: 2.5rem;
      color: #00ffe7;
    }

    .feature-card:hover .feature-icon {
      transform: rotate(360deg) scale(1.1);
      background: linear-gradient(135deg, rgba(0, 255, 231, 0.3), rgba(106, 90, 249, 0.3));
    }

    .feature-card h4 {
      color: #fff;
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .feature-card p {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
      font-size: 0.95rem;
      margin: 0;
    }

    /* Values Section */
    .values-section {
      margin: 4rem 0;
    }

    .value-card {
      background: rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      padding: 2.5rem;
      border: 1.5px solid rgba(255, 255, 255, 0.1);
      height: 100%;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .value-card::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100px;
      height: 100px;
      background: radial-gradient(circle, rgba(0, 255, 231, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      transform: translate(30%, -30%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .value-card:hover::after {
      opacity: 1;
    }

    .value-card:hover {
      transform: translateY(-8px);
      border-color: rgba(0, 255, 231, 0.4);
      box-shadow: 0 20px 60px rgba(0, 255, 231, 0.2);
      background: rgba(255, 255, 255, 0.06);
    }

    .value-number {
      font-size: 4rem;
      font-weight: 800;
      background: linear-gradient(135deg, #00ffe7, #6a5af9);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height: 1;
      margin-bottom: 1rem;
      opacity: 0.3;
    }

    .value-card h4 {
      color: #fff;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .value-card p {
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.8;
      font-size: 1rem;
      margin: 0;
    }

    /* Responsive Styles for About Page */
    @media (max-width: 768px) {
      .about-section {
        padding: 60px 0;
      }

      .about-card {
        padding: 2rem;
      }

      .feature-card {
        padding: 1.5rem;
      }

      .value-card {
        padding: 2rem;
      }
    }

    /* Gemstones Section Styles */
    .gemstones-section {
      background-image: url("../../img/bghero2.png");
      background-repeat: no-repeat;
      background-size: cover;
      background-attachment: scroll;
      background-position: center center;
      padding: 100px 0 80px;
      position: relative;
      overflow: hidden;
      min-height: calc(100vh - 70px);
    }

    .gemstones-section .container {
      position: relative;
      z-index: 1;
    }

    .gemstones-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 30%, rgba(0, 255, 231, 0.08) 0%, transparent 50%),
                  radial-gradient(circle at 80% 70%, rgba(106, 90, 249, 0.08) 0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
    }

    /* Search and Filter Controls */
    .gemstone-controls {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
      align-items: center;
      margin-bottom: 3rem;
    }

    .search-box {
      position: relative;
      flex: 1;
      max-width: 400px;
    }

    .search-box i {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(255, 255, 255, 0.5);
      font-size: 1.1rem;
    }

    .search-input {
      width: 100%;
      padding: 1rem 1.25rem 1rem 3.5rem;
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(10px);
      border: 1.5px solid rgba(255, 255, 255, 0.15);
      border-radius: 50px;
      color: #fff;
      font-size: 0.95rem;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      font-weight: 400;
    }

    .search-input:focus {
      outline: none;
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(0, 255, 231, 0.6);
      box-shadow: 0 0 0 4px rgba(0, 255, 231, 0.1), 0 8px 32px rgba(0, 255, 231, 0.3);
      transform: translateY(-2px);
    }

    .search-input::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .filter-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .filter-btn {
      padding: 0.75rem 1.75rem;
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(10px);
      border: 1.5px solid rgba(255, 255, 255, 0.15);
      border-radius: 50px;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 500;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
    }

    .filter-btn:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(0, 255, 231, 0.5);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0, 255, 231, 0.2);
    }

    .filter-btn.active {
      background: linear-gradient(135deg, rgba(106, 90, 249, 0.9), rgba(0, 255, 231, 0.9));
      border-color: transparent;
      color: #fff;
      box-shadow: 0 8px 32px rgba(0, 255, 231, 0.4);
      transform: translateY(-2px);
    }

    /* Contact Section Styles */
    .contact-section {
      padding: 100px 0;
      background: linear-gradient(180deg, #0f0f1a 0%, #151520 50%, #0a0a0f 100%);
      position: relative;
      overflow: hidden;
      min-height: calc(100vh - 70px);
    }

    .contact-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 30%, rgba(0, 255, 231, 0.08) 0%, transparent 50%),
                  radial-gradient(circle at 80% 70%, rgba(106, 90, 249, 0.08) 0%, transparent 50%);
      pointer-events: none;
    }

    /* Contact Info Cards */
    .contact-info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-bottom: 4rem;
    }

    .contact-info-card {
      background: rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      padding: 2.5rem;
      border: 1.5px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .contact-info-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #00ffe7, #6a5af9);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .contact-info-card:hover::before {
      transform: scaleX(1);
    }

    .contact-info-card:hover {
      transform: translateY(-8px);
      border-color: rgba(0, 255, 231, 0.4);
      box-shadow: 0 20px 60px rgba(0, 255, 231, 0.2);
      background: rgba(255, 255, 255, 0.06);
    }

    .contact-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      background: linear-gradient(135deg, rgba(0, 255, 231, 0.2), rgba(106, 90, 249, 0.2));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
    }

    .contact-icon i {
      font-size: 2.5rem;
      color: #00ffe7;
    }

    .contact-info-card:hover .contact-icon {
      transform: rotate(360deg) scale(1.1);
      background: linear-gradient(135deg, rgba(0, 255, 231, 0.3), rgba(106, 90, 249, 0.3));
    }

    .contact-info-card h4 {
      color: #fff;
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .contact-info-card p {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.8;
      font-size: 1rem;
      margin: 0;
    }

    .contact-info-card a {
      color: #00ffe7;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .contact-info-card a:hover {
      color: #6a5af9;
      text-decoration: underline;
    }

    /* Contact Form */
    .contact-form-container {
      background: rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      padding: 3rem;
      border: 1.5px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 3rem;
    }

    .form-group {
      margin-bottom: 1.5rem;
      position: relative;
    }

    .form-group label {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
      margin-bottom: 0.75rem;
      font-size: 0.95rem;
    }

    .form-group label i {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1rem;
    }

    .form-control {
      background: linear-gradient(135deg, rgba(15, 15, 20, 0.95) 0%, rgba(20, 20, 30, 0.9) 100%);
      border: 1.5px solid rgba(255, 255, 255, 0.12);
      border-radius: 12px;
      padding: 0.9rem 1.25rem;
      color: #fff;
      font-size: 0.95rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      width: 100%;
    }

    .form-control:focus {
      background: linear-gradient(135deg, rgba(15, 15, 20, 0.98) 0%, rgba(20, 20, 30, 0.95) 100%);
      border-color: #00ffe7;
      box-shadow: 0 0 0 3px rgba(0, 255, 231, 0.2), 0 4px 20px rgba(0, 255, 231, 0.15);
      outline: none;
      transform: translateY(-1px);
    }

    .form-control::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }

    .submit-btn {
      background: linear-gradient(135deg, #00ffe7, #6a5af9);
      border: none;
      border-radius: 12px;
      padding: 1rem 2.5rem;
      color: #fff;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 4px 20px rgba(0, 255, 231, 0.3);
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0, 255, 231, 0.4);
      background: linear-gradient(135deg, #6a5af9, #00ffe7);
    }

    .submit-btn:active {
      transform: translateY(0);
    }

    /* Business Hours Card */
    .business-hours-card {
      background: rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      padding: 2.5rem;
      border: 1.5px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 3rem;
    }

    .business-hours-card h4 {
      color: #00ffe7;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .business-hours-card h4 i {
      font-size: 1.75rem;
    }

    .hours-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .hours-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hours-list li:last-child {
      border-bottom: none;
    }

    .hours-list li span:first-child {
      color: rgba(255, 255, 255, 0.7);
      font-weight: 500;
    }

    .hours-list li span:last-child {
      color: #00ffe7;
      font-weight: 600;
    }

    .hours-list li.closed span:last-child {
      color: #ff00cc;
    }

    /* Social Media Section */
    .social-section {
      text-align: center;
      margin-top: 3rem;
    }

    .social-section h4 {
      color: #fff;
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .social-links {
      display: flex;
      justify-content: flex-start;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .social-link {
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.05);
      border: 1.5px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #00ffe7;
      font-size: 1.5rem;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .social-link:hover {
      background: linear-gradient(135deg, rgba(0, 255, 231, 0.2), rgba(106, 90, 249, 0.2));
      border-color: rgba(0, 255, 231, 0.4);
      transform: translateY(-5px) scale(1.1);
      box-shadow: 0 8px 25px rgba(0, 255, 231, 0.3);
      color: #fff;
    }

    /* Success Message */
    .success-message {
      display: none;
      background: rgba(16, 185, 129, 0.15);
      border: 1px solid rgba(16, 185, 129, 0.3);
      border-radius: 12px;
      padding: 1rem 1.5rem;
      margin-bottom: 1.5rem;
      color: #10b981;
      align-items: center;
      gap: 0.75rem;
    }

    .success-message.show {
      display: flex;
    }

    /* Responsive Styles for Gemstones and Contact Pages */
    @media (max-width: 768px) {
      .gemstones-section {
        padding: 60px 0;
      }

      .gemstone-controls {
        flex-direction: column;
      }

      .search-box {
        max-width: 100%;
      }

      .filter-buttons {
        justify-content: center;
      }

      .contact-section {
        padding: 60px 0;
      }

      .contact-form-container {
        padding: 2rem;
      }

      .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .business-hours-card {
        padding: 2rem;
      }
    }
