/* CSS code from the original file */
/* Moved to separate file to reduce HTML size */
/* Only showing first few lines for brevity */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

:root {
    --primary: #4361ee;
    --secondary: #3f37c9;
    --accent: #4cc9f0;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #4ade80;
    --warning: #facc15;
    --danger: #f87171;
    --gray: #6c757d;
    --border: #dee2e6;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --nepal-red: #dc143c;
    --nepal-blue: #003893;
}

/* ... rest of the CSS ... */

body {
            background-color: #f5f7ff;
            color: var(--dark);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--nepal-blue), var(--nepal-red));
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .logo i {
            color: white;
        }

        .header-search {
            flex: 1;
            max-width: 600px;
            min-width: 200px;
            position: relative;
        }

        .header-search input {
            width: 100%;
            padding: 10px 15px;
            border: none;
            border-radius: 30px;
            font-size: 0.9rem;
            box-shadow: var(--shadow);
            padding-right: 100px;
        }

        .header-search button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: var(--nepal-red);
            color: white;
            border: none;
            padding: 6px 15px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .header-search button:hover {
            background: #b01030;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 56, 147, 0.8), rgba(220, 20, 60, 0.8)), url('https://images.unsplash.com/photo-1563986768609-322da13575f3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 2rem;
            margin-bottom: 1rem;
            animation: fadeInDown 1s ease;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1rem;
            max-width: 700px;
            margin: 0 auto 1rem;
            animation: fadeInUp 1s ease;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

        /* Filters Section */
        .filters {
            background: white;
            padding: 1.5rem 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .filter-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .filter-group {
            margin-bottom: 10px;
        }

        .filter-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--nepal-blue);
        }

        .filter-group select, .filter-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .filter-group select:focus, .filter-group input:focus {
            border-color: var(--nepal-blue);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 56, 147, 0.2);
        }

        .filter-btn {
            background: var(--nepal-blue);
            color: white;
            border: none;
            padding: 10px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 10px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .filter-btn:hover {
            background: var(--nepal-red);
        }

        .clear-btn {
            background: var(--danger) !important;
        }

        .clear-btn:hover {
            background: #dc2626 !important;
        }

        /* Businesses Section */
        .businesses {
            padding: 2rem 0;
            flex: 1;
        }

        .businesses-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .businesses-header h2 {
            color: var(--nepal-blue);
            margin-bottom: 0.5rem;
        }

        .search-indicator {
            background: linear-gradient(135deg, var(--nepal-blue), var(--nepal-red));
            color: white;
            padding: 10px 15px;
            border-radius: 8px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            box-shadow: var(--shadow);
        }

        .search-indicator i {
            margin-right: 5px;
        }

        .search-indicator strong {
            color: #ffd700;
        }

        .clear-search {
            color: white;
            text-decoration: none;
            padding: 5px 10px;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.2);
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .clear-search:hover {
            background: rgba(255, 255, 255, 0.3);
            color: white;
        }

        #business-count {
            color: var(--gray);
            font-size: 0.9rem;
            background: var(--light);
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 500;
        }

        .businesses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .business-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
        }

        .business-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .business-image {
            height: 180px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .business-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0, 56, 147, 0.9);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            z-index: 2;
        }

        .business-highlight {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px 15px;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .business-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .business-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .business-location {
            margin-bottom: 10px;
            color: #666;
            font-size: 0.9rem;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .business-location i {
            color: var(--nepal-red);
            margin-top: 3px;
            flex-shrink: 0;
            font-size: 0.9rem;
        }

        .location-details {
            flex: 1;
            line-height: 1.4;
        }

        .location-details .address {
            font-weight: 500;
            color: #333;
            margin-bottom: 2px;
            line-height: 1.3;
        }

        .location-details .district-state {
            font-size: 0.8rem;
            color: #666;
            font-style: italic;
            line-height: 1.2;
        }

        .business-description {
            margin-bottom: 15px;
            color: var(--gray);
            flex: 1;
            font-size: 0.9rem;
        }

        .business-contact {
            border-top: 1px solid var(--border);
            padding-top: 15px;
        }

        .contact-info {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
            align-items: center;
            font-size: 0.9rem;
        }

        .contact-info a {
            color: var(--nepal-blue);
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-info a:hover {
            color: var(--nepal-red);
        }

        .phone-numbers {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .phone-numbers a {
            color: var(--nepal-blue);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .phone-numbers a:hover {
            color: var(--nepal-red);
        }

        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 10px;
            flex-wrap: wrap;
        }

        .social-link {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #f0f2f5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--nepal-blue);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .social-link:hover {
            background: var(--nepal-blue);
            color: white;
            transform: translateY(-3px);
        }

        .map-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--nepal-blue);
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            margin-top: 12px;
            font-size: 0.9rem;
        }

        .map-btn:hover {
            background: var(--nepal-red);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
            gap: 10px;
            flex-wrap: wrap;
        }

        .pagination button {
            background: var(--nepal-blue);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .pagination button:hover:not(:disabled) {
            background: var(--nepal-red);
        }

        .pagination button:disabled {
            background: var(--gray);
            cursor: not-allowed;
        }

        .pagination .page-numbers {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
        }

        .pagination .page-number {
            background: white;
            border: 1px solid var(--border);
            padding: 8px 12px;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
        }

        .pagination .page-number.active {
            background: var(--nepal-blue);
            color: white;
            border-color: var(--nepal-blue);
        }

        /* Footer */
        footer {
            background: linear-gradient(to right, var(--nepal-blue), var(--nepal-red));
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 2rem;
        }

        .footer-section {
            padding: 10px;
        }

        .footer-section h3 {
            margin-bottom: 15px;
            font-size: 1.1rem;
            position: relative;
            padding-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background: white;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 5px 0;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .social-links-footer {
            display: flex;
            gap: 12px;
            margin-top: 15px;
        }

        .social-link-footer {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .social-link-footer:hover {
            background: white;
            color: var(--nepal-blue);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.85rem;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* SEO and Accessibility */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        /* Schema markup container */
        .structured-data {
            display: none;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .header-container {
                flex-direction: column;
            }
            
            .header-search {
                order: 3;
                width: 100%;
                max-width: 100%;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 768px) {
            .businesses-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .footer-section {
                padding: 15px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .footer-section:last-child {
                border-bottom: none;
            }
            
            .footer-section h3 {
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .footer-section h3::after {
                display: none;
            }
            
            .footer-section h3 i {
                transition: var(--transition);
            }
            
            .footer-section h3.collapsed i {
                transform: rotate(180deg);
            }
            
            .footer-links {
                max-height: 500px;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .footer-section.collapsed .footer-links {
                max-height: 0;
                overflow: hidden;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 1.2rem;
            }
            
            .hero {
                padding: 2rem 0;
            }
            
            .hero h1 {
                font-size: 1.5rem;
            }
            
            .business-title {
                font-size: 1rem;
            }
            
            .filter-container {
                grid-template-columns: 1fr;
            }
            
            .businesses-header {
                flex-direction: column;
                gap: 10px;
            }
            
            .pagination {
                flex-direction: column;
                gap: 10px;
            }
            
            .pagination button {
                width: 100%;
            }
            
            .pagination .page-number {
                padding: 8px 12px;
            }
        }

        /* Image Modal Styles */
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            cursor: pointer;
            z-index: 10;
        }

        .image-overlay i {
            color: white;
            font-size: 2rem;
            background: rgba(0, 0, 0, 0.7);
            padding: 15px;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .business-image:hover .image-overlay {
            opacity: 1;
        }

        .image-overlay:hover i {
            transform: scale(1.1);
        }

        .image-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease;
        }

        .image-modal-content {
            position: relative;
            margin: 2% auto;
            width: 90%;
            max-width: 800px;
            height: 90%;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            animation: slideIn 0.3s ease;
        }

        .image-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: var(--nepal-blue);
            color: white;
        }

        .image-modal-header h3 {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .close-modal {
            color: white;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
            line-height: 1;
        }

        .close-modal:hover {
            color: var(--nepal-red);
        }

        .image-modal-body {
            height: calc(100% - 80px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: #f8f9fa;
        }

        .image-modal-body img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Mobile responsive for modal */
        @media (max-width: 768px) {
            .image-modal-content {
                width: 95%;
                height: 95%;
                margin: 2.5% auto;
            }

            .image-modal-header {
                padding: 15px;
            }

            .image-modal-header h3 {
                font-size: 1rem;
            }

            .close-modal {
                font-size: 1.5rem;
            }

            .image-modal-body {
                padding: 15px;
            }
        }