body {
     background-color: #f8f9fa;
}
 .navbar-brand {
     font-size: 50px;
     font-weight: bold;
     color: #28a745 !important;
}
 .navbar-dark .navbar-nav .nav-link, .navbar-dark .navbar-nav .dropdown-menu .dropdown-item {
     color: #28a745 !important;
     font-size: 35px !important;
}
/* Footer Styles */
 .site-footer {
     background-color: #f8f8f8;
     padding: 40px 0;
     color: #666666;
}
 .site-footer h3 {
     color: #333333;
}
 .site-footer p {
     margin-bottom: 15px;
}
 .site-footer .social-icons {
     list-style: none;
     padding: 0;
     margin: 0;
}
 .site-footer .social-icons li {
     display: inline-block;
     margin-right: 10px;
}
 .site-footer .social-icons li a {
     color: #666666;
     font-size: 18px;
}
 .site-footer .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
}
 .site-footer .footer-links li {
     margin-bottom: 10px;
}
 .site-footer .footer-links li a {
     color: #666666;
}
 .site-footer .newsletter-form {
     margin-top: 15px;
}
 .site-footer .newsletter-form input[type="email"], .site-footer .newsletter-form button[type="submit"] {
     height: 40px;
     padding: 0 15px;
     border: none;
     background-color: #eeeeee;
     color: #333333;
}
 .site-footer .bottom-bar {
     margin-top: 30px;
     border-top: 1px solid #dddddd;
     padding-top: 15px;
     text-align: center;
     font-size: 14px;
}
 .plate-image, .plate-image2 {
     width: 300px;
     height: 300px;
     object-fit: cover;
}
 .hidden {
     display: none;
}
 .carousel-multi-item {
     float: left;
     width: 33.333%;
     padding: 5px;
}
 .variable-input {
     width: calc(100% - 10px);
}
 #progress-bar-container {
     width: calc(100% - 20px);
     height: 20px;
     background-color: #ddd;
     border-radius: 10px;
     overflow: hidden;
     margin-top: 10px;
     margin-left: 10px;
    /* Add left margin */
     margin-right: 10px;
    /* Add right margin */
     padding-top: 0;
}
 #progress-bar-container .modal-header, #progress-bar-container .modal-content, #progress-bar-container .modal-dialog {
     margin: 0;
     padding: 0;
}
 #progress-bar {
     width: 0%;
     height: 100%;
     background-color: #4CAF50;
}
 .btn {
     margin-right: 5px;
}
 .radio-label {
     margin-right: 10px;
}
 .radio-input {
     width: 20px;
     height: 20px;
}
 .filter-question.incomplete, #ref-input.incomplete {
     background-color: #ffc0cb;
    /* Change this to the desired highlight color */
}
 .navbar-dark .navbar-nav .nav-item .nav-link {
     font-size: 30px !important;
}
 .cart-icon {
     width: 30px;
     height: 30px;
}
 .navbar {
     border-bottom: 3px solid green;
}
 .cart-icon {
     transition: transform 0.3s ease-in-out;
}
 .cart-icon.has-items {
     animation: shake 0.5s;
}



.img-styling {
    border-radius: 10%;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.img-styling:hover {
    transform: scale(1.1);
}

/* Apps Highlight Banner - Featured Section */
.apps-highlight-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: white;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Animated background effect */
.apps-highlight-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4); }
    50% { box-shadow: 0 10px 40px rgba(102, 126, 234, 0.6), 0 0 20px rgba(118, 75, 162, 0.3); }
}

.apps-banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.apps-banner-title i {
    color: #ffd700;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.apps-banner-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.apps-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.apps-features-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.apps-features-list i {
    color: #4ade80;
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-apps-cta {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 20px 50px;
    border-radius: 50px;
    border: 3px solid white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    animation: button-pulse 2s ease-in-out infinite;
}

@keyframes button-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-apps-cta:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    color: white;
    text-decoration: none;
}

.btn-apps-cta i {
    margin-right: 10px;
    animation: rocket-shake 1s ease-in-out infinite;
}

@keyframes rocket-shake {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.apps-banner-badge {
    background: #10b981;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    animation: badge-glow 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(16, 185, 129, 0.8); }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .apps-highlight-banner {
        padding: 30px 20px;
    }
    
    .apps-banner-title {
        font-size: 1.8rem;
    }
    
    .apps-banner-text {
        font-size: 1rem;
    }
    
    .apps-features-list li {
        font-size: 0.95rem;
    }
    
    .btn-apps-cta {
        font-size: 1.2rem;
        padding: 15px 35px;
    }
}

/* Navbar Apps Highlight */
.apps-nav-highlight .nav-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-radius: 25px;
    padding: 8px 20px !important;
    font-weight: bold !important;
    animation: navbar-pulse 2s ease-in-out infinite;
    position: relative;
}

@keyframes navbar-pulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
    }
    50% { 
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.8), 0 0 30px rgba(118, 75, 162, 0.4);
    }
}

.apps-nav-highlight .nav-link i {
    color: #ffd700;
    animation: star-twinkle 1.5s ease-in-out infinite;
}

@keyframes star-twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.apps-nav-highlight .nav-link:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

.badge-new {
    background: #ef4444;
    color: white;
    font-size: 0.6em;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: bold;
    vertical-align: super;
    animation: badge-bounce 2s ease-in-out infinite;
}

@keyframes badge-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}


