/* Services Page Specific Styles */

/* Header */
.services-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1200&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    padding: 6rem 0;
}

.services-header h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Service Cards */
.service-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-features {
    text-align: left;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-features i {
    margin-right: 0.75rem;
}

/* Why Choose Me Section */
.feature-box {
    background-color: #fff;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: scale(1.05);
}

.feature-icon {
    font-size: 2.5rem;
}

/* FAQ Section */
.accordion-item {
    border: none;
    border-bottom: 1px solid #dee2e6;
    border-radius: 0 !important;
}

.accordion-button {
    font-weight: 600;
    color: #212529;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: var(--bs-primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background-color: #f8f9fa;
}

/* Service Card Specific Colors */
.service-card .btn-outline-primary:hover,
.service-card .btn-outline-danger:hover,
.service-card .btn-outline-info:hover,
.service-card .btn-outline-warning:hover,
.service-card .btn-outline-secondary:hover,
.service-card .btn-outline-success:hover {
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .services-header {
        padding: 4rem 0;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
}

/* Animation for Service Cards */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.service-card:hover .service-icon i {
    animation: pulse 1s infinite;
}

/* Hover effect for feature boxes */
.feature-box:hover .feature-icon {
    transform: rotate(15deg);
    transition: transform 0.3s ease;
}

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

/* Service anchor offset for smooth scrolling */
#web-development, #graphic-design, #social-media, 
#content-creation, #data-entry, #digital-marketing {
    scroll-margin-top: 80px;
}
/* Service highlighting */
@keyframes highlight-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(13, 110, 253, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

.highlight-service {
    animation: highlight-pulse 2s infinite;
    border: 2px solid var(--bs-primary);
}

/* End of Services Page Specific Styles */