        .service-hero {
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.9), rgba(124, 58, 237, 0.8)), url(images/hero-img.png);
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0 50px;
    min-height: 100vh;
    display: flex;
    align-items: center;
        }
        
        .service-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }
        
        .service-hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .service-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: bold;
        }
        
        .service-hero .service-icon {
            font-size: 4rem;
            color: #FFD700;
        }
        
        .service-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .hero-stats {
            display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
        }
        
        .stat-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #FFD700;
            
            margin-bottom: 0.2rem;
        }
        
       .stat-label {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4rem;
}

.service-hero-content h1 {
    font-size: 2.6rem;
    margin-bottom: 0.90rem;
    font-weight: bold;
    line-height: 2.8rem;
}
.service-hero-content p{
    font-size: 1.2rem;
    line-height: 1.8rem;
    opacity: 0.9;
    margin: 0 auto 0.70rem;
}
        
        .service-content {
            padding: 80px 0;
        }
        
        .problem-section {
            background: #f8f9fa;
            padding: 80px 0;
        }
        
        .problem-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .problem-text h2 {
            font-size: 2.3rem;
            color: #333;
            margin-bottom: 1.5rem;
        }
        
        .problem-list {
            list-style: none;
            padding: 0;
        }
        
        .problem-list li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            padding: 1rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .problem-list li i {
            color: #e74c3c;
            font-size: 1.5rem;
            margin-right: 1rem;
            width: 30px;
        }
        
        .problem-image {
            text-align: center;
        }
        
        .problem-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .solution-section {
            background: white;
            padding: 80px 0;
        }
        
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .solution-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .solution-card:hover {
            transform: translateY(-5px);
        }
        
        .solution-icon {
            width: 80px;
            height: 80px;
            background: #4f46e5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        
        .solution-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .solution-card h3 {
            color: #333;
            margin-bottom: 1rem;
        }
        
        .solution-card p {
            color: #666;
            line-height: 1.6;
        }
        
        .pricing-section {
            background: #f8f9fa;
            padding: 80px 0 40px;
            text-align: center;

        }
   .pricing-section .estimate-btn {
    position: relative;
    overflow: hidden;
    width: 32%;
    padding: 12px 18px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.9), rgb(143 77 255 / 80%));
    border: none;
    color: #fff;
    display: block;
    margin: 3.2rem auto 0;
    text-decoration: none;
    border-radius: 8px;
    z-index: 1;
}

.pricing-section .estimate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.05) 100%);
    animation: shimmerSide 2s infinite;
    z-index: 2;
    transform: skewX(-20deg);
}

