body {
    background-color: #00000000;
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    width: 100%;
}

.service-page {
    max-width: 70%;
    margin: 120px auto;
    padding: 30px;
            background: rgba(24, 24, 24, 0.76); 
        backdrop-filter: blur(10px); 
        -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Header */
.service-header {
    display: flex;
    margin-bottom: 40px;
    width: 100%;
}

.service-header-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.service-header-text h1 {
    color: #F28C28;
    font-size: 26px;
    margin-bottom: 5px;
}

.service-header-text h2 {
    color: white;
    font-size: 42px;
    border-bottom: 2px solid #F28C28;
    width: fit-content;
    
}

.service-header-text h2 img {
    width: 50px;
    height: 50px;
    margin-left: 15px;
    vertical-align: middle;
}

.service-header-text p {
    color: #CCCCCC;
    font-size: 24px;
    margin-top: 10px;
}

.service-section ,
.service-features,
.service-process{
    margin-bottom: 90px;
    margin-top: 50px;
}

.service-section h3,
.service-features h3,
.service-process h3 {
    color: white;
    font-size: 28px;
    border-left: 4px solid #F28C28;
    padding-left: 10px;
    margin-bottom: 20px;
}

.service-section p {
    color: #CCCCCC;
    font-size: 24px;
    line-height: 1.6;
}

/* Features */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
    perspective: 1000px;
}

/* Blur effect for non-hovered cards */
.service-features-grid:hover .service-feature-card:not(:hover) {
    filter: blur(2px);
    opacity: 0.7;
    transform: scale(0.95);
}

.service-feature-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    position: relative;
    height: 180px;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(242, 140, 40, 0.15) 0%, rgba(255, 107, 53, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-feature-card:hover::before {
    opacity: 1;
}

.service-feature-card i {
    font-size: 2.5rem;
    color: #F28C28;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-feature-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #ff6b35;
}

.service-feature-card:hover {
    transform: translateY(-15px) scale(1.08);
    height: 400px;
    z-index: 10;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(242, 140, 40, 0.3);
    border-color: #F28C28;
}

.service-feature-card h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-feature-card:hover h4 {
    color: #F28C28;
}

.service-feature-card p {
    color: #CCCCCC;
    position: relative;
    z-index: 2;
}

.question{
    color: white !important;
    font-size: 14px;
    font-weight: 600;
    margin:15px auto !important;
    text-align: center;
}

/* Chart Overlay Styles */
.chart-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: auto;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease 0.3s;
    transform: translateY(30px);
    z-index: 15;
    margin-top: 80px;
}

.service-feature-card:hover .chart-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chart-overlay h5 {
    color: #F28C28;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
}

.chart-overlay canvas {
    margin: 0 auto 15px auto;
    display: block !important;
    width: 70% !important;
    height: 50% !important;
}

#seoChart, 
#securityChart, 
#paymentDonut, 
#analyticsDonut, 
#backupDonut, 
#localSeoDonut,
#uiDesignChart,
#logoChart,
#webGraphicsChart,
#campaignChart,
#recordsChart,
#categoriesChart{
    width: 160px !important;
    height: 160px !important;

}

.chart-overlay.bar-chart canvas,
.chart-overlay.line-chart canvas {
    width: 200px !important;
    height: 80px !important;
    max-width: 200px;
    max-height: 80px;
}

.chart-overlay.radar-chart canvas {
    width: 130px !important;
    height: 130px !important;
    max-width: 130px;
    max-height: 130px;
}

.chart-insight {
    color: #F28C28;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    margin: 0;
}

.pricing-holder {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 15px;
}

.service-pricing h3 {
    color: white;
    font-size: 38px;
    border-bottom: 4px solid #F28C28;
    padding-bottom: 4px;
    text-align: center;
    width: fit-content;
    margin: 0 auto 20px auto;
}

.service-pricing p {
    color: #CCCCCC;
    font-size: 24px;
    line-height: 1.6;
    text-align: center;
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.process-step {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: 0.3s;
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: #F28C28;
}

.process-step span {
    color: #F28C28;
    font-size: 28px;
    font-weight: bold;
}

.process-step h4 {
    color: white;
    margin: 10px 0;
}

.process-step p {
    color: #CCCCCC;
    font-size: 16px;
}

/* CTA */
.service-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 15px;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .service-page {
        max-width: 90%;
        margin: 100px auto;
        padding: 20px;
    }

    .service-header-text h2 {
        font-size: 32px;
    }

    .service-header-text h2 img {
        width: 40px;
        height: 40px;
        margin-left: 10px;
        vertical-align: middle;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-feature-card {
        height: auto;
        min-height: 380px;
        transition: all 0.6s ease;
        transform: none;
        box-shadow: 0 4px 16px rgba(0,0,0,0.3);
        border-color: #333;
    }
    
    .service-feature-card.mobile-active {
        box-shadow: 
            0 15px 30px rgba(0, 0, 0, 0.4),
            0 0 40px rgba(242, 140, 40, 0.4);
        border-color: #F28C28;
    }
    
    .service-feature-card::before {
        opacity: 1;
        background: linear-gradient(135deg, rgba(36, 19, 2, 0.1) 0%, rgba(34, 10, 2, 0.05) 100%);
    }
    
    .service-feature-card i {
        transform: scale(1.1) rotate(5deg);
        color: #ff6b35;
    }
    
    .service-feature-card h4 {
        color: #F28C28;
    }
    
    .service-feature-card:hover {
        transform: none;
        height: auto;
        filter: none;
    }
    
    .service-features-grid:hover .service-feature-card:not(:hover) {
        filter: none;
        opacity: 1;
        transform: none;
    }
    
    .chart-overlay {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(242, 140, 40, 0.3);
    }

    .service-feature-card p {
        margin-top: 15px;
        color: whitesmoke;
        font-size: 20px;
    }
}
