/* Modern Scandinavian Design for Software Company */

.article-cover-image {
    display: block;
    margin: 0 auto 1.5rem auto;
    width: 100%;
    max-width: 420px;
    max-height: 320px;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18), 0 1.5px 6px rgba(44, 62, 80, 0.10);
    border: 2px solid #e8ecef;
    object-fit: cover;
    background: linear-gradient(135deg, #f7fafd 80%, #e3f0fc 100%);
    transition: box-shadow 0.3s, border 0.3s, transform 0.25s cubic-bezier(.21,.6,.47,1.02);
    position: relative;
    z-index: 1;
}
.article-cover-image:hover {
    box-shadow: 0 16px 48px rgba(44, 62, 80, 0.22), 0 4px 12px rgba(74, 144, 226, 0.10);
    border: 2.5px solid #4a90e2;
    transform: scale(1.03) translateY(-2px);
}
@media (max-width: 600px) {
    .article-cover-image {
        max-width: 98vw;
        max-height: 180px;
        border-radius: 12px;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 600px) {
    .article-cover-image {
        max-height: 160px;
        border-radius: 10px;
    }
}

:root {
    --primary: #4a90e2;
    --primary-dark: #357abd;
    --accent: #2c3e50;
    --accent-light: #34495e;
    --background: #fafbfc;
    --surface: #ffffff;
    --text: #2c3e50;
    --text-light: #7f8c8d;
    --text-muted: #95a5a6;
    --border: #e8ecef;
    --border-light: #f1f3f4;
    --success: #27ae60;
    --warning: #f39c12;
    --error: #e74c3c;
    --white: #ffffff;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
* { 
    box-sizing: border-box; 
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background: var(--background);
    color: var(--text);
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0 0 1rem 0;
    color: var(--accent);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin: 0 0 1rem 0;
    color: var(--text-light);
    line-height: 1.7;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

.section-sm {
    padding: 2rem 0;
}

.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 100;
    transition: var(--transition);
    padding: 1rem 0;
}

body.scrolled .navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.logo:hover {
    color: var(--primary);
    text-decoration: none;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius);
    object-fit: cover;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
    text-decoration: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}
.hero-section {
    background: var(--surface);
    padding: 6rem 0;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--border-light);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Modern Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    font-family: inherit;
    line-height: 1;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow);
    transform: translateY(-1px);
    text-decoration: none;
    color: var(--white);
}

.btn-secondary {
    background: var(--surface);
    color: var(--accent);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--background);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 70vh;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: var(--border-radius);
    margin: 2rem 0;
    box-shadow: var(--shadow);
}
.hero-image {
    flex: 1 1 300px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}
/* Modern Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mission-section, .quick-services, .about-section, .services-section, .contact-section {
    padding: 4rem 0;
    background: var(--surface);
}

.mission-section:nth-child(even), .about-section:nth-child(even) {
    background: var(--background);
}

.mission-section h2, .quick-services h2, .about-section h1, .services-section h1, .contact-section h1 {
    color: var(--accent);
    text-align: center;
    margin-bottom: 2rem;
}
/* Modern Card Grid System */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card-grid-sm {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--surface);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

.card-body {
    color: var(--text-light);
    line-height: 1.6;
}

.card-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Enhanced Modern Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    padding: 0 1rem;
}

.service-card-modern {
    background: var(--surface);
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #6ba3f5 50%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.service-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    margin: 2rem 2rem 1rem 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef7ff 100%);
    overflow: hidden;
}

.service-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(44, 62, 80, 0.05) 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern:hover .service-icon-bg {
    transform: translate(-50%, -50%) scale(1.2);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(44, 62, 80, 0.1) 100%);
}

.service-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card-modern:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(74, 144, 226, 0.3));
}

