/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */



	width: 40px;
	margin-bottom: 10px;
/* --- General Widget Styling --- */
.ai-widget-container {
	padding: 10px;
}

/* Stat Grids */
.stats-grid {
	display: grid;
	gap: 15px;
	margin-bottom: 20px;
}

.stats-grid.four-col {
	grid-template-columns: repeat(4, 1fr);
}

.stats-grid.three-col {
	grid-template-columns: repeat(3, 1fr);
}

.stat-card {
	background: #f8f9fa;
	padding: 15px;
	border-radius: 8px;
	text-align: center;
	border: 1px solid #e0e0e0;
}

.stat-card h3 {
	margin: 0 0 5px 0;
	font-size: 2em;
	color: #2271b1;
}

.stat-card p {
	margin: 0;
	font-size: 13px;
	color: #555;
}


/* Service Page Styles - Modern UI */

/* Hero Section */
.service-hero {
    position: relative;
    min-height: clamp(40vh, 50vh, 60vh);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(3rem, 4rem, 6rem) 0;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.service-breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.service-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.service-breadcrumb a:hover {
    opacity: 0.8;
}

.service-breadcrumb span {
    color: #fff;
    margin: 0 0.5rem;
}

.service-hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.service-hero-subtitle {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.service-main-content {
    padding: 5rem 0;
    background: #fafafa;
}

.service-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
    align-items: start;
}

.service-feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 250px;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-feature-card:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section */
.service-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta-section::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"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.cta-card {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Overview Styles */
.services-overview-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: clamp(4rem, 5rem, 7rem) 0;
    min-height: clamp(35vh, 40vh, 50vh);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-overview-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"><circle fill="rgba(255,255,255,0.1)" cx="200" cy="200" r="100"/><circle fill="rgba(255,255,255,0.05)" cx="800" cy="300" r="150"/><circle fill="rgba(255,255,255,0.08)" cx="300" cy="800" r="120"/></svg>');
    background-size: cover;
}

.overview-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.overview-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.overview-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.overview-hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.service-card-modern {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-modern:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-modern:hover .service-card-overlay {
    opacity: 1;
}

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

.service-card-content {
    padding: 2rem;
}

.service-card-number {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.service-card-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card-link:hover {
    color: #764ba2;
    gap: 0.8rem;
}

.service-card-link svg {
    transition: transform 0.3s ease;
}

.service-card-link:hover svg {
    transform: translateX(4px);
}

/* Bottom CTA */
.services-bottom-cta {
    background: #fff;
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.bottom-cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.bottom-cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

/* No Services Message */
.no-services-message {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.no-services-message h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.no-services-message p {
    color: #666;
    font-size: 1.1rem;
}

/* Services Offer Specific Styles */
.service-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.service-offer-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-offer-card:hover::before {
    transform: scaleY(1);
}

.offer-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.offer-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.offer-items {
    margin-top: 1.5rem;
}

.offer-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    border-bottom: 1px solid #f7fafc;
}

.offer-checklist li:last-child {
    border-bottom: none;
}

.check-icon {
    color: #48bb78;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.offer-description {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin: 1rem 0;
}

.service-preview-items {
    margin: 1.5rem 0;
}

.service-preview-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-preview-items li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.service-preview-items li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.service-preview-items .more-items {
    font-style: italic;
    color: #999;
}

/* Breadcrumb Banner for All Pages */
.page-breadcrumb-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.page-breadcrumb-banner::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"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
    color: #fff;
}

.page-breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.75rem;
}

.page-breadcrumb .current {
    color: #fff;
    font-weight: 500;
}

.page-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for breadcrumb banner */
@media (max-width: 768px) {
    .page-breadcrumb-banner {
        padding: 1.5rem 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-breadcrumb {
        font-size: 0.9rem;
    }
    
    .service-offer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-offer-card {
        padding: 2rem;
    }
    
    .offer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }
    
    .service-offer-card {
        padding: 1.5rem;
    }
    
    .offer-checklist li {
        padding: 0.5rem 0;
        font-size: 0.95rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero {
        min-height: clamp(30vh, 35vh, 40vh);
        padding: clamp(2rem, 3rem, 4rem) 0;
    }
    
    .services-overview-hero {
        min-height: clamp(25vh, 30vh, 35vh);
        padding: clamp(3rem, 4rem, 5rem) 0;
    }
    
    .service-hero-title,
    .overview-title {
        font-size: clamp(2rem, 2.5rem, 3rem);
    }
    
    .service-hero-subtitle,
    .overview-subtitle {
        font-size: clamp(1rem, 1.1rem, 1.25rem);
    }
    
    .section-header h2 {
        font-size: clamp(1.75rem, 2rem, 2.25rem);
    }
    
    .service-features-grid,
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-feature-card {
        min-height: auto;
        padding: 2rem;
    }
    
    .service-card-modern {
        min-height: auto;
    }
    
    .service-cta-section,
    .services-bottom-cta {
        padding: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .service-hero {
        min-height: clamp(25vh, 30vh, 35vh);
        padding: clamp(2rem, 2.5rem, 3rem) 0;
    }
    
    .services-overview-hero {
        min-height: clamp(20vh, 25vh, 30vh);
        padding: clamp(2.5rem, 3rem, 4rem) 0;
    }
    
    .service-hero-title,
    .overview-title {
        font-size: clamp(1.75rem, 2rem, 2.25rem);
    }
    
    .service-features-grid,
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .service-feature-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .service-card-content {
        padding: 1.5rem;
    }
    
    .service-card-modern {
        min-height: auto;
    }
}
