.search-icon {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            padding: 12px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            margin-right: 20px;
        }

        .search-icon:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        /* Search Popup Styles */
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .search-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .search-popup {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            background: white;
            border-radius: 20px;
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .search-overlay.active .search-popup {
            transform: translate(-50%, -50%) scale(1);
        }

        .search-header {
            padding: 20px;
            background: linear-gradient(135deg, #1e60aa 0%, #1e60aa 100%);
            color: white;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .search-input {
            flex: 1;
            border: none;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 12px 15px;
            border-radius: 25px;
            font-size: 16px;
            outline: none;
        }

        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .close-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.2s ease;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .search-results {
            max-height: 400px;
            overflow-y: auto;
            padding: 20px;
        }

        .search-item {
            padding: 15px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: all 0.2s ease;
            border-radius: 10px;
            margin-bottom: 10px;
        }

        .search-item:hover {
            background: #f8f9ff;
            transform: translateX(5px);
        }

        .service-name {
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
            font-size: 16px;
        }

        .service-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .service-page {
            color: #1e60aa;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .service-price {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .current-price {
            color: #27ae60;
            font-weight: bold;
        }

        .original-price {
            color: #999;
            text-decoration: line-through;
            font-size: 14px;
        }

        .no-results {
            text-align: center;
            padding: 40px;
            color: #666;
        }

        .no-results-icon {
            font-size: 48px;
            margin-bottom: 15px;
            opacity: 0.5;
        }

        /* Main Content */
        .main-content {
            padding: 60px 20px;
            text-align: center;
            color: white;
        }

        .main-title {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .main-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
        }

        .cta-button {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background: white;
            color: #1e60aa;
        }


        .si_mobile{ display:none; }
        @media (max-width: 991px) {
         .si_mobile{ display:unset; }
         .si_desktop{ display:none; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header {
                padding: 1rem;
            }

            .logo {
                font-size: 1.5rem;
            }

            .search-popup {
                width: 95%;
                margin-top: 50px;
            }

            .main-title {
                font-size: 2rem;
            }
        }

        /* Custom Scrollbar */
        .search-results::-webkit-scrollbar {
            width: 6px;
        }

        .search-results::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }

        .search-results::-webkit-scrollbar-thumb {
            background: #1e60aa;
            border-radius: 3px;
        }

        .search-results::-webkit-scrollbar-thumb:hover {
            background: #1e60aa;
        }