.service-content {
    padding: 0 2rem 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.service-content h3 {
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card-modern:hover .service-content h3 {
    color: var(--primary);
}

.service-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.tech-tag {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.service-card-modern:hover .tech-tag {
    background: linear-gradient(135deg, var(--primary) 0%, #6ba3f5 100%);
    color: white;
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(74, 144, 226, 0.3);
}

.service-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.02) 0%, rgba(44, 62, 80, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

/* Services Section Background Enhancement */
.services-section {
    background: linear-gradient(180deg, var(--background) 0%, #f8fbff 50%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(44, 62, 80, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
        padding: 0 0.5rem;
    }
    
    .service-card-modern {
        min-height: 280px;
    }
    
    .service-icon-wrapper {
        height: 80px;
        margin: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .service-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.25rem;
    }
    
    .tech-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 1.5rem;
        padding: 0;
    }
    
    .service-card-modern {
        border-radius: 16px;
        min-height: 260px;
    }
    
    .service-icon-wrapper {
        height: 70px;
        margin: 1.5rem 1rem 0.5rem 1rem;
        border-radius: 12px;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 0.5rem 1rem 1.5rem 1rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.6;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 450px;
    margin: 0 auto;
}
.contact-form input, .contact-form textarea {
    padding: 0.7rem 1rem;
    border: 1px solid #d3e0ef;
    border-radius: 8px;
    font-size: 1rem;
}
.contact-form button {
    align-self: flex-end;
}
.flashes {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
}
.flashes .success {
    color: #2ecc40;
}

/* Team cards */
.team-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}
.team-card {
    flex: 1 1 220px;
    background: var(--background);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin: 1rem 0;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: fadeInUp 0.7s;
}
.team-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(45,126,247,0.15);
}
.team-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid var(--primary);
}
.team-card .role {
    font-weight: bold;
    color: #1a1a1a;
}

/* Testimonials */
.testimonials-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}
.testimonial-card {
    flex: 1 1 300px;
    background: var(--background);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin: 1rem 0;
    text-align: center;
    font-style: italic;
    animation: fadeIn 1s;
}
.testimonial-author {
    color: #1a1a1a;
    font-weight: 500;
    margin-top: 1rem;
}

/* Careers */
.careers-section .job-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
.job-item {
    background: var(--background);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.7s;
}
.application-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 450px;
    margin: 0 auto;
}
.application-form input, .application-form textarea {
    padding: 0.7rem 1rem;
    border: 1px solid #d3e0ef;
    border-radius: 8px;
    font-size: 1rem;
}
.application-form button {
    align-self: flex-end;
}

/* HUB SECTION ON LANDING PAGE */
.hub-section {
    padding: 3rem 0 2rem 0;
    background: var(--background);
}
.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}
.hub-card {
    background: rgba(255,255,255,0.85);
    box-shadow: 0 4px 32px rgba(45,108,246,0.10), 0 1.5px 8px 0 rgba(79,140,255,0.08);
    border: 1.5px solid rgba(79,140,255,0.07);
    backdrop-filter: blur(1.5px) saturate(120%);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.22s, transform 0.22s, border 0.22s;
}
.hub-card:hover {
    box-shadow: 0 8px 48px rgba(45,108,246,0.14), 0 2px 16px 0 rgba(79,140,255,0.13);
    border: 1.5px solid rgba(79,140,255,0.16);
    transform: translateY(-8px) scale(1.035);
}
.team-preview-list {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.team-preview-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
}
.team-preview-member img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary);
    margin-bottom: 0.3rem;
}
.team-preview-member span {
    color: #1a1a1a;
    font-size: 0.9em;
}
.testimonial-slider blockquote {
    font-style: italic;
    color: #444;
    margin: 0 0 0.5rem 0;
    padding-left: 0.5rem;
    border-left: 3px solid var(--primary);
    background: #f8fbff;
    border-radius: 6px;
    font-size: 1em;
}
.careers-preview-list, .articles-preview-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}
.careers-preview-list li, .articles-preview-list li {
    margin-bottom: 0.4rem;
    font-size: 1em;
}
.btn-primary, .btn-secondary {
    box-shadow: 0 2px 8px rgba(45,108,246,0.08);
    transition: transform 0.13s, box-shadow 0.18s, background 0.18s, color 0.18s;
}
.btn-primary:active, .btn-secondary:active {
    transform: scale(0.97);
    box-shadow: 0 1px 4px rgba(45,108,246,0.06);
}
:focus-visible {
    outline: 2px solid #1a1a1a;
    outline-offset: 2px;
}
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #2d6cf6;
    color: #fff;
    padding: 0.7rem 1.2rem;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}
