     :root {
            --primary-color: #e53e3e;
            --secondary-color: #f8f9fa;
            --text-color: #333;
            --light-gray: #f1f1f1;
            --dark-gray: #6c757d;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-color);
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
            
        }
        
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            margin: 0 2px;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary-color);
        }
        
        .cart-button {
            position: relative;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-color);
            margin-right: 20px;
        }
        
        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        
        .dropdown-select {
            background: none;
            border: 1px solid #ddd;
            padding: 8px 15px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            z-index: 1;
            border-radius: 5px;
            padding: 10px 0;
        }
        
        .dropdown-option {
            padding: 10px 15px;
            cursor: pointer;
        }
        
        .dropdown-option:hover {
            background-color: var(--light-gray);
        }
        
        .dropdown-option a {
            color: var(--text-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .sign-in-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        .sign-in-button:hover {
            background-color: #c53030;
        }
        
        .myuma-container {
            padding: 30px 0;
        }
        
        .myuma-page-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .myuma-breadcrumbs {
            color: var(--dark-gray);
            margin-bottom: 30px;
        }
        
        .myuma-breadcrumbs a {
            color: var(--dark-gray);
            text-decoration: none;
        }
        
        .myuma-breadcrumbs a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        .product-card {
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 20px;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .product-image {
            position: relative;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .sale-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--primary-color);
            color: white;
            padding: 3px 10px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .sale-badgee {
            position: absolute;
            top: 40px;
            left: 10px;
            background-color: var(--primary-color);
            color: white;
            padding: 3px 10px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .product-info {
            padding: 15px;
        }
        
        .product-name {
            font-size: 1rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .product-price {
            margin-bottom: 0;
        }
        
        .original-price {
            text-decoration: line-through;
            color: var(--dark-gray);
            margin-right: 10px;
        }
        
        .sale-price {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .product-info button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 5px 15px;
            border-radius: 3px;
            font-size: 14px;
            margin-bottom: 10px;
            width: 100%;
            transition: background-color 0.3s;
        }
        
        .product-info button:hover {
            background-color: #c53030;
        }

        .myuma-header{
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .myuma-sidebar {
            background-color: var(--secondary-color);
            padding: 20px;
            border-radius: 8px;
        }
        
        .myuma-search-box {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        .myuma-sidebar-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .myuma-cart {
            margin-bottom: 30px;
        }
        
        .myuma-cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .myuma-plan-name {
            font-weight: 500;
            margin-bottom: 5px;
        }
        
        .myuma-plan-price {
            color: var(--dark-gray);
            font-size: 14px;
        }
        
        .myuma-remove-btn {
            color: var(--dark-gray);
            cursor: pointer;
            font-size: 1.2rem;
        }
        
        .myuma-subtotal {
            font-weight: 600;
            text-align: right;
            margin: 15px 0;
        }
        
        .myuma-cart-buttons {
            display: flex;
            gap: 10px;
        }
        
        .myuma-view-cart-btn, .myuma-checkout-btn {
            flex: 1;
            padding: 8px 0;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .myuma-view-cart-btn {
            background-color: white;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
        }
        
        .myuma-view-cart-btn:hover {
            background-color: var(--light-gray);
        }
        
        .myuma-checkout-btn {
            background-color: var(--primary-color);
            border: 1px solid var(--primary-color);
            color: white;
        }
        
        .myuma-checkout-btn:hover {
            background-color: #c53030;
            border-color: #c53030;
        }
        
        #categorySelect {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        .myuma-hot-product {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            align-items: center;
        }
        
        .myuma-hot-product-image {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 5px;
        }
        
        .myuma-hot-product-name {
            font-size: 14px;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .myuma-hot-product-price {
            font-size: 14px;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 0;
        }
        
        .myuma-old-price {
            text-decoration: line-through;
            color: var(--dark-gray);
            margin-right: 5px;
        }
        
        .footer {
           
            
            color: #333;
            padding: 50px 0 20px;
        }
        
        .footer a {
            color: #333;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: black ;
        }
        
      
        
        .footer-col p {
            color: #333;
            margin-bottom: 20px;
        }
        .footer-col img{
            margin-left: 30%;
        }
        
        .app-links {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .app-links img {
            height: 40px;
            width: auto;
            margin-left: 2px;
            
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #4a5568;
            color: #a0aec0;
            font-size: 14px;
        }
        
        .sorting-dropdown {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        /* Modal styles */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .modal {
            background-color: white;
            border-radius: 8px;
            width: 100%;
            max-width: 450px;
            overflow: hidden;
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
        }
        
        .modal-tabs {
            display: flex;
            gap: 10px;
        }
        
        .tab {
            padding: 8px 20px;
            cursor: pointer;
            border-radius: 5px;
            font-weight: 500;
        }
        
        .tab.active {
            background-color: var(--primary-color);
            color: white;
        }
        
        .close-button {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .modal-body {
            padding: 20px;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group input {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        
        .forgot-password {
            display: block;
            text-align: right;
            font-size: 14px;
            color: var(--dark-gray);
            margin-bottom: 15px;
        }
        
        .submit-button {
            width: 100%;
            padding: 12px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .form-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .remember-me {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding-top: 15px;
            }
            
            .nav-links {
                flex-direction: column;
                gap: 10px;
                margin-bottom: 15px;
            }
            
            .nav-right {
                flex-direction: column;
                gap: 15px;
            }
            
            .category-dropdown {
                width: 100%;
            }
            
            .dropdown-select {
                width: 100%;
            }
            
            .sign-in-button {
                width: 100%;
            }
            
            .myuma-content {
                flex-direction: column;
            }

             .myuma-header{
          display: contents;
          align-items: center;
          justify-content: center;
         
        }

         
        
            
            .myuma-sidebar {
                margin-top: 30px;
            }
            
            .app-links {
                flex-direction: column;
            }
        }
        
        @media (max-width: 767.98px) {
            .myuma-cart-buttons {
                flex-direction: column;
            }

             .myuma-header{
           text-align: center;
        }
        
            
            .myuma-view-cart-btn, .myuma-checkout-btn {
                width: 100%;
            }
        }










        .search-container {
            background-color: white;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }
        
        .search-input, .location-input {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .filter-btn {
            padding: 8px 15px;
            background-color: #f1f1f1;
            border-radius: 6px;
            cursor: pointer;
            margin-right: 10px;
            margin-bottom: 10px;
            display: inline-flex;
            align-items: center;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .filter-btn:hover {
            background-color: #e9e9e9;
        }
        
        .filter-btn i {
            margin-left: 5px;
        }
        
        .listing-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            margin-bottom: 25px;
            transition: transform 0.3s;
        }
        
        .listing-card:hover {
            transform: translateY(-5px);
        }
        
        .listing-img {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .listing-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .listing-card:hover .listing-img img {
            transform: scale(1.05);
        }
        
        .featured-badge, .category-badge {
            position: absolute;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            color: white;
        }
        
        .featured-badge {
            top: 15px;
            left: 15px;
            background-color: #ff6b6b;
        }
        
        .category-badge {
            bottom: 15px;
            left: 15px;
            background-color: #4ecdc4;
        }
        
        .listing-info {
            padding: 20px;
            position: relative;
        }
        
        .listing-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .verified-icon {
            color: #4ecdc4;
            font-size: 16px;
        }
        
        .listing-location {
            color: #777;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .listing-rating {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .rating-stars {
            color: #ffc107;
            margin-right: 8px;
        }
        
        .review-count {
            font-size: 13px;
            color: #999;
        }
        
        .listing-price {
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }
        
        .wishlist-btn {
            position: absolute;
            right: 20px;
            bottom: 20px;
            background: none;
            border: none;
            font-size: 20px;
            color: #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .wishlist-btn:hover {
            color: #ff6b6b;
        }
        
        .now-closed {
            position: absolute;
            top: -15px;
            right: 15px;
            background-color: #ff6b6b;
            color: white;
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .page-btn {
            border: none;
            background-color: #f1f1f1;
            padding: 8px 15px;
            margin: 0 5px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .page-btn:hover {
            background-color: #e9e9e9;
        }
        
        .page-btn.active {
            background-color: #4ecdc4;
            color: white;
        }
        
        .map-container {
            height: 50%;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Filter dropdown styles */
        .filter-dropdown {
            position: relative;
            display: inline-block;
        }
        
        .filter-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 250px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            z-index: 1;
            border-radius: 8px;
            padding: 15px;
            top: 100%;
            left: 0;
            margin-top: 5px;
        }
        
        .filter-content h5 {
            font-size: 16px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .filter-option {
            margin-bottom: 10px;
        }
        
        .filter-option label {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
        }
        
        .filter-option input, .filter-option select {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }
        
        .filter-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
        }
        
        .filter-actions button {
            padding: 8px 15px;
            border-radius: 4px;
            border: none;
            font-size: 14px;
            cursor: pointer;
        }
        
        .filter-reset {
            background-color: #f1f1f1;
            color: #333;
        }
        
        .filter-apply {
            background-color: #4ecdc4;
            color: white;
        }
        
        @media (max-width: 992px) {
            .map-container {
                height: 400px;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .filter-btn {
                margin-bottom: 10px;
            }
            
            .listing-img {
                height: 160px;
            }
        }



        /***********************************mybooking**************************************/

        /* Sidebar Styles */
      .sidebar {
        width: var(--sidebar-width);
        background-color: #2c3e50;
        color: white;
        padding: 20px 0;
        position: fixed;
        height: 100vh;
        transition: all 0.3s;
        z-index: 1000;
      }

      .logo {
        padding: 0 20px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 20px;
      }

      .logo img {
        max-width: 100%;
      }

      .nav-section {
        margin-bottom: 20px;
        padding: 0 20px;
      }

      .nav-title {
        color: rgba(255, 255, 255, 0.5);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
      }

      .nav-items {
        display: flex;
        flex-direction: column;
        gap: 5px;
      }

      .nav-items a {
        color: white;
        text-decoration: none;
        padding: 10px 15px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s;
      }

      .nav-items a:hover,
      .nav-items a.active {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
      }

      .nav-items a i {
        width: 20px;
        text-align: center;
      }

      /* Main Content Styles */
      .main-content {
        flex: 1;
        margin-left: var(--sidebar-width);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
      }

     

    
      /* Page Content Styles */
      .page-header {
        padding: 30px;
        background-color: white;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .page-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
      }

      .breadcrumb {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--gray-color);
        font-size: 14px;
      }

      .breadcrumb a {
        color: var(--gray-color);
        text-decoration: none;
      }

      .breadcrumb a:hover {
        color: var(--primary-color);
      }

      /* Calendar Widget Styles */
      .calendar-container {
        position: relative;
        margin: 20px 0;
      }

      .pickup-button {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        transition: all 0.3s;
      }

      .pickup-button:hover {
        background-color:#ff6b6b;
      }

      .calendar-widget {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-width: 600px;
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 100;
        padding: 15px;
      }

      .calendar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        font-weight: 600;
      }

      .month-navigation {
        display: flex;
        gap: 10px;
      }

      .nav-button {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 16px;
        padding: 5px 10px;
        border-radius: 4px;
        transition: all 0.3s;
      }

      .nav-button:hover {
        background-color: #f1f1f1;
      }

      .date-filter {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
        flex-wrap: wrap;
      }

      .filter-item {
        padding: 5px 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 12px;
        cursor: pointer;
        transition: all 0.3s;
      }

      .filter-item:hover,
      .filter-item.active {
        background-color: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
      }

      .month-container {
        margin-bottom: 15px;
      }

      .month-title {
        font-weight: 600;
        margin-bottom: 10px;
      }

      .weekdays,
      .days {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 5px;
      }

      .weekdays div {
        text-align: center;
        font-size: 12px;
        color: var(--gray-color);
        padding: 5px;
      }

      .days div {
        text-align: center;
        padding: 8px 5px;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s;
      }

      .days div:hover {
        background-color: #f1f1f1;
      }

      .days div.selected {
        background-color: var(--primary-color);
        color: white;
      }

      .days div.disabled {
        color: #ccc;
        pointer-events: none;
      }

      .calendar-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
      }

      .selected-date-range {
        font-size: 14px;
        color: var(--gray-color);
      }

      .btn {
        padding: 8px 15px;
        border-radius: 4px;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
      }

      .btn-cancel {
        background-color: #f1f1f1;
        color: var(--dark-color);
      }

      .btn-cancel:hover {
        background-color: #e9e9e9;
      }

      .btn-apply {
        background-color: var(--primary-color);
        color: white;
      }

      .btn-apply:hover {
        background-color: #ff6b6b;
      }

      /* Booking Card Styles */
      .card-body {
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        margin: 0 30px 30px;
      }

      .no-bookings {
        color: var(--gray-color);
        font-size: 16px;
        margin-top: 15px;
      }

      .upload-btn {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s;
      }

      .upload-btn:hover {
        background-color: #ff6b6b;
      }

      /* Footer Styles */
      .footer {
        margin-top: auto;
        padding: 20px 30px;
        text-align: center;
        color: var(--gray-color);
        font-size: 14px;
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .sidebar {
          width: 70px;
          overflow: hidden;
        }

        .nav-items span {
          display: none;
        }

        .logo img {
          width: 40px;
        }

        .main-content {
          margin-left: 70px;
        }

        .top-bar {
          flex-direction: column;
          gap: 15px;
          padding: 15px;
        }

        .main-nav {
          flex-wrap: wrap;
          justify-content: center;
        }

        .user-actions {
          width: 100%;
          justify-content: center;
        }
      }

      @media (max-width: 768px) {
        .sidebar {
          display: none;
        }

        .main-content {
          margin-left: 0;
        }

        .page-header {
          padding: 20px 15px;
        }

        .card-body {
          margin: 0 15px 15px;
          flex-direction: column;
          gap: 15px;
          align-items: flex-start;
        }

        .calendar-widget {
          width: calc(100vw - 30px);
          left: 15px;
        }
      }









      /******************************viewcart******************************/


      


      /***********************profile*************************************/

             .profile-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .avatar-section {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--secondary-color);
        }
        
        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .upload-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 15px;
            transition: all 0.3s;
        }
        
        .upload-btn:hover {
            background-color: #2a7296;
        }
        
        .role-section {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .role-option {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
            margin-left: 10px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 24px;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .slider {
            background-color: var(--primary-color);
        }
        
        input:checked + .slider:before {
            transform: translateX(26px);
        }
        
        .notification-group {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        
        .social-section {
            margin-top: 30px;
        }
        
        .social-input {
            position: relative;
        }
        
        .social-input i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-color);
            font-size: 20px;
        }
        
        .social-input input {
            padding-left: 45px !important;
        }
        
        .no-bookings {
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 5px;
        }
        
        .footer {
            text-align: center;
            padding: 20px 0;
            margin-top: 30px;
            border-top: 1px solid #eee;
        }
        
        @media (max-width: 768px) {
            .avatar-section {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .card-body {
                margin-left: 0 !important;
                margin-top: 20px;
                text-align: center;
            }
            
            .role-section {
                justify-content: center;
            }
        }






        




         .form-container {
           
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            padding: 30px;
            
            
           
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            font-weight: 500;
            margin-bottom: 8px;
            display: block;
        }
        .form-control {
            padding: 10px 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        .form-control:focus {
            border-color: #4d90fe;
            box-shadow: 0 0 0 2px rgba(77, 144, 254, 0.2);
        }
        textarea.form-control {
            min-height: 120px;
        }
        .section-title {
            font-size: 20px;
            color: #333;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        .social-input {
            position: relative;
        }
        .social-input i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            font-size: 20px;
        }
        .social-input input {
            padding-left: 45px;
        }
        .btn-primary {
            background-color: #c82333;
            border: none;
            padding: 10px 25px;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #3a7de8;
        }
        .addon {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
        }
        .item-list {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }
        .item-list li {
            display: flex;
            justify-content: space-between;
            padding: 10px 15px;
            background-color: white;
            border-radius: 5px;
            margin-bottom: 10px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        .item-list li span:last-child {
            font-weight: bold;
        }
        .total-section {
            text-align: right;
            font-weight: bold;
            font-size: 18px;
            margin-top: 20px;
            padding-top: 10px;
            border-top: 1px solid #ddd;
        }
        .add-btn, .cancel-btn {
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s;
        }
        .add-btn {
            background-color: #28a745;
            color: white;
            border: none;
            margin-right: 10px;
        }
        .add-btn:hover {
            background-color: #218838;
        }
        .cancel-btn {
            background-color: #dc3545;
            color: white;
            border: none;
        }
        .cancel-btn:hover {
            background-color: #c82333;
        }
        @media (max-width: 768px) {
            .form-container {
                padding: 20px;
            }
            .form-gpay {
                margin-bottom: 15px;
            }
            .add-btn, .cancel-btn {
                width: 100%;
                margin-bottom: 10px;
            }
        }





        .table-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin-bottom: 20px;
        }
        .table-responsive {
            overflow-x: auto;
        }
        table {
            width: 100%;
            margin-bottom: 1rem;
            color: #212529;
        }
        th {
            
            color: #212529;
            font-weight: 500;
        }
        tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        .status-pending {
               color: #dc3545;
            font-weight: bold;
        }
        .status-approved {
                color: #dc3545;
            font-weight: bold;
        }
        .status-rejected {
            color: #dc3545;
            font-weight: bold;
        }
        .action-btn {
            padding: 5px 10px;
            margin: 0 2px;
            font-size: 12px;
        }
        .search-box {
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            .table thead {
                display: none;
            }
            .table, .table tbody, .table tr, .table td {
                display: block;
                width: 100%;
            }
            .table tr {
                margin-bottom: 15px;
                border: 1px solid #dee2e6;
                border-radius: 5px;
            }
            .table td {
                text-align: right;
                padding-left: 50%;
                position: relative;
                border-bottom: 1px solid #dee2e6;
            }
            .table td::before {
                content: attr(data-label);
                position: absolute;
                left: 10px;
                width: 45%;
                padding-right: 10px;
                font-weight: bold;
                text-align: left;
            }
        }






          .myuma-product-info {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 15px;
        }
        
        .myuma-product-display {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .myuma-product-image {
            flex: 1 1 300px;
        }
        
        .myuma-product-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .myuma-product-details {
            flex: 2 1 400px;
        }
        
        .myuma-product-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }
        
        .myuma-product-price {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 0;
        }
        
        .myuma-product-subscription {
            color: var(--dark-gray);
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .myuma-promo-banner {
            background-color: #fff8e1;
            color: #ff6f00;
            padding: 0.75rem 1rem;
            border-radius: 6px;
            margin: 1.5rem 0;
            font-weight: 500;
            border-left: 4px solid #ffc107;
        }
        
        .myuma-signup-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-bottom: 1.5rem;
        }
        
        .myuma-signup-btn:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .myuma-paypal-option {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--dark-gray);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        
        .myuma-category {
            color: var(--dark-gray);
            font-size: 0.9rem;
        }
        
        .myuma-category a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .myuma-category a:hover {
            text-decoration: underline;
        }
        
        .myuma-tabs {
            display: flex;
            border-bottom: 1px solid #dee2e6;
            margin-bottom: 1.5rem;
        }
        
        .myuma-tab {
            padding: 0.75rem 1.5rem;
            cursor: pointer;
            font-weight: 600;
            color: var(--dark-gray);
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        
        .myuma-tab:hover {
            color: var(--primary-color);
        }
        
        .myuma-tab.myuma-active {
            color: var(--primary-color);
            border-bottom-color: var(--primary-color);
        }
        
        .myuma-tab-content {
            padding: 1rem 0;
        }
        
        .myuma-product-description h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }
        
        .myuma-product-description ul {
            list-style-type: none;
            padding-left: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.75rem;
        }
        
        .myuma-product-description li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 1.75rem;
        }
        
        .myuma-product-description li:before {
            content: "✓";
            color: var(--primary-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        @media (max-width: 768px) {
            .myuma-product-display {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .myuma-product-title {
                font-size: 1.75rem;
            }
            
            .myuma-product-price {
                font-size: 1.5rem;
            }
            
            .myuma-tabs {
                overflow-x: auto;
                white-space: nowrap;
                flex-wrap: nowrap;
            }
            
            .myuma-product-description ul {
                grid-template-columns: 1fr;
            }
        }




 .full-width-container {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
        }
        
        .slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .slide {
            display: none;
            width: 100%;
            transition: opacity 0.5s ease;
        }
        
        .slide.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0.6; }
            to { opacity: 1; }
        }
        
        .slide-content {
            position: relative;
            height: 70vh;
            min-height: 500px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
        }
        
        .slide-text {
            position: relative;
            z-index: 1;
            color: white;
            max-width: 1200px;
            padding: 20px;
            margin: 0 auto;
        }
        
        .slide-text h1 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .subtitle {
            font-size: 1.5rem;
            margin-bottom: 25px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 35px;
            background-color: #f91942;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-bottom: 20px;
            font-size: 1.1rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button:hover {
            background-color: #f91942;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
        
        .categories-text {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            z-index: 2;
            padding: 0 20px;
            box-sizing: border-box;
        }
        
        .nav-button {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }
        
        .nav-button:hover {
            background-color: rgba(255, 255, 255, 0.4);
        }
        
        .search-container {
            width: 100%;
            max-width: 1200px;
            margin: -50px auto 0;
            padding: 0 20px;
            position: relative;
            z-index: 10;
            box-sizing: border-box;
        }
        
        .search-wrapper {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .search-tabs {
            display: flex;
            gap: 10px;
            padding: 15px;
            border-radius: 8px;
            background-color: rgba(0, 0, 0, 0.03);
            margin-bottom: 15px;
        }
        
        .search-tabs button {
            padding: 10px 20px;
            border: none;
            background-color: rgba(0, 0, 0, 0.05);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            color: #333;
        }
        
        .search-tabs button.active {
            background-color: #f91942;
            color: white;
        }
        
        .search-tabs button:hover {
            background-color: rgba(0, 0, 0, 0.1);
        }
        
        .search-tabs button.active:hover {
            background-color: #f91942;
        }
        
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            padding: 20px;
            border-radius: 8px;
            background-color: white;
        }
        
        .search-input,
        .location-input {
            flex: 1;
            min-width: 200px;
            position: relative;
        }
        
        .search-input input,
        .location-input input {
            width: 100%;
            padding: 14px 20px;
            border: 1px solid #ddd;
            border-radius: 30px;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
        }
        
        .search-input input:focus,
        .location-input input:focus {
            border-color: #f91942;
            outline: none;
            box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.2);
        }
        
        .location-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            font-size: 1.2rem;
        }
        
        .category-dropdown,
        .radius-dropdown {
            min-width: 200px;
        }
        
        .dropdown {
            position: relative;
        }
        
        .dropdown-select {
            width: 100%;
            padding: 14px 20px;
            border: 1px solid #ddd;
            border-radius: 30px;
            background-color: white;
            text-align: left;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
        }
        
        .dropdown-select::after {
            content: "▼";
            font-size: 0.7rem;
            margin-left: 10px;
            transition: transform 0.3s ease;
        }
        
        .dropdown-select.active::after {
            transform: rotate(180deg);
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            width: 100%;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            z-index: 100;
            border-radius: 12px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            margin-top: 5px;
        }
        
        .dropdown-content.show {
            display: block;
            max-height: 400px;
            padding: 10px 0;
            border: 1px solid #eee;
            animation: slideDown 0.3s ease;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .search-box {
            padding: 10px 15px;
            border-bottom: 1px solid #eee;
        }
        
        .search-box input {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        
        .dropdown-options {
            max-height: 300px;
            overflow-y: auto;
        }
        
        .dropdown-option {
            padding: 12px 20px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
        }
        
        .dropdown-option:hover {
            background-color: #f8f9fa;
        }
        
        .dropdown-option i {
            margin-right: 10px;
            color: #f91942;
        }
        
        .search-btn {
            flex: 0 0 auto;
        }
        
        .search-button {
            padding: 14px 30px;
            background-color: #f91942;
            color: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            font-weight: bold;
            box-shadow: 0 4px 8px rgba(74, 107, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .search-button:hover {
            background-color: #f91942;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(74, 107, 255, 0.4);
        }
        
        .search-button i {
            margin-left: 8px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .slide-text {
                max-width: 900px;
            }
            
            .slide-text h1 {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 992px) {
            .slide-content {
                height: 60vh;
                min-height: 400px;
            }
            
            .slide-text h1 {
                font-size: 2.2rem;
            }
            
            .subtitle {
                font-size: 1.1rem;
            }
            
            .search-form {
                flex-direction: column;
            }
            
            .search-input,
            .location-input,
            .category-dropdown,
            .radius-dropdown {
                width: 100%;
            }
            
            .nav-button {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .slide-content {
                height: 50vh;
                min-height: 350px;
            }
            
            .slide-text h1 {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
            
            .cta-button {
                padding: 12px 25px;
                font-size: 1rem;
            }
            
            .search-container {
                margin-top: 0;
                padding: 0 15px;
            }
            
            .search-wrapper {
                padding: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .slide-content {
                height: 45vh;
                min-height: 300px;
            }
            
            .slide-text h1 {
                font-size: 1.8rem;
            }
            
            .subtitle {
                font-size: 0.9rem;
            }
            
            .cta-button {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .search-tabs {
                flex-wrap: wrap;
            }
            
            .nav-button {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .dropdown-content {
                position: fixed;
                width: calc(100% - 40px);
                left: 20px;
                right: 20px;
                bottom: 20px;
                max-height: 60vh;
                animation: slideUp 0.3s ease;
            }
            
            @keyframes slideUp {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }

        




          
        
        .section-title {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 30px;
            font-weight: 600;
            color: #333;
        }
        
        .carousel-container {
            position: relative;
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .carousel {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            gap: 1rem;
            padding: 1rem 0;
            width: 100%;
            scrollbar-width: none; /* Firefox */
        }
        
        .carousel::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }
        
        .category-card {
            flex: 0 0 calc(33.333% - 1rem);
            scroll-snap-align: start;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: var(--card-height);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .category-card:hover {
            transform: translateY(-5px);
        }
        
        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 1rem;
        }
        
        .card-title {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .listings-count {
            margin: 0.25rem 0;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .browse-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.25rem 1rem;
            border-radius: 4px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .browse-btn:hover {
            background-color: #3a56e0;
        }
        
        .nav-btn {
            background-color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            z-index: 1;
            flex-shrink: 0;
            transition: all 0.3s;
        }
        
        .nav-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .nav-btn svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }
        
        .prev {
            margin-right: 1rem;
        }
        
        .next {
            margin-left: 1rem;
        }
        
        .indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .indicator.active {
            background-color: var(--primary-color);
            width: 20px;
            border-radius: 5px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .category-card {
                flex: 0 0 calc(50% - 1rem);
            }
        }
        
        @media (max-width: 576px) {
            .category-card {
                flex: 0 0 calc(100% - 1rem);
            }
            
            .nav-btn {
                display: none;
            }
            
            .carousel {
                padding: 1rem;
            }
        }
        
        /* Placeholder images */
        .category-card:nth-child(1) img {
            background-color: #FF9AA2;
        }
        .category-card:nth-child(2) img {
            background-color: #FFB7B2;
        }
        .category-card:nth-child(3) img {
            background-color: #FFDAC1;
        }
        .category-card:nth-child(4) img {
            background-color: #E2F0CB;
        }
        .category-card:nth-child(5) img {
            background-color: #B5EAD7;
        }
        .category-card:nth-child(6) img {
            background-color: #C7CEEA;
        }



        





















                .page-title {
            font-size: 2.2rem;
            font-weight: 700;
            color:#333333da ;
            margin-bottom: 10px;
            text-align: center;
        }
        
        .divider {
            height: 4px;
            width: 80px;
            background-color: var(--accent-color);
            margin: 0 auto 20px;
            border-radius: 2px;
        }
        
        .subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 30px;
            text-align: center;
        }
        
        .card-container {
            display: flex;
            gap: 20px;
            padding: 20px 0;
            overflow-x: auto;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }
        
        .card-container::-webkit-scrollbar {
            height: 8px;
        }
        
        .card-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .card-container::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 10px;
        }
        
        .card {
            flex: 0 0 300px;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            scroll-snap-align: start;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background-color: #ddd; /* Placeholder color */
        }
        
        /* Placeholder images with different colors */
        .card:nth-child(1) .card-img {
            background-color: #f91942;
        }
        
        .card:nth-child(2) .card-img {
            background-color: #f91942;
        }
        
        .card:nth-child(3) .card-img {
            background-color: #f91942;
        }
        
        .card:nth-child(4) .card-img {
            background-color: #f91942;
        }
        
        .card:nth-child(5) .card-img {
            background-color: #f91942;
        }
        
        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            color: white;
            padding: 20px;
            padding-top: 40px;
        }
        
        .card-tags {
            display: flex;
            gap: 8px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }
        
        .tag {
            font-size: 0.75rem;
            padding: 4px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        
        .tag.featured {
            background-color: var(--accent-color);
            color: var(--dark-color);
        }
        
        .tag.price {
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
        }
        
        .rating {
            position: absolute;
            top: -15px;
            right: 20px;
            background-color: var(--primary-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .business-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .verified {
            color: var(--accent-color);
            font-weight: 700;
            margin-left: 5px;
        }
        
        .business-location {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 5px;
        }
        
        .favorite-button {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: white;
            border: none;
            color: #ccc;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .favorite-button:hover {
            color: #ff4757;
            transform: scale(1.1);
        }
        
        .favorite-button.active {
            color: #ff4757;
        }
        
        .now-open {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--success-color);
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .scroll-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .scroll-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .scroll-btn:hover {
            background-color: var(--secondary-color);
            transform: scale(1.05);
        }
        
        .scroll-btn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .card {
                flex: 0 0 280px;
                height: 380px;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1.25rem;
            }
        }
        
        @media (max-width: 576px) {
            .card {
                flex: 0 0 260px;
                height: 360px;
            }
            
            .card-overlay {
                padding: 15px;
                padding-top: 35px;
            }
            
            .business-name {
                font-size: 1.1rem;
            }
        }

















             .testimonials-section-1234 {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .section-title-1234 {
            text-align: center;
            margin-bottom: 60px;
            font-weight: 700;
            color: #2c3e50;
        }
        
        .testimonials-carousel-1234 {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .testimonials-container-1234 {
            overflow: hidden;
            padding: 20px 0;
        }
        
        .testimonial-inner-1234 {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial-item-1234 {
            min-width: 100%;
            padding: 30px;
            box-sizing: border-box;
        }
        
        .testimonial-card-1234 {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            height: 100%;
        }
        
        .testimonial-featured-1234 {
            border: 2px solid #f91942;
        }
        
        .quote-icon-1234 {
            font-size: 60px;
            color: #f91942;
            line-height: 1;
            margin-bottom: 20px;
        }
        
        .testimonial-content-1234 {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }
        
        .carousel-arrows-1234 {
            display: flex;
            justify-content: space-between;
            position: absolute;
            top: 50%;
            left: -50px;
            right: -50px;
            transform: translateY(-50%);
            z-index: 10;
        }
        
        .carousel-arrow-1234 {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .carousel-arrow-1234:hover {
            background: #f91942;
            color: white;
        }
        
        .carousel-controls-1234 {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .carousel-dot-1234 {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-dot-active-1234 {
            background: #f91942;
            transform: scale(1.2);
        }
        
        .avatar-container-1234 {
            text-align: center;
            margin-top: 40px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }
        
        .avatar-container-active-1234 {
            opacity: 1;
            transform: translateY(0);
        }
        
        .avatar-1234 {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 15px;
            border: 3px solid #4a89dc;
        }
        
        .avatar-1234 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .avatar-name-1234 {
            font-weight: 600;
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .avatar-title-1234 {
            color: #7f8c8d;
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .testimonials-section-1234 {
                padding: 50px 0;
            }
            
            .carousel-arrows-1234 {
                left: -20px;
                right: -20px;
            }
            
            .carousel-arrow-1234 {
                width: 40px;
                height: 40px;
            }
            
            .testimonial-card-1234 {
                padding: 20px;
            }
        }







          .photo {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            min-height: 60vh;
            display: flex;
            align-items: center;
            padding: 2rem;
            color: white;
        }
        
        .photo1 {
            max-width: 500px;
        }
        
        .photo1 h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .photo1 h4 {
            font-weight: 300;
            line-height: 1.6;
            margin-bottom: 2rem;
        }
        
        .photo1 button {
            background-color: #f91942;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .photo1 button:hover {
            background-color: #f91942;
            transform: translateY(-2px);
        }
        
        .photo1 button i {
            margin-left: 0.5rem;
        }
        
        @media (max-width: 768px) {
            .photo1 h1 {
                font-size: 2.5rem;
            }
            
            .photo1 h4 {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 576px) {
            .photo {
                padding: 1rem;
                text-align: center;
            }
            
            .photo1 {
                margin: 0 auto;
            }
            
            .photo1 h1 {
                font-size: 2rem;
            }
        }





         .pricing-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .pricing-section h1 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            text-align: center;
            font-weight: 700;
        }
        
        .pricing-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-bottom: 30px;
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .plan-header {
            text-align: center;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .plan-header h1 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            color: #333;
        }
        
        .plan-price {
            background-color: #f1f1f1;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            text-align: center;
        }
        
        .plan-price h3 {
            font-size: 1.5rem;
            margin: 0;
            color: #333;
        }
        
        .plan-features h5 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #333;
        }
        
        .plan-features p {
            color: #666;
            margin-bottom: 5px;
        }
        
        .plan-features i {
            color: #f91942;
            margin-right: 8px;
        }
        
        .add-to-cart-btn {
            width: 100%;
            padding: 12px;
            background-color: #f91942;
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            margin-top: 20px;
            transition: background-color 0.3s;
        }
        
        .add-to-cart-btn:hover {
            background-color: #f91942;
        }
        
        .add-to-cart-btn i {
            margin-right: 8px;
        }
        
        /* Highlight the middle card */
        .pricing-card:nth-child(2) {
            border-top: 3px solid #f91942;
        }
        
        @media (max-width: 768px) {
            .pricing-section h1 {
                font-size: 2rem;
            }
            
            .plan-header h1 {
                font-size: 1.5rem;
            }
            
            .plan-price h3 {
                font-size: 1.3rem;
            }
        }




         /* Custom CSS */
        .blog-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .divider {
            width: 80px;
            height: 3px;
            background-color: #e53e3e;
            margin: 15px auto 30px;
        }
        
        .blog-cards {
            margin: 40px 0;
        }
        
        .blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .blog-card-img {
            position: relative;
            overflow: hidden;
        }
        
        .blog-card-img img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-card-img img {
            transform: scale(1.05);
        }
        
        .blog-card-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: #e53e3e;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .blog-card-date {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background-color: rgba(0,0,0,0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
        }
        
        .blog-card-content {
            padding: 20px;
        }
        
        .blog-card-title {
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .blog-card-desc {
            color: #666;
            margin-bottom: 15px;
            font-size: 14px;
        }
        
        .view-blog-btn {
            border: 1px solid #e53e3e;
            border-radius: 25px;
            color: #e53e3e;
            font-size: 17px;
            padding: 10px 25px;
            transition: all 0.3s ease;
            display: inline-block;
            margin-top: 20px;
        }
        
        .view-blog-btn:hover {
            background-color: #e53e3e;
            color: white;
        }
        
         .view-blog-btn:hover{
            background-color: #e53e3e;
            color: white;
        }
        
        /* Responsive adjustments */
        @media (max-width: 767.98px) {
            .blog-section {
                padding: 50px 0;
            }
            
            .blog-card-img img {
                height: 180px;
            }
        }



         .topon {
            background-color: #f8f9fa;
            padding: 40px 0;
            margin-bottom: 30px;
        }
        
        .topon h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
        }
        
        .topon h2 span {
            color: #6c757d;
            font-weight: 400;
        }
        
        .topon p {
            color: #6c757d;
            margin-top: 10px;
        }
        
        .blog {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .blog1 {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            padding: 20px;
        }
        
        .blog11 img {
            width: 100%;
            max-width: 200px;
            border-radius: 8px;
            object-fit: cover;
        }
        
        .blog12 {
            flex: 1;
            min-width: 250px;
        }
        
        .blog12 h6 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #333;
        }
        
        .blog111 button {
            background: none;
            border: none;
            color: #6c757d;
            font-size: 0.8rem;
            padding: 0;
            margin-right: 10px;
        }
        
        .blog12 p {
            margin: 15px 0;
            color: #6c757d;
        }
        
        .blog12 button {
            background-color: #e53e3e;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 0.9rem;
            margin-top: 5px;
        }
        
        .blog2 {
            width: 300px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            padding: 20px;
        }
        
        .blog21 {
            background-color: #f8f9fa;
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 20px;
        }
        
        .blog21 p {
            color: #6c757d;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .blog2 h6 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }
        
        .blog22 p {
            color: #6c757d;
            margin-bottom: 15px;
        }
        
        .blog22 button {
            background-color: #e53e3e;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 0.9rem;
            width: 100%;
        }
        
        @media (max-width: 992px) {
            .blog {
                flex-direction: column;
            }
            
            .blog2 {
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .blog1 {
                flex-direction: column;
            }
            
            .blog11 img {
                max-width: 100%;
            }
        }










            .containera {
            padding: 30px 0;
            background-color: #f8f9fa;
        }
        
        .map-container {
            position: relative;
            margin-bottom: 30px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }
        
        .contact-info {
            padding: 25px;
            background-color: #fff;
        }
        
        .contact-info h2 {
            color: #333;
            margin-bottom: 20px;
            font-size: 24px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            color: #666;
        }
        
        .contact-form-container {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .contact-form h2 {
            color: #333;
            margin-bottom: 25px;
            font-size: 24px;
            text-align: center;
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        
        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }
        
        .contact-form button {
            background-color: #f91942;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            display: block;
            margin: 0 auto;
            transition: background-color 0.3s;
        }
        
        .contact-form button:hover {
            background-color: #f91942;
        }
        
        @media (min-width: 992px) {
            .containera {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
            }
            
            .map-container {
                flex: 0 0 48%;
                margin-bottom: 0;
            }
            
            .contact-form-container {
                flex: 0 0 48%;
            }
        }
        
        @media (max-width: 768px) {
            .map-container iframe {
                height: 300px;
            }
            
            .contact-form-container {
                padding: 20px;
            }
        }













        /*****************************newnav****************************/
         .navbar {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 0.5rem 0;
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem;
            position: relative;
        }
        
        .nav-link :after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1rem;
            width: calc(100% - 2rem);
            height: 2px;
            background-color: #dc3545;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .nav-link:hover:after,
        .nav-link.active:after {
            transform: scaleX(1);
        }
        
        .cart-dropdown {
            min-width: 320px;
            max-width: 100%;
            
        }
        
        .cart-item {
            transition: background-color 0.2s ease;
        }
        
        .cart-item:hover {
            background-color: #dc3545;
        }
        
        .remove-item {
            cursor: pointer;
            transition: color 0.2s ease;
        }
        
        .remove-item:hover {
            color: #dc3545 !important;
        }
        
        @media (max-width: 991.98px) {
           
            
            .navbar-collapse {
                padding: 1rem 0;
                margin-top: 10px;
                text-align: center;
            }
            
            .nav-link {
                padding: 0.5rem 0;
                text-align: center;
            }
            
            .nav-link:after {
                left: 0;
                width: 100%;
                
                
            }
            
            .dropdown-menu {
                border: none;
                box-shadow: none;
            }
            
            .cart-dropdown {
                max-width: 100%;
                

                
            }
        }




          .topon {
            background-color: #f8f9fa;
            padding: 40px 0;
            margin-bottom: 30px;
        }
        
        .topon h2 {
            font-weight: 700;
            color: #2c3e50;
        }
        
        .topon p {
            color: #7f8c8d;
            margin-bottom: 0;
        }
        
        .pricing-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        
        .pricing-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            flex: 1;
            min-width: 300px;
            max-width: 350px;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .pricing-header {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .pricing-header.extended {
            background-color: #e3f2fd;
        }
        
        .pricing-card h3 {
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .pricing-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: #f91942;
            margin-bottom: 10px;
        }
        
        .pricing-card .price p {
            font-size: 1rem;
            color: #7f8c8d;
            margin-top: 5px;
        }
        
        .pricing-features {
            color: #34495e;
            line-height: 1.8;
            margin-bottom: 25px;
            flex-grow: 1;
        }
        
        .pricing-card button {
            width: 100%;
            padding: 12px;
            background-color: #f91942;
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s;
            margin-top: auto;
        }
        
        .pricing-card button:hover {
            background-color: #f91942;
        }
        
        .pricing-card button i {
            margin-right: 8px;
        }
        
        /* Highlight the middle card */
        .pricing-card:nth-child(2) {
            border-top: 4px solid #f91942;
        }
        
        @media (max-width: 1199px) {
            .pricing-card {
                max-width: 100%;
            }
        }
        
        @media (max-width: 767px) {
            .pricing-container {
                flex-direction: column;
                align-items: center;
            }
            
            .pricing-card {
                width: 100%;
            }
        }




        