/* Enhanced CSS with Popular Gradient Color Palettes for Zopigo */

:root {
    /* Popular Gradient Color Palettes */
    --gradient-sunset: linear-gradient(135deg, #ff6b6b, #feca57, #ff9ff3);
    --gradient-ocean: linear-gradient(135deg, #667eea, #764ba2, #667eea);
    --gradient-forest: linear-gradient(135deg, #11998e, #38ef7d, #2dd4bf);
    --gradient-fire: linear-gradient(135deg, #f093fb, #f5576c, #ff6b6b);
    --gradient-cosmic: linear-gradient(135deg, #4facfe, #00f2fe, #667eea);
    --gradient-aurora: linear-gradient(135deg, #a8edea, #fed6e3, #ffeef8);
    --gradient-rainbow: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c, #feca57);
    
    /* Status Colors */
    --gradient-success: linear-gradient(135deg, #11998e, #38ef7d);
    --gradient-warning: linear-gradient(135deg, #feca57, #ff9ff3);
    --gradient-info: linear-gradient(135deg, #4facfe, #00f2fe);
    --gradient-danger: linear-gradient(135deg, #f093fb, #f5576c);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Enhanced Gradient Text Classes */
.gradient-text-rainbow {
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientShift 3s ease-in-out infinite;
}

.gradient-text-sunset {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-text-ocean {
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-text-forest {
    background: var(--gradient-forest);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-text-fire {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-text-cosmic {
    background: var(--gradient-cosmic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-text-aurora {
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Gradient Animation */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Header Styles */
.gradient-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-rainbow);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

/* Enhanced Button Styles */
.btn-gradient-rainbow {
    background: var(--gradient-rainbow);
    background-size: 200% 200%;
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    animation: gradientShift 3s ease-in-out infinite;
}

.btn-gradient-rainbow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-gradient-sunset {
    background: var(--gradient-sunset);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-gradient-sunset:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    color: white;
}

.btn-gradient-ocean {
    background: var(--gradient-ocean);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-gradient-ocean:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-gradient-forest {
    background: var(--gradient-forest);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(17, 153, 142, 0.3);
}

.btn-gradient-forest:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(17, 153, 142, 0.4);
    color: white;
}

.btn-gradient-fire {
    background: var(--gradient-fire);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
}

.btn-gradient-fire:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(240, 147, 251, 0.4);
    color: white;
}

.btn-gradient-cosmic {
    background: var(--gradient-cosmic);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.btn-gradient-cosmic:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(79, 172, 254, 0.4);
    color: white;
}

.btn-gradient-aurora {
    background: var(--gradient-aurora);
    border: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(168, 237, 234, 0.3);
}

.btn-gradient-aurora:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(168, 237, 234, 0.4);
    color: #333;
}

/* Service Updates Banner */
.service-updates {
    background: linear-gradient(135deg, #ffeef8 0%, #f0f4ff 50%, #e8f5e8 100%);
    padding: 12px 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-success {
    background: var(--gradient-success);
}

.status-warning {
    background: var(--gradient-warning);
}

.status-info {
    background: var(--gradient-info);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-rainbow);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.animate-text {
    animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Service Tags */
.service-tags {
    margin-top: 2rem;
}

.service-tag {
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tag-sunset {
    background: rgba(255, 107, 107, 0.2);
    color: #fff;
    border-color: rgba(255, 107, 107, 0.5);
}

.tag-ocean {
    background: rgba(102, 126, 234, 0.2);
    color: #fff;
    border-color: rgba(102, 126, 234, 0.5);
}

.tag-forest {
    background: rgba(17, 153, 142, 0.2);
    color: #fff;
    border-color: rgba(17, 153, 142, 0.5);
}

.tag-fire {
    background: rgba(240, 147, 251, 0.2);
    color: #fff;
    border-color: rgba(240, 147, 251, 0.5);
}

.tag-cosmic {
    background: rgba(79, 172, 254, 0.2);
    color: #fff;
    border-color: rgba(79, 172, 254, 0.5);
}

.tag-aurora {
    background: rgba(168, 237, 234, 0.2);
    color: #fff;
    border-color: rgba(168, 237, 234, 0.5);
}

.service-tag:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Hero Buttons */
.hero-buttons .btn {
    margin: 5px;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Enhanced Tracking Widget */
.tracking-widget {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: none !important;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.gradient-nav .nav-link {
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gradient-nav .nav-link.active {
    background: var(--gradient-rainbow);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.gradient-nav-small .nav-link {
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gradient-nav-small .nav-link.active {
    background: var(--gradient-ocean);
    color: white;
}

.gradient-input {
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.gradient-input:focus {
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.25);
    background: var(--gradient-rainbow);
    background-clip: padding-box;
    border: 2px solid transparent;
    color: white;
}

.gradient-input:focus::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

/* App Download Enhanced */
.app-download {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.gradient-bg-success {
    background: var(--gradient-success);
    color: white;
}

.gradient-bg-info {
    background: var(--gradient-info);
    color: white;
}

.app-download:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.app-download i {
    font-size: 1.3rem;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f0f4ff 100%);
}

.about-stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.gradient-border {
    position: relative;
    padding: 4px;
    background: var(--gradient-rainbow);
    border-radius: 20px;
}

.gradient-border img {
    border-radius: 16px;
}

/* Value Proposition Section */
.value-proposition {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #ffeef8 100%);
}

.gradient-line-rainbow {
    width: 80px;
    height: 6px;
    background: var(--gradient-rainbow);
    border-radius: 3px;
    animation: gradientShift 3s ease-in-out infinite;
}

/* Enhanced Services Section */
.services-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.service-card {
    transition: all 0.4s ease;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.gradient-card-sunset::before {
    background: var(--gradient-sunset);
}

.gradient-card-ocean::before {
    background: var(--gradient-ocean);
}

.gradient-card-forest::before {
    background: var(--gradient-forest);
}

.gradient-card-fire::before {
    background: var(--gradient-fire);
}

.gradient-card-cosmic::before {
    background: var(--gradient-cosmic);
}

.gradient-card-aurora::before {
    background: var(--gradient-aurora);
}

.gradient-card-rainbow::before {
    background: var(--gradient-rainbow);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.gradient-sunset {
    background: var(--gradient-sunset);
}

.gradient-ocean {
    background: var(--gradient-ocean);
}

.gradient-forest {
    background: var(--gradient-forest);
}

.gradient-fire {
    background: var(--gradient-fire);
}

.gradient-cosmic {
    background: var(--gradient-cosmic);
}

.gradient-aurora {
    background: var(--gradient-aurora);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Enhanced Statistics Section */
.stats-section {
    background: var(--gradient-rainbow);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f0f4ff 100%);
}

.contact-form {
    background: var(--gradient-rainbow);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form > * {
    position: relative;
    z-index: 1;
}

.contact-item {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

/* Enhanced Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #ffeef8 100%);
}

.testimonial-card {
    transition: all 0.4s ease;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 0.05;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.stars i {
    margin-right: 3px;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-rainbow);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.cta-section > .container {
    position: relative;
    z-index: 1;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,0 100,50 50,100 0,50" fill="rgba(255,255,255,0.02)"/></svg>') repeat;
    opacity: 0.5;
}

.footer > .container {
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    color: white;
}

.hover-gradient {
    transition: all 0.3s ease;
    position: relative;
}

.hover-gradient::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-rainbow);
    transition: width 0.3s ease;
}

.hover-gradient:hover::after {
    width: 100%;
}

.hover-gradient:hover {
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-tags {
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2.2rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .service-tag {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .hero-buttons .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .contact-form {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .service-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-rainbow);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-sunset);
}

/* Additional Utility Classes */
.text-gradient-rainbow {
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-rainbow {
    background: var(--gradient-rainbow);
}

.border-gradient-rainbow {
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box, var(--gradient-rainbow) border-box;
}

/* Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Glow Effect */
.glow-effect {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    transition: box-shadow 0.3s ease;
}

.glow-effect:hover {
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}

/* Custom Form Styles */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: rgba(102, 126, 234, 0.8);
    font-weight: 600;
}

.form-floating > .form-select:focus ~ label,
.form-floating > .form-select:not([value=""]) ~ label {
    color: rgba(102, 126, 234, 0.8);
    font-weight: 600;
}

/* Enhanced Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

/* Particle Effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .service-updates,
    .cta-section,
    .footer {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
}

        .slider {
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }
        .slide {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            background-size: cover;
            background-position: center;
        }
        .slide-content {
            text-align: center;
            background: rgba(0, 0, 0, 0.6);
            padding: 20px;
            border-radius: 10px;
        }
        .btn {
            background: #007BFF;
            color: #fff;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            display: inline-block;
            margin-top: 10px;
        }
        .order-status-section {
            background: #f4f4f4;
            color: #333;
            padding: 50px 20px;
            text-align: center;
        }
        .order-status-section h2 {
            font-size: 2.5em;
            margin-bottom: 40px;
        }
        .status-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
        }
        .status-box {
            background: #9b59b6;
            color: #fff;
            padding: 20px;
            border-radius: 20px;
            width: 200px;
            flex: 1 1 150px;
            min-height: 180px;
        }
        .status-box h3 {
            margin-top: 10px;
        }
        .status-box p {
            font-size: 14px;
        }