@media (max-width: 900px) {
    .hub-grid {
        grid-template-columns: 1fr;
    }

}
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        padding: 1rem 0;
    }
    .quick-services .service-cards, .service-list {
        flex-direction: column;
        gap: 1rem;
    }
    .team-cards, .testimonials-cards {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Blog Section Styles - Permanent Fix with Z-Index */
.blog-section {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2.5rem 2rem 2rem 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 10;
}
.blog-section h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
.blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 2.5rem;
    justify-content: flex-start;
    margin-top: 2rem;
    position: relative;
    z-index: 11;
}
.blog-card {
    border: 1.5px solid #eaf1ff;
    background: #fff;
    box-shadow: 0 2px 12px rgba(45,126,247,0.07);
    border-radius: var(--border-radius);
    padding: 1.5rem 1.2rem;
    min-width: 260px;
    max-width: 340px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.18s, transform 0.18s;
    color: #222;
    opacity: 1;
    visibility: visible;
    z-index: 12;
    position: relative;
}
.blog-card h2 {
    color: var(--accent);
    font-size: 1.35rem;
    margin: 0 0 0.6rem 0;
    font-weight: 700;
}
.blog-card-meta span, .blog-card-meta {
    color: #1a1a1a;
}
.blog-card-desc {
    color: #223;
    font-size: 1.08rem;
    margin-top: 0.7rem;
}
.blog-card:hover {
    background: #f7fafd;
    box-shadow: 0 8px 32px rgba(45,126,247,0.13), 0 1.5px 16px 0 rgba(79,140,255,0.13);
    transform: translateY(-2px) scale(1.01);
}
.blog-author-avatar {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 0.7rem;
    background: #fff;
    border: 2px solid #eaf1ff;
}
@media (max-width: 600px) {
    .blog-section { padding: 1rem 0.5rem; }
    .blog-card { padding: 1.1rem 0.7rem; }
}

/* Newsletter Section Improvements */
.newsletter-section {
    padding: 3rem 0 2rem 0;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 2rem;
    text-align: center;
    animation: fadeInUp 0.7s;
}
.newsletter-form {
    margin: 1.5rem auto 0 auto;
    max-width: 480px;
}
.newsletter-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}
.newsletter-input {
    flex: 1 1 220px;
    padding: 0.8rem 1.1rem;
    border: 1.5px solid #d3e0ef;
    border-radius: 8px 0 0 8px;
    font-size: 1.1rem;
    background: #f8fbff;
    outline: none;
    transition: border 0.18s;
}
.newsletter-input:focus {
    border-color: var(--primary);
}
.newsletter-btn {
    padding: 0.8rem 2rem;
    border-radius: 0 8px 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    border: none;
    transition: background 0.18s;
    cursor: pointer;
}
.newsletter-btn:hover {
    background: var(--accent);
}
.newsletter-desc {
    margin-top: 1rem;
    color: #6b7c93;
    font-size: 1rem;
}
@media (max-width: 700px) {
    .hero-title.gradient-text { font-size: 2rem; }
    .hero-bg-svg { width: 220px; height: 220px; top: -20px; }
}

/* Hero CTA Row */
.hero-cta-row {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin: 2rem 0 0.5rem 0;
    align-items: center;
}
.btn-cta {
    font-size: 1.08rem;
    padding: 0.85rem 2.2rem;
    border-radius: 32px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(45,108,246,0.08);
}
.btn-secondary.btn-cta {
    background: #f8fbff;
    color: #2d6cf6;
    border: 1.5px solid #2d6cf6;
}
.btn-secondary.btn-cta:hover {
    background: #2d6cf6;
    color: #fff;
}
.hero-cta-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 0.6rem;
    animation: bounceDown 1.7s infinite;
    cursor: pointer;
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Testimonials Carousel */
.testimonials-carousel-section {
    background: linear-gradient(120deg, #f8fbff 80%, #eaf1ff 100%);
    padding: 2.5rem 0 3.5rem 0;
    border-radius: 18px;
    margin: 2.5rem 0 3rem 0;
    box-shadow: 0 4px 32px rgba(45,108,246,0.06);
    transition: box-shadow 0.25s, background 0.25s;
}
.section-title {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 2rem;
}
.testimonials-carousel {
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 120px;
    margin-bottom: 1.2rem;
}
.testimonial-slide {
    display: none;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(45,108,246,0.07);
    padding: 2rem 1.5rem;
    font-size: 1.13rem;
    color: #3d4d6b;
    text-align: center;
    transition: box-shadow 0.18s, background 0.18s;
}
.testimonial-slide blockquote {
    margin: 0;
    font-style: italic;
    font-size: 1.13rem;
}
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}
.carousel-controls button {
    background: #2d6cf6;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(45,108,246,0.08);
    transition: background 0.16s, color 0.16s;
}
.carousel-controls button:hover, .carousel-controls button:focus {
    background: #00c6fb;
    color: #fff;
}

