:root {
    --primary: #667eea !important;
    --secondary: #764ba2 !important;
    --accent: #00d2ff;
    --dark: #2c3e50;
    --light: #f8f9ff;
    --gray: #6c757d;
    --success: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

body {
    background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.service-hero {
    background: none !important;
    color: #1a202c;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 30vh;
}

.service-hero::before {
    display: none !important;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600!important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    position: relative;
    z-index: 2;
    color: #1a202c;
}

.service-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
    color: #4a5568;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white !important;
    color: var(--primary) !important;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2; 
    font-size: 1.1rem;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.services-intro {
    padding: 80px 0;
    text-align: center;
}

.services-intro .container {
    max-width: 900px;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.services-intro h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 30px;
    line-height: 1.8;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.services-grid-section {
    padding: 60px 0;
}

.services-grid-section .container {
    max-width: 1200px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(106, 17, 203, 0.2);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 0.03;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    color: white;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

.service-content {
    padding: 20px 30px 40px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    font-weight: 500 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    color: var(--dark);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.service-features {
    text-align: left;
    margin: 20px 0;
    padding: 0 15px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--dark);
}

.service-features li i {
    color: var(--success);
    margin-top: 5px;
    flex-shrink: 0;
}

.cta-section {
    background: linear-gradient(135deg, #f9f9ff 0%, #f0f5ff 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 80px 0;
    text-align: center;
    margin: 60px 0;
}

.cta-section .container {
    max-width: 900px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    color: var(--dark);
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--gray);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.3);
    font-size: 1.1rem;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.4);
}

.process-section {
    padding: 80px 0;
}

.process-section .container {
    max-width: 1200px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 400 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 50px;
    right: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 0;
}

.step {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    width: 250px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 500 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 500 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    color: var(--dark);
}

.step p {
    color: var(--gray);
    line-height: 1.7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f5ff 0%, #e6f0ff 100%);
    margin-top: 60px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.testimonial {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial::before {
    content: "\201C";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(106, 17, 203, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial p {
    color: var(--dark);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 1.2rem;
}

.client-details h4 {
    color: var(--dark);
    margin-bottom: 5px;
    font-weight: 500 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.client-details p {
    color: var(--gray);
    margin: 0;
    font-style: normal;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

@media (max-width: 992px) {
    .service-hero h1 {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 80px 20px;
    }
    
    .service-hero h1 {
        font-size: 2.3rem;
    }
    
    .service-hero p {
        font-size: 1.1rem;
    }
    
    .services-intro h2,
    .section-title h2,
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .step {
        width: 100%;
        max-width: 350px;
    }
}

.service-hero {
    width: 100%;
    background: none !important;
    color: #1a202c;
    padding: 30px 0;
    margin: 0;
    text-align: center;
}

.service-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 400 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.service-hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-btn i {
    margin-right: 10px;
}
