/* This file will contain dummy CSS styles to simulate images */

/* 
 * Since we can't directly upload images, these CSS styles will create placeholder boxes
 * that you can later replace with actual images when you have them.
 */

.placeholder-hero {
    background: linear-gradient(135deg, #800080, #9932CC);
    height: 400px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.placeholder-hero::after {
    content: 'Service Professional Image';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    text-align: center;
    width: 100%;
}

.placeholder-app {
    background: #f4f4f4;
    height: 500px;
    width: 250px;
    border-radius: 25px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 10px solid #333;
}

.placeholder-app::after {
    content: 'App Mockup';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    font-size: 1.5rem;
    text-align: center;
    width: 100%;
}

.placeholder-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#800080 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}