/* Smooth Section Transitions */
section[data-animate], .testimonials-carousel-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
section[data-animate].visible, .testimonials-carousel-section.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 700px) {
    .hero-cta-row { flex-direction: column; gap: 0.8rem; }
    .btn-cta { width: 100%; }
    .testimonials-carousel-section { padding: 1.2rem 0 2.2rem 0; }
    .testimonial-slide { padding: 1.2rem 0.7rem; }
}

/* Press & Awards Logos Bar */
.press-logos-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    background: #f8fbff;
    border-bottom: 1.5px solid #eaf1ff;
    padding: 0.7rem 0 0.6rem 0;
    font-size: 1.09rem;
    color: #3d4d6b;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.press-logos-bar img {
    opacity: 0.78;
    filter: grayscale(0.4) contrast(1.1);
    transition: opacity 0.18s, filter 0.18s;
    height: 32px;
}
.press-logos-bar img:hover {
    opacity: 1;
    filter: none;
}
@media (max-width: 700px) {
    .press-logos-bar { flex-direction: column; gap: 0.8rem; font-size: 1rem; }
    .press-logos-bar img { height: 24px; }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: #222;
    color: #fff;
    padding: 1rem 0.5rem;
    z-index: 9999;
    text-align: center;
    font-size: 1rem;
    box-shadow: 0 -2px 16px rgba(45,108,246,0.09);
    letter-spacing: 0.01em;
}
.accept-cookies-btn {
    margin-left: 1rem;
    padding: 0.5rem 1.2rem;
    background: #4caf50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.18s;
}
.accept-cookies-btn:hover {
    background: #388e3c;
}

/* 404 Error Page Demo Styles */
.error-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    color: #2d6cf6;
    gap: 1.1rem;
}
.error-404 h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 0.6rem;
}
.error-404 p {
    font-size: 1.3rem;
    color: #3d4d6b;
    margin-bottom: 1.2rem;
}

/* Trusted by Section */
.trusted-by-section {
    background: #f8fbff;
    padding: 2.2rem 0 2.2rem 0;
    border-radius: 14px;
    margin: 2.5rem 0 2.5rem 0;
    box-shadow: 0 2px 16px rgba(45,108,246,0.05);
    text-align: center;
}
.trusted-by-container {
    max-width: 900px;
    margin: 0 auto;
}
.trusted-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    margin-top: 1.2rem;
}
.trusted-logos-row img {
    opacity: 0.85;
    filter: grayscale(0.3) contrast(1.1);
    height: 36px;
    transition: opacity 0.15s, filter 0.15s;
}
.trusted-logos-row img:hover {
    opacity: 1;
    filter: none;
}
@media (max-width: 700px) {
    .trusted-logos-row { flex-direction: column; gap: 0.7rem; }
    .trusted-logos-row img { height: 26px; }
}
/* Back to Top Button */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 1.2rem;
    right: 1.2rem;
    z-index: 1200;
    background: #fff;
    color: #2d6cf6;
    border: 2px solid #2d6cf6;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    box-shadow: 0 2px 16px rgba(45,108,246,0.09);
    cursor: pointer;
    transition: background 0.16s, color 0.16s;
}
.back-to-top:hover, .back-to-top:focus {
    background: #2d6cf6;
    color: #fff;
}
@media (max-width: 700px) {
    .back-to-top { width: 38px; height: 38px; font-size: 1.3rem; right: 0.6rem; bottom: 0.6rem; }
}

