/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1F2937;
    background-color: #F8FAFC;
    line-height: 1.6;
}

/* Typography */
h1 {
    font-size: 40px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2563EB;
    margin-bottom: 20px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    font-weight: 400;
    color: #1F2937;
    margin-bottom: 15px;
}

.subtext {
    color: #4B5563;
    font-size: 16px;
    max-width: 600px;
    margin-bottom: 30px;
}

/* Spacing Utilities */
.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

/* Intro Section */
.intro-section {
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
}

.intro-section h1 {
    color: white;
}

.intro-section .subtext {
    color: rgba(255, 255, 255, 0.9);
}

/* Service Pillars */
.service-pillars {
    background-color: white;
}

.service-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    font-size: 40px;
    color: #2563EB;
    margin-bottom: 20px;
}

/* Why Choose Us */
.why-choose-us {
    background-color: #F8FAFC;
}

.feature-row {
    margin-bottom: 60px;
}

.feature-content {
    padding: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    color: #4B5563;
}

.feature-list i {
    color: #F59E0B;
    margin-right: 10px;
}

/* Client Stats */
.client-stats {
    background-color: white;
}

.stat-card {
    padding: 40px 20px;
    border-radius: 8px;
    background-color: #F8FAFC;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background-color: #2563EB;
    color: white;
}

.stat-card:hover i,
.stat-card:hover .stat-title,
.stat-card:hover .stat-number {
    color: white;
}

.stat-card i {
    font-size: 40px;
    color: #F59E0B;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 18px;
    font-weight: 600;
    color: #4B5563;
}

/* CTA Section */
.cta-section {
    background-color: #2563EB;
    color: white;
}

.cta-section .section-heading {
    color: white;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn.cta-btn {
    background-color: #F59E0B;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s ease;
}

.btn.cta-btn:hover {
    background-color: #D97706;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .feature-content {
        padding: 20px 0;
    }
    
    .feature-row {
        margin-bottom: 40px;
    }
    
    .intro-section h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .py-80 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}