/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Scoped layout - dark theme handled by app.css */
.page[b-dve3pllzt0] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-dve3pllzt0] {
    flex: 1;
}


/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Nav styles handled by app.css jbm-navbar class */
/* /Components/Pages/Contact.razor.rz.scp.css */
/* Contact styles handled by app.css */
/* /Components/Pages/Home.razor.rz.scp.css */
/* Home page styles handled by app.css */
/* /Components/Pages/Maintenance.razor.rz.scp.css */
.hero-section[b-jp5vswgujh] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 10rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.hero-text[b-jp5vswgujh] {
    max-width: 50%;
    margin-right: 60px; /* Space between text & image */
}

.service-label[b-jp5vswgujh] {
    display: inline-block;
    background: #00aaff;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 15px;
}

.hero-text h1[b-jp5vswgujh] {
    font-size: 3rem;
    font-weight: bold;
    margin-top: 1rem;
}

.hero-text p[b-jp5vswgujh] {
    color: #666;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.service-list[b-jp5vswgujh] {
    color: #333;
    font-size: 1.2rem;
    padding-left: 20px;
    margin-top: 20px;
}

.service-list li[b-jp5vswgujh] {
    margin-bottom: 8px;
}

.btn-primary[b-jp5vswgujh] {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 24px;
    background-color: #00aaff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.hero-image[b-jp5vswgujh] {
    position: relative;
    max-width: 50%;
}

.hero-image img[b-jp5vswgujh] {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ✅ FAQ Section - MOVED OUTSIDE MEDIA QUERY */
.faq-section[b-jp5vswgujh] {
    max-width: 800px;
    margin: 4rem auto;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-section h2[b-jp5vswgujh] {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.faq-item[b-jp5vswgujh] {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 12px 16px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.faq-item:hover[b-jp5vswgujh] {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.faq-question[b-jp5vswgujh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.faq-icon[b-jp5vswgujh] {
    font-size: 1.2rem;
    color: #0099ff;
}

.faq-answer[b-jp5vswgujh] {
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
    padding-left: 10px;
    border-left: 3px solid #0099ff;
}


@media (max-width: 768px) {
    .hero-section[b-jp5vswgujh] {
        flex-direction: column; /* Stack text & image */
        align-items: center;
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .hero-text[b-jp5vswgujh] {
        max-width: 100%;
        margin-right: 0;
    }

    .service-label[b-jp5vswgujh] {
        font-size: 0.85rem;
        padding: 5px 12px;
        margin-bottom: 10px;
    }

    .hero-text h1[b-jp5vswgujh] {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-text p[b-jp5vswgujh] {
        font-size: 1rem;
    }

    .service-list[b-jp5vswgujh] {
        text-align: left;
        padding-left: 0;
    }

    .hero-image[b-jp5vswgujh] {
        max-width: 90%;
        margin-top: 20px;
    }


}
/* /Components/Pages/Projects.razor.rz.scp.css */
.hero-section[b-2rkc99shxw] {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.page-title[b-2rkc99shxw] {
    font-size: 3rem;
    font-weight: bold;
    color: #222;
    margin-top: 1rem;
}

.service-label[b-2rkc99shxw] {
    display: inline-block;
    background: #00aaff;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 15px;
}

/* Existing Project Styles */
.project-gallery[b-2rkc99shxw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
    justify-content: center;
}

.project-card[b-2rkc99shxw] {
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.project-card:hover[b-2rkc99shxw] {
    transform: scale(1.05);
}

.project-card img[b-2rkc99shxw] {
    max-width: 100%;
    border-radius: 10px;
}
/* /Components/Pages/Tuning.razor.rz.scp.css */
.hero-section[b-31vfrird66] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 10rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.service-label[b-31vfrird66] {
    display: inline-block;
    font-size: 0.9rem;
    padding: 10px 25px; 
    border-radius: 30px; 
    background-color: #00aaff; 
    color: white;
    font-weight: bold;
    text-align: center;
    white-space: nowrap; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); 
    display: flex; 
    justify-content: center;
    align-items: center;
    max-width: fit-content; 
    margin: 0 auto; 
}


.hero-text[b-31vfrird66] {
    max-width: 50%;
    margin-right: 60px;
}

.service-label[b-31vfrird66] {
    display: inline-block;
    font-size: 0.85rem;
    padding: 6px 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    white-space: nowrap;
    text-align: center;
}

.hero-text h1[b-31vfrird66] {
    font-size: 3rem;
    font-weight: bold;
    margin-top: 1rem;
}

.hero-text p[b-31vfrird66] {
    font-size: 1.2rem;
    color: #666;
}

.service-list[b-31vfrird66] {
    color: #333;
    font-size: 1.2rem;
    padding-left: 20px;
    margin-top: 20px;
}

.service-list li[b-31vfrird66] {
    margin-bottom: 8px;
}

.btn-primary[b-31vfrird66] {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 24px;
    background-color: #00aaff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}


.hero-image[b-31vfrird66] {
    position: relative;
    max-width: 50%;
}

.hero-image img[b-31vfrird66] {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
    .hero-section[b-31vfrird66] {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .hero-text[b-31vfrird66] {
        max-width: 100%;
        margin-right: 0;
    }

    .hero-text h1[b-31vfrird66] {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .service-list[b-31vfrird66] {
        text-align: left;
        padding-left: 0;
        font-size: 1.1rem;
    }

    .hero-image[b-31vfrird66] {
        max-width: 90%;
        margin-top: 20px;
    }

    .btn-primary[b-31vfrird66] {
        display: inline-block;
        width: auto;
        text-align: center;
        padding: 12px 24px;
    }
}