@keyframes shimmerSide {
    0% { left: -100%; }
    100% { left: 100%; }
}


        
        .pricing-section .estimate-btn:hover{
            background: linear-gradient(135deg, rgba(79, 70, 229, 1), rgb(143 77 255 / 100%));
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .pricing-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            position: relative;
        }
        
        .pricing-card.popular {
            border: 3px solid  #ffe34f;
            transform: scale(1.05);
        }
        
        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #ffe34f;
            color: #333;
            padding: 5px 20px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        .bhk-type {
            font-size: 1.5rem;
            font-weight: bold;
            color: #4f46e5;
            margin-bottom: 1rem;
        }
        
        .pricing-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 0.5rem;
        }
        
        .warranty {
            color: #666;
            margin-bottom: 1.5rem;
        }
        
        .features-list {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .features-list li {
            padding: 0.5rem 0;
            color: #666;
            border-bottom: 1px solid #eee;
        }
        
        .features-list li i {
            color: #27ae60;
            margin-right: 0.5rem;
        }
        
        .book-btn {
            width: 100%;
            background: #4f46e5;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .book-btn:hover {
            background: #357ABD;
        }
        
        .process-section {
            background: white;
            padding: 80px 0;
        }
        
        .process-timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .process-step {
            display: flex;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .step-number {
    width: 60px;
    height: 60px;
    background: #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 2rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
        
        .step-content h3 {
            color: #333;
            margin-bottom: 0.5rem;
        }
        
        .step-content p {
            color: #666;
            line-height: 1.6;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            left: 29px;
            top: 60px;
            width: 2px;
            height: 80px;
            background: #ddd;
            z-index: 1;
        }
        
        .process-step:last-child::after {
            display: none;
        }
		
		
		/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
    margin-right: 0.2rem;
}

.testimonial-card p {
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.customer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.customer strong {
    display: block;
    color: #1f2937;
}

.customer span {
    color: #6b7280;
    font-size: 0.9rem;
}


@media (max-width: 480px) {
.service-hero-content h1{
font-size: 1.8rem;
line-height: 2.2rem;
}
.service-hero-content{
padding:0;
}
.stat-number {
    font-size: 2rem;
	}
.problem-text h2 {
    font-size: 1.8rem;
	line-height:2.2rem;
    color: #333;
    margin-bottom: 1.2rem;
}
.problem-section {
    padding: 46px 0;
}
.solution-section {
    padding: 46px 0;
}
.solution-section h2{
font-size: 1.8rem !important;
line-height: 2.2rem !important;
}
.solution-icon {
    width: 56px;
    height: 56px;
	}
	.pricing-section .estimate-btn{
	margin: 2.4rem auto 0;
	    width: 96%;
	}
	.testimonials {
    padding: 46px 0;
}
.process-section {
    padding: 46px 0 0;
}
.process-step{
text-align: left !important;
flex-direction: inherit !important;
}
    .step-number {
        width: 46px;
        height: 46px;
        background: #4f46e5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 1.2rem;
        margin-right: 1.5rem !important;
        position: relative;
        z-index: 2;
        flex-shrink: 0;
    }
	    .process-step::after {
        content: '' !important;
        position: absolute !important;
        left: 22px !important;
        top: 46px !important;
        width: 2px !important;
        height: 80px !important;
        background: #ddd !important;
        z-index: 1 !important;
		transform: inherit !important;
    }
	.pricing-card .price {
    font-size: 2.2rem;
	}
	.pricing-section h2{
	font-size: 1.8rem !important;
line-height: 2.2rem !important;
	}
	.pricing-section{
	padding: 46px 0 40px;
	}
	.solution-card {
        flex-basis: 100% !important;
    }
}
        
        @media (max-width: 768px) {
            .service-hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .problem-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .solutions-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.popular {
                transform: none;
            }
            
            .process-step {
                flex-direction: column;
                text-align: center;
            }
            
            .step-number {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .process-step::after {
                left: 50%;
                transform: translateX(-50%);
                top: auto;
                bottom: -25px;
                width: 2px;
                height: 25px;
            }
			
.service-hero-content h1{
font-size: 1.8rem;
line-height: 2.2rem;
}
.service-hero-content{
padding:0;
}
.stat-number {
    font-size: 2rem;
	}
.problem-text h2 {
    font-size: 1.8rem;
	line-height:2.2rem;
    color: #333;
    margin-bottom: 1.2rem;
}
.problem-section {
    padding: 46px 0;
}
.solution-section {
    padding: 46px 0;
}
.solution-section h2{
font-size: 1.8rem !important;
line-height: 2.2rem !important;
}
.solution-icon {
    width: 56px;
    height: 56px;
	}
	.pricing-section .estimate-btn{
	margin: 2.4rem auto 0;
	    width: 96%;
	}
	.testimonials {
    padding: 46px 0;
}
.process-section {
    padding: 46px 0 0;
}
.process-step{
text-align: left !important;
flex-direction: inherit !important;
}
    .step-number {
        width: 46px;
        height: 46px;
        background: #4f46e5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 1.2rem;
        margin-right: 1.5rem !important;
        position: relative;
        z-index: 2;
        flex-shrink: 0;
    }
	    .process-step::after {
        content: '' !important;
        position: absolute !important;
        left: 22px !important;
        top: 46px !important;
        width: 2px !important;
        height: 80px !important;
        background: #ddd !important;
        z-index: 1 !important;
		transform: inherit !important;
    }
	.pricing-card .price {
    font-size: 2.2rem;
	}
	.pricing-section h2{
	font-size: 1.8rem !important;
line-height: 2.2rem !important;
	}
	.pricing-section{
	padding: 46px 0 40px;
	}
	
	.solutions-grid{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
	.solution-card{
	flex-basis: 45.4%;
	}
        }