/* Accessibility Toolbar */
.accessibility-toolbar {
    position: fixed;
    top: 50%;
    left: 0.6rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #f8fbff;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(45,108,246,0.09);
    z-index: 1300;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
}
.accessibility-toolbar button {
    background: #2d6cf6;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.4rem 0.7rem;
    cursor: pointer;
    transition: background 0.18s;
    outline: none;
}
.accessibility-toolbar button:hover, .accessibility-toolbar button:focus {
    background: #00c6fb;
}
.high-contrast, .high-contrast body {
    background: #111 !important;
    color: #fff !important;
}
.high-contrast .navbar, .high-contrast .press-logos-bar, .high-contrast .trust-badges-bar, .high-contrast .trusted-by-section, .high-contrast .hub-card, .high-contrast .testimonials-carousel-section, .high-contrast .newsletter-section, .high-contrast .footer, .high-contrast .services-section, .high-contrast .hero-section {
    background: #222 !important;
    color: #fff !important;
    border-color: #444 !important;
    box-shadow: none !important;
}
.high-contrast a, .high-contrast .btn-primary, .high-contrast .btn-secondary, .high-contrast .book-call-btn, .high-contrast .back-to-top {
    background: #fff !important;
    color: #1a1a1a !important;
    border-color: #fff !important;
}
.high-contrast .btn-primary:hover, .high-contrast .btn-secondary:hover, .high-contrast .book-call-btn:hover, .high-contrast .back-to-top:hover {
    background: #1a1a1a !important;
    color: #fff !important;
}
@media (max-width: 700px) {
    .accessibility-toolbar { top: auto; bottom: 0.6rem; left: 0.6rem; flex-direction: row; }
}

/* --- Partners Carousel --- */
.partners-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}
.partners-logos-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 900px;
}
.partners-logos {
  display: flex;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  gap: 1.5rem;
}
.partner-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.2rem 1.5rem;
  min-width: 160px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.partner-card:hover {
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
  transform: translateY(-3px) scale(1.03);
}
.partner-logo {
  max-width: 90px;
  max-height: 48px;
  margin-bottom: 0.5rem;
}
.carousel-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  width: 2.2rem;
  height: 2.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.carousel-btn:hover { background: var(--primary); }

