body {
            background-color: #f5f7fa;
            font-family: 'Noto Sans Gujarati', sans-serif;
        }

        /* Header */
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

        .navbar-brand img {
            height: 50px;
        }
        
        .navbar-brand img#logo-a {
            margin-right: 20px;
        }

        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            margin-right: 15px;
        }

        .navbar-nav .nav-link:hover {
            color: #007bff;
        }

        .btn-register {
            background-color: #007bff;
            color: #fff !important;
            border-radius: 6px;
            padding: 6px 16px;
            font-weight: 500;
            transition: 0.3s;
        }

        .btn-register:hover {
            background-color: #0056b3;
        }
        
        .action-btn i {
            font-size: 22px;
        }
        
        a.action-btn .fa-whatsapp {
            color: #25D366;
        }
        
        a.action-btn .fa-phone-alt {
            color: #0078FF;
        }
        
        button.action-btn .fa-share-alt {
            color: #7B61FF;
        }
        
        .floating-btn-wrapper {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
            z-index: 9999;
        }
        
        .add-business-btn {
            background: #007bff;
            color: #fff;
            padding: 12px 18px;
            border-radius: 50px;
            font-size: 16px;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: 0.3s ease;
        }
        
        .add-business-btn:hover {
            background: #0056b3;
        }
        
        .share-btn {
            position: fixed;
            bottom: 50px;
            right: 20px;
            /*background: #0b7dda;*/
                background: linear-gradient(90deg, #7b2ff7, #f107a3, #ff8c00);
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.25);
            transition: 0.2s ease;
            z-index: 999;
        }
        
        .share-btn:hover {
            transform: scale(1.1);
            /*background: #095fa6;*/
        }
        
          #searchInput:focus {
            border-color: #007bff;
            box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
        }


        /* Cards */
        .card {
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .card-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #222;
        }

        .card-text {
            font-size: 0.95rem;
            color: #555;
        }
        
         .action-row {
            display: flex;
            justify-content: space-between;
            margin-top: 18px;
            gap: 14px;
        }
        
        .action-btn {
            flex: 1;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            padding: 12px 0;
            border-radius: 12px;
            font-size: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: 0.2s ease;
            text-decoration: none;
        }
        
        .action-btn:hover {
            background: #f0f8ff;
            border-color: #cdd7ff;
            transform: translateY(-2px);
        }
        
        .action-btn i {
            font-size: 22px;
        }

        .btn-view {
            background-color: #007bff;
            color: white;
            border-radius: 6px;
            padding: 5px 12px;
            font-size: 0.9rem;
        }

        .btn-view:hover {
            background-color: #0056b3;
        }

        .collapse p {
            margin-bottom: 6px;
        }

        /* About Section */
        .about-section {
            background: #ffffff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            /*margin-top: 80px;*/
        }

        footer {
            background-color: #0d6efd;
            color: white;
            padding: 15px 0;
            text-align: center;
            margin-top: 60px;
        }
        
        footer a:hover {
            color: #fff !important;
            text-shadow: 0px 0px 6px rgba(255,255,255,0.7);
        }

        /* Premium Card Styling */
        .premium-card {
            border: 2px solid #facc15;
            background: linear-gradient(145deg, #fff8e1, #fff);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
            position: relative;
            transition: 0.3s;
        }

        .premium-card:hover {
            box-shadow: 0 0 25px rgba(255, 200, 0, 0.6);
            transform: translateY(-6px);
        }

        .premium-card .card-title {
            color: #b45309;
            /* golden brown tone */
        }