.seo-services {
    padding: 8rem 5%;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #007bff, #00bfff);
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .seo-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .seo-services-grid {
        grid-template-columns: 1fr;
    }
}

.seo-service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.seo-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.seo-service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.seo-service-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.seo-service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.seo-service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.seo-service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.service-features i {
    color: #ffffff;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .seo-services-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .seo-services {
        padding: 6rem 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .seo-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .seo-service-card {
        padding: 2rem;
    }
}

.service-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.tab-button {
    padding: 1rem 2rem;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tab-button.active {
    background: #007bff;
    color: white;
}

.tab-content .tab-pane {
    display: none;
}

.tab-content .tab-pane.active {
    display: block;
}