 :root {
            --primary: #3498db;
            --secondary: #2c3e50;
            --accent: #e74c3c;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #2ecc71;
        }
        
        body {
            font-family: 'Segoe UI', 'Tahoma', 'Geneva', 'Verdana', 'sans-serif';
            background-color: #f5f7fa;
            color: #333;
        }
        
        .navbar {
            background: linear-gradient(to right, var(--secondary), var(--primary));
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
        }
        
        .navbar-brand span {
            color: var(--accent);
        }

                /* Existing styles */
        .category-btn {
            transition: all 0.3s ease;
            border-radius: 30px !important;
            margin: 5px;
        }

        .category-btn:hover, .category-btn.active {
            background: var(--primary) !important;
            color: white !important;
            transform: scale(1.05);
        }

        /* Add this to style the dropdown button like your category buttons, if desired */
        .dropdown-toggle.btn-light {
            border-radius: 30px !important; /* Make it rounded like category buttons */
            padding: 8px 15px; /* Adjust padding if needed */
            color: var(--secondary); /* Default text color */
            border-color: var(--primary); /* Border color */
        }

        .dropdown-toggle.btn-light:hover,
        .dropdown-toggle.btn-light.active { /* Add active state for styling */
            background: var(--primary) !important;
            color: white !important;
            border-color: var(--primary) !important;
        }

        /* Style for dropdown items when selected */
        .dropdown-menu .dropdown-item.active {
            background-color: var(--primary);
            color: white;
        }
                
        .hero-section {
            background: url(images\Image_fx73.jpg);
            padding: 100px 0;
            position: relative;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 62, 80, 0.8);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
       
        .btn-whatsapp {
            background-color: #25D366;
            color: white;
            font-weight: 600;
            border-radius: 50px;
            padding: 10px 20px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;      /* Add this */
            justify-content: center;  /* Add this */
            gap: 8px;                 /* Optional: space between icon and text */
        }


        .btn-whatsapp:hover {
            background-color: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .navbar .btn-whatsapp {
            padding: 6px 14px;      /* Slimmer vertical and horizontal padding */
            font-size: 1rem;
            min-width: unset;
        }

        
        /* Style for advertisement space */
        .advertisement-space {
            background-color: #f0f0f0;
            padding: 20px;
            margin-bottom: 20px;
            text-align: center;
            border: 1px dashed #ccc;
            min-height: 100px; /* Minimum height for visibility */
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-style: italic;
        }

                /* Existing .item-badge style */
        .item-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 1;
        }

        /* NEW Campus Badge styles */
        .campus-badge {
            position: absolute;
            top: 10px;
            left: 10px; /* Position to the left */
            z-index: 1;
            padding: 0.4em 0.8em; /* Slightly more padding for readability */
            font-size: 0.85em; /* Slightly smaller font size */
            border-radius: 0.25rem; /* Standard Bootstrap border-radius for badges */
            text-transform: uppercase; /* Optional: Make text uppercase */
            font-weight: 600; /* Optional: Make text a bit bolder */
            letter-spacing: 0.5px; /* Optional: Slight letter spacing */
            background-color: var(--secondary) !important; /* Default background color */
        }
        /* Adjust z-index if badges overlap incorrectly. 
        If campus badge needs to be above category badge, increase its z-index relative to item-badge. */
        .campus-badge {
            z-index: 2; /* Ensures it sits above the item-badge if they overlap */
        }
        .item-badge {
            z-index: 1; 
        }

        .card {
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .card-img-top {
            height: 200px; /* Fixed height for consistent grid layout */
            width: 100%;   /* Ensures image fills the card width */
            object-fit: cover; /* Crops image to fill space, preventing distortion */
            /* Add a smooth transition for better visual effect on resize (optional) */
            transition: all 0.3s ease-in-out; 
        }

        /* Media Query for smaller screens (e.g., phones up to 767.98px wide) */
        @media (max-width: 767.98px) {
            .card-img-top {
                height: auto; /* Allows image to take its natural height */
                object-fit: contain; /* Ensures the entire image is visible, no cropping */
                /* You might want to add background-color if empty space becomes visible */
                background-color: #f8f9fa; /* Example light gray background */
            }
        }
        
        .card-title {
            font-weight: 700;
            color: var(--secondary);
        }
        
        .price {
            font-weight: 700;
            color: var(--accent);
            font-size: 1.3rem;
        }
        
        .category-btn {
            transition: all 0.3s ease;
            border-radius: 30px !important;
            margin: 5px;
        }
        
        .category-btn:hover, .category-btn.active {
            background: var(--primary) !important;
            color: white !important;
            transform: scale(1.05);
        }
        
        .faq-section {
            background-color: var(--light);
            padding: 60px 0;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary);
            color: white;
        }
        
        .footer {
            background: linear-gradient(to right, var(--secondary), var(--dark));
            color: white;
            padding: 40px 0 20px;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin: 0 5px;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        
        .contact-badge {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            animation: pulse 2s infinite;
        }
        i.fas.fa-phone-alt.me-2::before {
      transform: scaleX(-1);
      display: inline-block; /* Change display for better transformation behavior */
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .item-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 1;
        }
        
        .search-container {
            max-width: 500px;
            margin: 0 auto 30px;
        }