/* --- Testimonials Slider --- */
.testimonials-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
}
.testimonials-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 600px;
}
.testimonials-list {
  display: flex;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  gap: 0;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.5rem 2rem;
  min-width: 100%;
  box-sizing: border-box;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px rgba(0,0,0,0.11);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-quote {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 0.7rem;
}
.testimonial-author {
  font-weight: 500;
  color: var(--accent);
}
.slider-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  width: 2.2rem;
  height: 2.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slider-btn:hover { background: var(--primary); }

/* --- Scroll Animations --- */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
[data-animate].animated { opacity: 1; transform: none; }

@media (max-width: 700px) {
  .partners-logos-wrapper, .testimonials-wrapper { max-width: 95vw; }
  .partner-card { min-width: 120px; padding: 1rem; }
  .testimonial-card { padding: 1.2rem 0.5rem; }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card-grid,
    .service-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .card,
    .service-card {
        padding: 1.5rem;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
}

/* Hub Preview Styles */
.hub-preview-list {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0.6rem 0 0.8rem 0;
}
.hub-preview-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 2px 8px rgba(79,140,255,0.08);
}
.hub-preview-meta {
    font-size: 0.97rem;
    color: #23395d;
}
.hub-preview-quote {
    font-style: italic;
    background: #f8fbff;
    border-left: 3px solid var(--primary);
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    margin: 0.6rem 0 0.8rem 0;
    color: #3d4d6b;
    font-size: 1rem;
}
.hub-preview-list li {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}
.hub-preview-list a {
    color: #1a1a1a;
    text-decoration: underline dotted;
    transition: color 0.18s;
}
.hub-preview-list a:hover {
    color: var(--accent);
}
@media (max-width: 700px) {
    .newsletter-row { flex-direction: column; }
    .newsletter-input, .newsletter-btn {
        border-radius: 8px !important;
        width: 100%;
        margin-bottom: 0.7rem;
    }
    .hub-preview-list { flex-direction: column; align-items: flex-start; }
}

/* Featured Article */
.featured-article {
    background: linear-gradient(90deg, #eaf1ff 0%, #f8fbff 100%);
    border-left: 5px solid var(--primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2.2rem 2rem 1.7rem 2.2rem;
    margin-bottom: 2.5rem;
}
.featured-article h2 {
    margin-top: 0;
    color: #1a1a1a;
}
.featured-snippet {
    color: #222;
    margin: 1.1rem 0 0.9rem 0;
    font-size: 1.09rem;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s;
}
.btn-primary:hover {
    background: #1259c3;
}

@media (max-width: 900px) {
    .blog-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    .blog-card {
        max-width: 100%;
        min-width: 0;
    }
}

/* Centered Title for Pages */
.centered-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.centered-section {
    padding: 4rem 0;
    background: var(--background);
}

.centered-container {
    text-align: center;
}

@media (max-width: 768px) {
    .centered-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Blog Page Styles */
.blog-hero {
    padding: 6rem 0 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    position: relative;
}

.blog-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Featured Article Section */
.featured-section {
    padding: 5rem 0;
    background: var(--white);
    border-bottom: 1px solid #e2e8f0;
}

.featured-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.featured-article {
    max-width: 800px;
    margin: 0 auto;
}

.featured-content {
    padding: 0;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.featured-category {
    background: #f1f5f9;
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.featured-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.featured-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.featured-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: var(--primary);
}

.featured-excerpt {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 2rem;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    color: var(--accent);
}

.read-time {
    font-size: 0.875rem;
    color: var(--text-light);
}

.featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.featured-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Articles Section */
.blog-articles {
    padding: 5rem 0;
    background: var(--background);
}

.articles-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.article-link {
    display: block;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.article-header {
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-category {
    background: #f1f5f9;
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--accent);
    margin: 0;
    transition: color 0.3s ease;
}

.article-link:hover .article-title {
    color: var(--primary);
}

.article-excerpt {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

.article-author .author-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
}

.article-footer .read-time {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon {
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0.6;
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

.empty-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero {
        padding: 4rem 0 3rem 0;
    }
    
    .blog-subtitle {
        font-size: 1rem;
    }
    
    .featured-section {
        padding: 3rem 0;
    }
    
    .featured-title {
        font-size: 2rem;
    }
    
    .featured-excerpt {
        font-size: 1rem;
    }
    
    .blog-articles {
        padding: 3rem 0;
    }
    
    .articles-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .article-link {
        padding: 1.5rem;
    }
    
    .empty-state {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .featured-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Dynamic Services Section with Images */
.dynamic-services-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.dynamic-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 48, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.dynamic-services-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.dynamic-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    justify-items: center;
}

.dynamic-service-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
}

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

/* Service Image Styles */
.dynamic-service-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 10px;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.3) 0%, rgba(102, 126, 234, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.dynamic-service-image .dynamic-service-number {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    border: 2px solid rgba(74, 144, 226, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.dynamic-service-card:hover .dynamic-service-image .dynamic-service-number {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(74, 144, 226, 0.4);
    transform: scale(1.05);
}

/* Fallback Header Styles (for services without images) */
.dynamic-service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 2rem 2rem 0;
}

.dynamic-service-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dynamic-service-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #667eea 100%);
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.dynamic-service-card:hover .dynamic-service-icon-bg {
    opacity: 0.2;
    transform: scale(1.1);
}

.dynamic-service-icon {
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.dynamic-service-card:hover .dynamic-service-icon {
    transform: scale(1.1);
}

.dynamic-service-header .dynamic-service-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(74, 144, 226, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
}

.dynamic-service-card:hover .dynamic-service-header .dynamic-service-number {
    background: rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.4);
    transform: scale(1.05);
}

/* Content Styles */
.dynamic-service-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dynamic-service-card:has(.dynamic-service-image) .dynamic-service-content {
    padding-top: 1.5rem;
}

.dynamic-service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.dynamic-service-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex: 1;
}

.dynamic-service-footer {
    margin-top: auto;
}

.dynamic-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.dynamic-service-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

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

.dynamic-service-link:hover svg {
    transform: translateX(2px) translateY(-2px);
}

.dynamic-service-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 16px;
}

.dynamic-service-card:hover .dynamic-service-hover-effect {
    opacity: 1;
}

.dynamic-no-services {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.dynamic-no-services-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.dynamic-no-services h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.dynamic-no-services p {
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .dynamic-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dynamic-service-card {
        margin: 0 1rem;
    }
    
    .dynamic-service-image {
        height: 100px;
    }
    
    .dynamic-service-content {
        padding: 1.5rem;
    }
    
    .dynamic-service-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding: 1.5rem 1.5rem 0;
    }
    
    .dynamic-service-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .dynamic-service-icon {
        font-size: 1.5rem;
    }
}
