/*
 * Custom Styles for the Web Design Service Page
 * Author: Diaz Infomatics
 */

/* Intro Section Bullets */
.service-bullets {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.service-bullets li {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Service Cards Grid */
.service-card {
    background: #FFFFFF;
    padding: 35px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, .1);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

/* Process Section */
.process-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.process-wrapper::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 5%;
    right: 5%;
    height: 2px;
    background-color: var(--light);
    border-style: dashed;
    border-width: 2px 0;
    border-color: #e0e0e0;
    z-index: -1;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #FFFFFF;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--primary);
}

.process-step p {
    font-size: 0.95rem;
}

/* Portfolio Item - Reusing from style.css but available for overrides */
.portfolio-item .project-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}


/* Accordion (FAQ) Customization */
.accordion-button {
    font-weight: 600;
    color: var(--dark);
}

.accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background-color: var(--primary);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(98, 20, 154, 0.25);
}

.accordion-item {
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .process-wrapper::after {
        display: none;
    }
    .process-step {
        width: 45%;
    }
}

@media (max-width: 767.98px) {
    .process-step {
        width: 100%;
    }
}