
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Services Section Styling */
.services-section {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 1rem;
}

.services-section p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Service Card Styling */
.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}
.service-icon img{
    width: 50px;
}
#sensor{
    line-height: 1.7rem;
}
#cluster-repair{
    line-height: 1.7rem;
}
#door{
    line-height: 1.7rem;
}
#window{
    line-height: 1.7rem;
}
#Starter-Repair{
    line-height: 1.7rem;
}
.button{
    display: inline-block;
    background-color: #ff4500;
    color: #fff;
    padding: 12px 24px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 23px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}
.button:hover{
    background-color: #ff6437;
    transform: scale(1.1);
}

/* Responsive Styling */
@media (max-width: 768px) {
    .services-section h2 {
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.9rem;
    }
}
