/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Professional Color Palette - Light Mode */
:root {
    --deep-navy: #1a2332;
    --charcoal-grey: #2c3e50;
    --off-white: #f8f9fa;
    --light-grey: #e9ecef;
    --accent-blue: #3498db;
    --text-dark: #2c3e50;
    --text-light: #f8f9fa;
    --border-light: #dee2e6;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    
    /* Text Colors */
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --text-muted: #6b7280;
    
    /* Card and Component Colors */
    --card-bg: #ffffff;
    --card-border: #dee2e6;
    --shadow-color: rgba(26, 35, 50, 0.1);
    
    /* Form Colors */
    --input-bg: #ffffff;
    --input-border: #dee2e6;
    --input-focus: #3498db;
    
    /* Additional Colors for Components */
    --header-bg: #ffffff;
    --footer-bg: #1a2332;
    --footer-text: #f8f9fa;
    --button-primary: #3498db;
    --button-primary-hover: #2980b9;
    --button-secondary: #6c757d;
    --button-secondary-hover: #5a6268;
    --link-color: #3498db;
    --link-hover: #2980b9;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    
    /* Transition for theme switching */
    --transition-speed: 0.3s;
}

/* Dark Mode Color Palette */
[data-theme="dark"] {
    --deep-navy: #0f1419;
    --charcoal-grey: #1e293b;
    --off-white: #1a1a1a;
    --light-grey: #2d3748;
    --accent-blue: #60a5fa;
    --text-dark: #e2e8f0;
    --text-light: #1a1a1a;
    --border-light: #374151;
    
    /* Background Colors */
    --bg-primary: #0f1419;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2d3748;
    
    /* Text Colors */
    --text-primary: #e2e8f0;
    --text-secondary: #cbd5e1;
    --text-muted: #9ca3af;
    
    /* Card and Component Colors */
    --card-bg: #1e293b;
    --card-border: #374151;
    --shadow-color: rgba(0, 0, 0, 0.3);
    
    /* Form Colors */
    --input-bg: #1e293b;
    --input-border: #374151;
    --input-focus: #60a5fa;
    
    /* Additional Colors for Components */
    --header-bg: #1e293b;
    --footer-bg: #0f1419;
    --footer-text: #e2e8f0;
    --button-primary: #60a5fa;
    --button-primary-hover: #3b82f6;
    --button-secondary: #6b7280;
    --button-secondary-hover: #9ca3af;
    --link-color: #60a5fa;
    --link-hover: #3b82f6;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
}

/* Dark Mode Color Palette for .dark class */
.dark {
    --deep-navy: #0f1419;
    --charcoal-grey: #1e293b;
    --off-white: #1a1a1a;
    --light-grey: #2d3748;
    --accent-blue: #60a5fa;
    --text-dark: #e2e8f0;
    --text-light: #1a1a1a;
    --border-light: #374151;
    
    /* Background Colors */
    --bg-primary: #0f1419;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2d3748;
    --bg-primary-dark: #0f1419;
    --bg-secondary-dark: #1a1a1a;
    --bg-tertiary-dark: #2d3748;
    
    /* Text Colors */
    --text-primary: #e2e8f0;
    --text-secondary: #cbd5e1;
    --text-muted: #9ca3af;
    --text-primary-dark: #e2e8f0;
    --text-secondary-dark: #cbd5e1;
    --text-muted-dark: #9ca3af;
    
    /* Card and Component Colors */
    --card-bg: #1e293b;
    --card-border: #374151;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --border-dark: #374151;
    
    /* Form Colors */
    --input-bg: #1e293b;
    --input-border: #374151;
    --input-focus: #60a5fa;
    
    /* Additional Colors for Components */
    --header-bg: #1e293b;
    --footer-bg: #0f1419;
    --footer-text: #e2e8f0;
    --button-primary: #60a5fa;
    --button-primary-hover: #3b82f6;
    --button-secondary: #6b7280;
    --button-secondary-hover: #9ca3af;
    --link-color: #60a5fa;
    --link-hover: #3b82f6;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
}

body {
    font-family: 'Open Sans', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background-color: var(--bg-primary);
    text-align: left;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

/* Container for consistent alignment */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Improved grid system */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow-color);
    transition: background-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

[data-theme="dark"] .header {
    background: rgba(15, 20, 25, 0.95);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.dark-mode-toggle:hover {
    background-color: var(--bg-tertiary);
    transform: scale(1.1);
}

.dark-mode-toggle .fa-sun {
    display: none;
}

[data-theme="dark"] .dark-mode-toggle .fa-moon {
    display: none;
}

[data-theme="dark"] .dark-mode-toggle .fa-sun {
    display: block;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 5px 0;
}

.logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-link:hover {
    transform: scale(1.02);
    text-decoration: none;
    color: inherit;
}

.nav-logo .logo-image {
    height: 70px !important;
    width: auto !important;
    max-width: none !important;
    transform: scale(1.2) !important;
    content: url('logo.svg');
}

.nav-logo span {
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color var(--transition-speed) ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%), url('images/hero-bg.jpg?v=2');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.hero-top-text {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
    padding: 0 20px;
}

.hero-top-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-content: space-between;
    min-height: 60vh;
    width: 100%;
}

.hero-content {
    padding: 0 20px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    padding: 0 10px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.5;
    padding: 0 10px;
    color: var(--text-light);
    text-align: left;
    word-spacing: 0.5px;
    hyphens: auto;
    max-width: 100%;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
    padding: 0 10px;
    text-align: left;
    word-spacing: 0.3px;
    hyphens: auto;
    max-width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-blue);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--deep-navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--deep-navy);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    background: rgba(248, 249, 250, 0.15);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    align-self: center;
    max-width: 350px;
    margin-right: 2rem;
    margin-left: 2rem;
    border: 1px solid rgba(248, 249, 250, 0.2);
    min-height: 120px;
    place-items: center;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 80px;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1;
}

.stat p {
    font-size: 0.8rem;
    opacity: 0.8;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.section-header .header-content {
    flex: 1;
    text-align: left;
}

.section-header .header-image {
    flex-shrink: 0;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--accent-blue);
    max-width: 700px;
    line-height: 1.6;
}

/* Testimonials Page Styles */
.testimonials-hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--accent-blue) 100%);
}

.testimonials-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(26, 35, 50, 0.1);
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(26, 35, 50, 0.15);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(26, 35, 50, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--off-white);
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
}

.faq-question:hover {
    background: rgba(52, 152, 219, 0.05);
}

.faq-item.active .faq-question {
    background: rgba(52, 152, 219, 0.1);
    border-bottom: 1px solid rgba(52, 152, 219, 0.2);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin: 0;
}

.faq-question i {
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
    display: none;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    display: block;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--accent-blue) 100%);
}

.featured-articles {
    padding: 100px 0;
    background: var(--off-white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.featured-article {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(26, 35, 50, 0.1);
    transition: all 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(26, 35, 50, 0.15);
}

.article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.featured-article:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-content {
    padding: 2rem;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.read-more {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--deep-navy);
    gap: 0.75rem;
}

/* Blog Categories */
.blog-categories {
    padding: 80px 0;
    background: white;
}

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

.category-card {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.category-card:hover {
    background: white;
    box-shadow: 0 15px 35px rgba(26, 35, 50, 0.1);
    transform: translateY(-5px);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: var(--deep-navy);
    gap: 0.75rem;
}

/* Recent Articles */
.recent-articles {
    padding: 80px 0;
    background: var(--off-white);
}

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

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(26, 35, 50, 0.1);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 35, 50, 0.15);
}

.article-card .article-image {
    height: 200px;
}

.article-card .article-content {
    padding: 1.5rem;
}

.article-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.load-more {
    text-align: center;
    margin-top: 3rem;
}

/* Resources Section */
.resources-section {
    padding: 80px 0;
    background: white;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.resource-card:hover {
    background: white;
    box-shadow: 0 15px 35px rgba(26, 35, 50, 0.1);
    transform: translateY(-5px);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.resource-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.resource-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--accent-blue) 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Team Page Styles */
.team-hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--accent-blue) 100%);
}

.leadership-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.leader-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow-color);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-color);
}

.leader-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-social {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 0.5rem;
}

.leader-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.leader-social a:hover {
    background: var(--accent-blue);
    color: white;
}

.leader-content {
    padding: 2rem;
}

.leader-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--accent-blue);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: block;
}

.leader-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.leader-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.expertise-tag {
    background: var(--accent-blue-transparent);
    color: var(--accent-blue);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.leader-qualifications p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

/* Practice Leaders */
.practice-leaders {
    padding: 100px 0;
    background: var(--bg-primary);
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.practice-leader {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow-color);
    transition: all 0.3s ease;
}

.practice-leader:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px var(--shadow-color);
}

.practice-image {
    height: 200px;
    overflow: hidden;
}

.practice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.practice-content {
    padding: 1.5rem;
}

.practice-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.practice-title {
    color: var(--accent-blue);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: block;
}

.practice-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.practice-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.practice-qualifications p {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    color: var(--text-muted);
}

/* Team Stats */
.team-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--accent-blue) 100%);
    color: white;
}

.team-stats .section-header h2 {
    color: white;
}

.team-stats .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Join Team */
.join-team {
    padding: 80px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.join-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.join-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.join-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Careers Page Styles */
.careers-hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--accent-blue) 100%);
}

.culture-section {
    padding: 100px 0;
    background: var(--off-white);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.culture-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(26, 35, 50, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 35, 50, 0.15);
}

.culture-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.culture-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.culture-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-category {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-light);
}

.benefit-category h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefit-category ul {
    list-style: none;
    padding: 0;
}

.benefit-category li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.benefit-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

/* Job Openings */
.openings-section {
    padding: 100px 0;
    background: var(--off-white);
}

.job-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-blue);
    background: transparent;
    color: var(--accent-blue);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-blue);
    color: white;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.job-card {
    background: white;
    padding: 2rem 2rem 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(26, 35, 50, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 35, 50, 0.15);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.job-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin: 0;
    flex: 1;
    min-width: 0;
}

.job-type {
    background: var(--accent-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 80px;
    text-align: center;
}

.job-details {
    margin-bottom: 1rem;
}

.job-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-description {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(52, 152, 219, 0.1);
    color: var(--accent-blue);
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Application Process */
.application-process {
    padding: 100px 0;
    background: white;
}

.process-steps {
    max-width: 800px;
    margin: 3rem auto 0;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--off-white);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(26, 35, 50, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Careers CTA */
.careers-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--accent-blue) 100%);
    color: white;
    text-align: center;
}

.careers-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.careers-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Technology & Tools Section */
.technology-tools {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, #f0f8ff 100%);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.tool-category {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(26, 35, 50, 0.1);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--deep-navy));
}

.tool-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(26, 35, 50, 0.15);
}

.tool-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.tool-icon i {
    font-size: 2rem;
    color: white;
}

.tool-category h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    position: relative;
}

.tool-category h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 2px;
}

.tool-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tool-item {
    background: rgba(52, 152, 219, 0.1);
    color: var(--deep-navy);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(52, 152, 219, 0.2);
    transition: all 0.3s ease;
}

.tool-item:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tool-category {
        padding: 2rem;
    }
    
    .tool-icon {
        width: 70px;
        height: 70px;
    }
    
    .tool-icon i {
        font-size: 1.8rem;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--deep-navy), var(--accent-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

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

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.service-card .btn-outline {
    margin-top: auto;
    align-self: center;
    text-align: center;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--bg-primary);
}

/* Certifications Section */
.certifications {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.certifications .section-header h2 {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.certifications .section-header p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.certification-item {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;
    border: 1px solid var(--accent-blue);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-color);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-navy), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.certification-item:hover .cert-icon {
    transform: scale(1.1);
}

.cert-icon i {
    font-size: 2rem;
    color: white;
}

.certification-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.certification-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Certifications */
@media (max-width: 1024px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .certification-item {
        padding: 2rem;
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .certification-item {
        padding: 2rem;
        min-height: auto;
    }
}

.about img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content .about-text {
    order: 1;
    text-align: left;
}

.about-content .about-image {
    order: 2;
}

.about-content img {
    order: 1;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.about-content .about-text {
    order: 2;
    text-align: left;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.about-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature i {
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.overview-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 35, 50, 0.1);
    transition: transform 0.3s ease;
}

.overview-image img:hover {
    transform: scale(1.02);
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--off-white), var(--accent-blue));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--deep-navy);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Industries Section */
.industries {
    padding: 80px 0;
    background: var(--off-white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 35, 50, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    min-height: 600px;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 35, 50, 0.15);
    border-color: var(--accent-blue);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

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

.industry-icon i {
    font-size: 1.8rem;
    color: white;
}

.industry-card h3 {
    color: var(--deep-navy);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.industry-card p {
    color: var(--charcoal-grey);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.industry-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    align-items: center;
    justify-content: flex-start;
}

.feature-tag {
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 90%;
    max-width: 280px;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
    letter-spacing: 0.3px;
}

.industry-card:hover .feature-tag {
    background: linear-gradient(135deg, var(--deep-navy), var(--accent-blue));
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.3);
}

.industry-card .btn-outline {
    margin-top: auto;
    align-self: center;
    text-align: center;
    width: fit-content;
    min-width: 120px;
}

.industry-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

/* Responsive design for industry cards */
@media (max-width: 768px) {
    .industry-features {
        gap: 0.5rem;
    }
    
    .industry-card {
        min-height: 550px;
        padding: 2rem;
    }
    
    .feature-tag {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
        width: 95%;
        max-width: 250px;
    }
}
    transition: transform 0.3s ease;
}

.industry-solutions {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--off-white) 100%);
    padding: 5rem 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.solution-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(26, 35, 50, 0.1);
    border: 1px solid var(--off-white);
    transition: all 0.3s ease;
    text-align: center;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 35, 50, 0.15);
    border-color: var(--accent-blue);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.solution-item:hover .solution-icon {
    transform: scale(1.1);
}

.solution-icon i {
    font-size: 1.8rem;
    color: white;
}

.solution-item h3 {
    color: var(--deep-navy);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.solution-item p {
    color: var(--charcoal-grey);
    line-height: 1.7;
    font-size: 1rem;
}

/* Case Studies Section */
.case-studies {
    background: white;
    padding: 5rem 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.case-study {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(26, 35, 50, 0.1);
    border: 1px solid var(--off-white);
    transition: all 0.3s ease;
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 35, 50, 0.15);
    border-color: var(--accent-blue);
}

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

.case-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.case-study:hover .case-icon {
    transform: scale(1.1);
}

.case-icon i {
    font-size: 1.5rem;
    color: white;
}

.case-header h3 {
    color: var(--deep-navy);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.case-study p {
    color: var(--charcoal-grey);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.case-results {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.result-tag {
    background: linear-gradient(135deg, var(--off-white), var(--accent-blue));
    color: var(--deep-navy);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.case-study:hover .result-tag {
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    color: white;
}

/* Industry Stats Section */
.industry-stats {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--accent-blue) 100%);
    padding: 5rem 0;
    color: white;
}

.industry-stats .section-header h2 {
    color: white;
}

.industry-stats .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-item p {
    color: white;
    line-height: 1.6;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Industry Pages Styles */
.industry-overview {
    padding: 5rem 0;
    background: white;
}

.industry-services {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--off-white) 100%);
    padding: 5rem 0;
}

.industry-challenges {
    background: white;
    padding: 5rem 0;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.challenge-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(26, 35, 50, 0.1);
    border: 1px solid var(--off-white);
    transition: all 0.3s ease;
    text-align: center;
}

.challenge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 35, 50, 0.15);
    border-color: var(--accent-blue);
}

.challenge-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.challenge-item:hover .challenge-icon {
    transform: scale(1.1);
}

.challenge-icon i {
    font-size: 1.8rem;
    color: white;
}

.challenge-item h3 {
    color: var(--deep-navy);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.challenge-item p {
    color: var(--charcoal-grey);
    line-height: 1.7;
    font-size: 1rem;
}

.success-story {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--accent-blue) 100%);
    padding: 5rem 0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.success-story .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.story-text {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.story-text h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;
}

.story-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.story-text ul {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-text ul li {
    margin-bottom: 0.8rem;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.story-text ul li:before {
    content: "✓";
    color: var(--off-white);
    font-weight: bold;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.story-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
    align-items: center;
}

.result-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.result-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 0.8rem;
}

.result-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Responsive Design for Success Story */
@media (max-width: 768px) {
    .success-story {
        padding: 4rem 0;
        min-height: 50vh;
    }
    
    .story-content {
        padding: 0 20px;
    }
    
    .story-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .story-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .story-text ul {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding-left: 1.5rem;
    }
    
    .story-results {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .result-item {
        padding: 1.5rem 1rem;
    }
    
    .result-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .success-story {
        padding: 3rem 0;
        min-height: 40vh;
    }
    
    .story-content {
        padding: 0 15px;
    }
    
    .story-text h2 {
        font-size: 1.8rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .story-results {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .result-item {
        padding: 1.5rem;
    }
    
    .result-number {
        font-size: 1.8rem;
    }
}

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

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.industry-card p {
    color: var(--accent-blue);
    font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--off-white) 100%);
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.feature-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(26, 35, 50, 0.1);
    border: 1px solid var(--off-white);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 35, 50, 0.15);
    border-color: var(--accent-blue);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-item h3 {
    color: var(--deep-navy);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--charcoal-grey);
    line-height: 1.7;
    font-size: 1rem;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(26, 35, 50, 0.1);
    border: 1px solid var(--off-white);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 35, 50, 0.15);
    border-color: var(--accent-blue);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--deep-navy);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--off-white);
}

.contact img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 35, 50, 0.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-content img {
    order: 1;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 35, 50, 0.1);
}

.contact-content .contact-info {
    order: 2;
    width: 100%;
    margin-bottom: 3rem;
}

.contact-content .contact-form {
    order: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    grid-column: 1 / -1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 2rem; /* Increased gap for better spacing */
    justify-items: stretch; /* Changed to stretch for equal width */
    align-items: stretch; /* Changed to stretch for equal height */
    width: 100%;
    margin: 0 auto;
}

.contact-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem; /* Increased padding for better proportions */
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-color);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px; /* Increased minimum height for consistency */
    box-sizing: border-box;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-color);
    border-color: var(--accent-blue);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

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

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.contact-link {
    display: inline-block;
    background: var(--accent-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--deep-navy);
    transform: translateY(-2px);
}

/* Dark mode styles for contact links */
.dark .contact-link {
    background: var(--accent-blue);
    color: white;
}

.dark .contact-link:hover {
    background: var(--deep-navy);
    color: white;
}

/* Dark mode styles for stats */
.dark .hero-stats {
    background: rgba(248, 249, 250, 0.15);
    border: 1px solid rgba(248, 249, 250, 0.2);
}

.dark .stat h3 {
    color: white !important;
}

.dark .stat p {
    color: white !important;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--accent-blue);
    margin: 0;
}

.contact-form {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--off-white) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow-color);
    border: 1px solid var(--accent-blue-transparent);
    height: fit-content;
    width: 100%;
    box-sizing: border-box;
}

.contact-form h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.contact-form p {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Dark mode styles for contact form */
.dark .contact-form {
    background: linear-gradient(135deg, var(--bg-secondary-dark) 0%, var(--bg-primary-dark) 100%);
    border: 1px solid var(--accent-blue-transparent);
}

.dark .contact-form h3 {
    color: var(--text-primary-dark);
}

.dark .contact-form p {
    color: var(--text-secondary-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--accent-blue);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-navy);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}



/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 20px;
}

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

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .footer-logo-image {
    height: 60px !important;
    width: auto !important;
    max-width: none !important;
    transform: scale(1.0) !important;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.footer-section p {
    color: var(--footer-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--deep-navy);
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    background: var(--input-bg);
    color: var(--text-primary);
}

.newsletter-form button {
    padding: 10px 20px;
    background: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--deep-navy);
}

.footer-bottom {
    border-top: 1px solid var(--accent-blue);
    padding-top: 2rem;
    text-align: center;
    color: var(--footer-text);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        width: 100% !important;
        background: var(--off-white) !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 2rem !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
        transform: translateY(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
        z-index: 999 !important;
        height: auto !important;
        max-height: calc(100vh - 80px) !important;
        overflow-y: auto !important;
        list-style: none !important;
        margin: 0 !important;
    }
    
    .nav-menu.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-menu li {
        margin: 1rem 0 !important;
        text-align: center !important;
    }
    
    .nav-menu a {
        display: block !important;
        padding: 1rem !important;
        font-size: 1.2rem !important;
        color: var(--deep-navy) !important;
        text-decoration: none !important;
        border-bottom: 1px solid var(--border-light) !important;
    }
    
    .nav-menu a:hover {
        background: var(--light-grey) !important;
        color: var(--accent-blue) !important;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-items: stretch;
        align-items: stretch;
    }
    
    .contact-card {
        min-height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
    }
    
    .contact-details {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: stretch;
        align-items: stretch;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
        min-height: 250px;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
    }
    
    .contact-details {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }
    
    .contact-details h4 {
        margin-bottom: 0.5rem;
        flex-shrink: 0;
    }
    
    .contact-details p {
        flex-grow: 1;
        margin-bottom: 1rem;
    }
}

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

.service-card,
.industry-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--accent-blue) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    position: relative;
}

.page-hero .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding: 0 20px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.6;
}

/* Responsive Design for Page Hero */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
        min-height: 50vh;
    }
    
    .page-hero .container {
        padding: 0 20px;
        min-height: 50vh;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
        padding: 0 15px;
        margin-bottom: 1rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 80px 0 40px;
        min-height: 40vh;
    }
    
    .page-hero .container {
        padding: 0 15px;
        min-height: 40vh;
    }
    
    .page-hero h1 {
        font-size: 2rem;
        padding: 0 10px;
    }
    
    .page-hero p {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* Service Overview */
.service-overview {
    padding: 80px 0;
    background: white;
}

/* Services Overview */
.services-overview {
    padding: 100px 0 80px;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

.overview-text p {
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Key Benefits Section */
.key-benefits {
    padding: 80px 0;
    background: white;
}

.key-benefits .section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.key-benefits .section-header h2 {
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.key-benefits .section-header p {
    font-size: 1.1rem;
    color: var(--accent-blue);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.benefit-item {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    border: 1px solid var(--accent-blue);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
}

/* Responsive Design for Key Benefits */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .benefit-item {
        padding: 2rem;
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-item {
        padding: 2rem;
        min-height: auto;
    }
    
    .key-benefits .section-header h2 {
        font-size: 2rem;
    }
    
    .key-benefits .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .key-benefits {
        padding: 60px 0;
    }
    
    .key-benefits .section-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .benefits-grid {
        padding: 0 15px;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-item i {
        font-size: 2rem;
    }
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-blue);
    font-weight: 500;
}

.benefit i {
    font-size: 1.2rem;
}

/* Service Details */
.service-details {
    padding: 80px 0;
    background: var(--off-white);
}

.service-details .section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.service-details .section-header h2 {
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.service-details .section-header p {
    font-size: 1.1rem;
    color: var(--accent-blue);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    border: 1px solid var(--accent-blue);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-navy), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.detail-icon i {
    font-size: 2rem;
    color: white;
}

.detail-card h3 {
    font-size: 1.5rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.detail-card p {
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.detail-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0 auto;
    max-width: 280px;
}

.detail-card li {
    padding: 0.5rem 0;
    color: var(--deep-navy);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.detail-card li:before {
    content: "✓";
    color: var(--accent-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design for Service Details */
@media (max-width: 1024px) {
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .detail-card {
        padding: 2rem;
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .detail-card {
        padding: 2rem;
        min-height: auto;
    }
    
    .service-details .section-header h2 {
        font-size: 2rem;
    }
    
    .service-details .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-details {
        padding: 60px 0;
    }
    
    .service-details .section-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .details-grid {
        padding: 0 15px;
        gap: 1.5rem;
    }
    
    .detail-card {
        padding: 1.5rem;
    }
    
    .detail-icon {
        width: 60px;
        height: 60px;
    }
    
    .detail-icon i {
        font-size: 1.5rem;
    }
}

.service-detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 35, 50, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--accent-blue);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-detail-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.service-detail-card p {
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-detail-card ul {
    list-style: none;
}

.service-detail-card li {
    padding: 0.5rem 0;
    color: var(--deep-navy);
    position: relative;
    padding-left: 1.5rem;
}

.service-detail-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

/* Contract Types */
.contract-types {
    padding: 80px 0;
    background: white;
}

.contract-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contract-type {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--accent-blue);
}

.contract-type h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.contract-type ul {
    list-style: none;
}

.contract-type li {
    padding: 0.3rem 0;
    color: var(--deep-navy);
    position: relative;
    padding-left: 1.2rem;
}

.contract-type li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--off-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 35, 50, 0.1);
    border: 1px solid var(--accent-blue);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--deep-navy), var(--accent-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--accent-blue);
    line-height: 1.6;
}

/* Company Story */
.company-story {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--off-white) 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 2rem;
    position: relative;
}

.story-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    border-radius: 2px;
}

.story-text p {
    color: var(--charcoal-grey);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(26, 35, 50, 0.15);
    transition: transform 0.3s ease;
}

.story-image img:hover {
    transform: translateY(-5px);
}

/* Who We Are */
.who-we-are {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    position: relative;
}

.who-we-are::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.who-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.who-text h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 2.5rem;
    position: relative;
    line-height: 1.2;
}

.who-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

.who-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--charcoal-grey);
    margin-bottom: 3rem;
    font-weight: 400;
}

.key-highlights {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-tertiary) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow-color);
    border: 2px solid var(--accent-blue-transparent);
    position: relative;
    overflow: hidden;
}

.key-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--deep-navy));
}

.key-highlights h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 2rem;
    position: relative;
}

.key-highlights h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 2px;
}

.key-highlights ul {
    list-style: none;
    padding: 0;
}

.key-highlights li {
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    color: var(--charcoal-grey);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
    transition: all 0.3s ease;
}

.key-highlights li:hover {
    color: var(--deep-navy);
    transform: translateX(5px);
}

.key-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.3rem;
    background: rgba(52, 152, 219, 0.1);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
}

.who-image {
    text-align: center;
    position: relative;
}

.who-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    border-radius: 20px;
    opacity: 0.1;
    z-index: -1;
}

.who-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(26, 35, 50, 0.2);
    transition: all 0.3s ease;
    border: 3px solid white;
}

.who-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(26, 35, 50, 0.3);
}

@media (max-width: 768px) {
    .who-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .who-text h2 {
        font-size: 2.2rem;
    }
    
    .key-highlights {
        padding: 1.5rem;
    }
}

/* Founder's Message */
.founders-message {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.founder-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 3rem;
    position: relative;
}

.founder-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    border-radius: 2px;
}

.founder-quote {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--off-white) 100%);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow-color);
    border: 1px solid var(--border-light);
    position: relative;
    text-align: left;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 4rem;
    color: var(--accent-blue);
    font-family: serif;
    opacity: 0.3;
}

.founder-quote p {
    color: var(--charcoal-grey);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.founder-signature {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
    text-align: right;
}

.founder-signature p {
    margin-bottom: 0.5rem;
}

.founder-signature strong {
    color: var(--deep-navy);
    font-size: 1.2rem;
}

.founder-signature span {
    color: var(--accent-blue);
    font-size: 1rem;
    font-style: italic;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: var(--bg-primary);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--off-white) 100%);
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px var(--shadow-color);
    border: 1px solid var(--accent-blue-transparent);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(26, 35, 50, 0.15);
}

.mv-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

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

.mv-icon i {
    font-size: 2.2rem;
    color: white;
}

.mv-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

.mv-card p {
    color: var(--charcoal-grey);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Core Values */
.core-values {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--off-white) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.value-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--accent-blue-transparent);
    transition: all 0.3s ease;
    position: relative;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-color);
    border-color: var(--accent-blue-transparent);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--charcoal-grey);
    line-height: 1.7;
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--off-white) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(26, 35, 50, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(26, 35, 50, 0.15);
    border-color: rgba(52, 152, 219, 0.3);
}

.member-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.team-member:hover .member-image {
    transform: scale(1.05);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-image i {
    font-size: 2.5rem;
    color: white;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.team-member .position {
    color: var(--accent-blue);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-member p {
    color: var(--charcoal-grey);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.member-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.member-credentials span {
    background: rgba(52, 152, 219, 0.1);
    color: var(--accent-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Achievements */
.achievements {
    padding: 80px 0;
    background: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
    justify-items: center;
}

.achievement-item {
    text-align: center;
    padding: 2rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.achievement-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.achievement-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Industries Overview */
.industries-overview {
    padding: 80px 0;
    background: white;
}

.industry-card ul {
    list-style: none;
    margin-top: 1rem;
}

.industry-card li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.2rem;
}

.industry-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

/* Industry Solutions */
.industry-solutions {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-item {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--card-border);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.solution-icon i {
    font-size: 1.8rem;
    color: white;
}

.solution-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.solution-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Case Studies */
.case-studies {
    padding: 80px 0;
    background: white;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.case-study {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

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

.case-header i {
    font-size: 1.5rem;
    color: #4299e1;
}

.case-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
}

.case-study p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.case-results {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.case-results span {
    background: #4299e1;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Industry Stats */
.industry-stats {
    padding: 80px 0;
    background: #1a365d;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4299e1;
    margin-bottom: 0.5rem;
}

.stat-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-item p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #f7fafc;
}

/* Dark mode styles for contact info section */
.dark .contact-info-section {
    background: var(--bg-secondary-dark);
}

.dark .contact-method {
    background: var(--bg-secondary-dark);
    border: 1px solid var(--border-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dark .contact-method h3 {
    color: var(--text-primary-dark);
}

.dark .contact-method p {
    color: var(--text-secondary-dark);
}

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

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-method img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.method-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-method h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
}

.contact-method p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-method .btn-outline {
    margin-top: auto;
    align-self: center;
    text-align: center;
}

/* Ensure all contact methods have consistent height and button alignment */
.contact-method {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.contact-method .method-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-method .method-content p {
    flex: 1;
    margin-bottom: 1rem;
}

/* Status styling for business hours */
.contact-method .status {
    margin-top: auto;
    align-self: center;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.contact-method .status.online {
    background: #10b981;
    color: white;
}

/* Dark mode status styling */
[data-theme="dark"] .contact-method .status.online {
    background: #059669;
    color: white;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.form-content {
    text-align: center;
    margin-bottom: 3rem;
}

.form-content h2 {
    margin-bottom: 1rem;
}

.form-content p {
    margin-bottom: 2rem;
}

.contact-features {
    margin-top: 3rem;
    text-align: center;
}

.contact-features h3 {
    margin-bottom: 2rem;
    text-align: center;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #4299e1;
}

.feature-item i {
    font-size: 2rem;
    color: #4299e1;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.4;
    margin: 0;
}

/* Dark mode styles for feature items */
.dark .feature-item {
    background: var(--bg-secondary-dark);
    border: 1px solid var(--border-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dark .feature-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-blue);
}

.dark .feature-item h4 {
    color: var(--text-primary-dark);
}

.dark .feature-item p {
    color: var(--text-secondary-dark);
}

/* Responsive Design for Feature List */
@media (max-width: 1200px) {
    .feature-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .feature-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem;
        min-height: 180px;
    }
}

@media (max-width: 480px) {
    .feature-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem;
        min-height: auto;
    }
}

.emergency-contact {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.emergency-contact h4 {
    margin-bottom: 1rem;
    color: #1a365d;
    font-size: 1.3rem;
}

.emergency-contact p {
    margin-bottom: 1.5rem;
    color: #718096;
}

.emergency-contact .btn-secondary {
    background: #1a365d;
    color: white;
    border: 2px solid #1a365d;
    font-weight: 600;
    padding: 12px 24px;
    font-size: 1rem;
}

.emergency-contact .btn-secondary:hover {
    background: #2d3748;
    border-color: #2d3748;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.3);
}

/* Dark mode styles for emergency contact */
.dark .emergency-contact {
    background: var(--bg-secondary-dark);
    border: 1px solid var(--border-dark);
}

.dark .emergency-contact h4 {
    color: var(--text-primary-dark);
}

.dark .emergency-contact p {
    color: var(--text-secondary-dark);
}

/* Ensure emergency contact button is visible in dark mode */
.dark .emergency-contact .btn-secondary {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

.dark .emergency-contact .btn-secondary:hover {
    background: var(--deep-navy);
    border-color: var(--deep-navy);
    color: white;
}

.contact-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #4299e1;
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a365d;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #4a5568;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
}

.checkbox-label a {
    color: #4299e1;
    text-decoration: none;
}

/* Dark mode styles for form labels */
.dark .form-group label {
    color: var(--text-primary-dark);
}

.dark .checkbox-label {
    color: var(--text-secondary-dark);
}

.dark .checkbox-label a {
    color: var(--accent-blue);
}

/* Office Location */
.office-location {
    padding: 80px 0;
    background: #f7fafc;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.location-info p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.location-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.location-info li {
    padding: 0.5rem 0;
    color: #4a5568;
}

/* Dark mode styles for office location */
.dark .office-location {
    background: var(--bg-primary-dark);
}

.dark .location-info h3 {
    color: var(--text-primary-dark);
}

.dark .location-info p {
    color: var(--text-secondary-dark);
}

.dark .location-info li {
    color: var(--text-secondary-dark);
}

.dark .location-info strong {
    color: var(--text-primary-dark);
}

/* Dark mode styles for map placeholder */
.dark .map-placeholder {
    background: var(--bg-secondary-dark);
    color: var(--text-secondary-dark);
    border: 1px solid var(--border-dark);
}

.dark .map-placeholder h3 {
    color: var(--text-primary-dark);
}

.dark .map-placeholder p {
    color: var(--text-secondary-dark);
}

.location-map {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #718096;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-placeholder small {
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #718096;
    line-height: 1.6;
}

/* Dark mode styles for FAQ section */
.dark .faq-section {
    background: var(--bg-primary-dark);
}

.dark .faq-item {
    background: var(--bg-secondary-dark);
    border: 1px solid var(--border-dark);
}

.dark .faq-item h3 {
    color: var(--text-primary-dark);
}

.dark .faq-item p {
    color: var(--text-secondary-dark);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--accent-blue) 100%);
    color: white;
    text-align: center !important;
}

.contact-cta .container {
    text-align: center !important;
}

.contact-cta .cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center !important;
}

.contact-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-cta .cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.6;
}

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

.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--accent-blue) 100%);
    color: white;
    text-align: center;
}

.cta .cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.cta .cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.6;
}

.cta .cta-content .btn {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .cta .cta-content h2,
    .contact-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta .cta-content p,
    .contact-cta .cta-content p {
        font-size: 1.1rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .section-header .header-content {
        text-align: center;
    }
    
    .section-header .header-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .cta,
    .contact-cta {
        padding: 60px 0;
    }
    
    .cta .cta-content,
    .contact-cta .cta-content {
        padding: 0 15px;
    }
    
    .cta .cta-content h2,
    .contact-cta .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta .cta-content p,
    .contact-cta .cta-content p {
        font-size: 1rem;
    }
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Button Styles */
.btn-outline {
    background: transparent;
    color: #4299e1;
    border: 2px solid #4299e1;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #4299e1;
    color: white;
}

/* Dark mode styles for btn-outline */
.dark .btn-outline {
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    background: transparent;
}

.dark .btn-outline:hover {
    background: var(--accent-blue);
    color: white;
}

/* Dark mode styles for service cards */
.dark .service-card {
    background: var(--bg-secondary-dark);
    border: 1px solid var(--border-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dark .service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-blue);
}

.dark .service-card h3 {
    color: var(--text-primary-dark);
}

.dark .service-card p {
    color: var(--text-secondary-dark);
}

.dark .service-card li {
    color: var(--text-secondary-dark);
}

/* Dark mode styles for industry cards */
.dark .industry-card {
    background: var(--bg-secondary-dark);
    border: 1px solid var(--border-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dark .industry-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-blue);
}

.dark .industry-card h3 {
    color: var(--text-primary-dark);
}

.dark .industry-card p {
    color: var(--text-secondary-dark);
}

/* Dark mode styles for testimonial cards */
.dark .testimonial-card {
    background: var(--bg-secondary-dark);
    border: 1px solid var(--border-dark);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.dark .testimonial-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.dark .testimonial-card h3 {
    color: var(--text-primary-dark);
}

.dark .testimonial-card p {
    color: var(--text-secondary-dark);
}

.dark .testimonial-card .testimonial-author {
    color: var(--text-secondary-dark);
}

/* Dark mode styles for blog cards */
.dark .blog-item {
    background: var(--bg-secondary-dark);
    border: 1px solid var(--border-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dark .blog-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dark .blog-item h3 {
    color: var(--text-primary-dark);
}

.dark .blog-item h3 a {
    color: var(--text-primary-dark);
}

.dark .blog-item p {
    color: var(--text-secondary-dark);
}

.dark .blog-item .blog-meta {
    color: var(--text-secondary-dark);
}

/* Dark mode styles for team member cards */
.dark .team-member {
    background: var(--bg-secondary-dark);
    border: 1px solid var(--border-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dark .team-member:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dark .team-member h3 {
    color: var(--text-primary-dark);
}

.dark .team-member p {
    color: var(--text-secondary-dark);
}

.dark .team-member .position {
    color: var(--accent-blue);
}

/* Dark mode styles for form inputs */
.dark .form-group input,
.dark .form-group select,
.dark .form-group textarea {
    background: var(--bg-secondary-dark);
    border: 2px solid var(--border-dark);
    color: var(--text-primary-dark);
}

.dark .form-group input:focus,
.dark .form-group select:focus,
.dark .form-group textarea:focus {
    border-color: var(--accent-blue);
    background: var(--bg-secondary-dark);
}

.dark .form-group input::placeholder,
.dark .form-group textarea::placeholder {
    color: var(--text-secondary-dark);
}

/* Dark mode styles for navigation */
.dark .header {
    background: rgba(26, 35, 50, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.dark .nav-menu a {
    color: var(--text-primary-dark);
}

.dark .nav-menu a:hover,
.dark .nav-menu a.active {
    color: var(--accent-blue);
}

.dark .nav-menu a::after {
    background: var(--accent-blue);
}

/* Dark mode styles for sections */
.dark .services {
    background: var(--bg-primary-dark);
}

.dark .industries {
    background: var(--bg-secondary-dark);
}

.dark .about {
    background: var(--bg-primary-dark);
}

.dark .testimonials-section {
    background: var(--bg-secondary-dark);
}

.dark .team-section {
    background: var(--bg-primary-dark);
}

.dark .blog-section {
    background: var(--bg-secondary-dark);
}

.dark .careers-section {
    background: var(--bg-primary-dark);
}

/* Dark mode styles for section headers */
.dark .section-header h2 {
    color: var(--text-primary-dark);
}

.dark .section-header p {
    color: var(--text-secondary-dark);
}

/* Dark mode styles for general text elements */
.dark body {
    background: var(--bg-primary-dark);
    color: var(--text-primary-dark);
}

.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
    color: var(--text-primary-dark);
}

.dark p {
    color: var(--text-secondary-dark);
}

.dark a {
    color: var(--link-color);
}

.dark a:hover {
    color: var(--link-hover);
}

/* Dark mode styles for buttons */
.dark .btn-primary {
    background: var(--button-primary);
    color: white;
}

.dark .btn-primary:hover {
    background: var(--button-primary-hover);
}

.dark .btn-secondary {
    background: var(--button-secondary);
    color: white;
}

.dark .btn-secondary:hover {
    background: var(--button-secondary-hover);
}

/* Active Navigation */
.nav-menu a.active {
    color: #1a365d;
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content .contact-form {
        order: 4;
        grid-column: 1 / -1;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-container {
        padding: 0 30px;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 160px 0 60px;
        min-height: 80vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
        text-align: center;
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        padding: 0 10px;
        margin-bottom: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
        padding: 0 10px;
        margin-bottom: 1.2rem;
        text-align: left;
        word-spacing: 0.3px;
        line-height: 1.4;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        padding: 0 10px;
        margin-top: 0;
        text-align: left;
        word-spacing: 0.2px;
        line-height: 1.6;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 0 40px;
        min-height: 70vh;
    }
    
    .hero-container {
        padding: 0 15px;
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        padding: 0 5px;
        margin-bottom: 1.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
        padding: 0 5px;
        margin-bottom: 1rem;
        text-align: left;
        word-spacing: 0.2px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 5px;
        margin-top: 0;
        text-align: left;
        word-spacing: 0.1px;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content img,
    .about-content .about-text {
        order: unset;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content .contact-form {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
        justify-items: stretch;
        align-items: stretch;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        padding: 2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .why-choose-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .contact-content img,
    .contact-content .contact-info {
        order: unset;
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .industry-card {
        max-width: 100%;
        padding: 2rem;
    }
    
    .founder-content {
        padding: 0 20px;
    }
    
    .founder-text h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .founder-quote {
        padding: 2.5rem 2rem;
    }
    
    .founder-quote::before {
        font-size: 3rem;
        top: -15px;
        left: 20px;
    }
    
    .founder-quote p {
        font-size: 1rem;
    }
    
    .founder-signature {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .industry-icon {
        width: 60px;
        height: 60px;
    }
    
    .industry-icon i {
        font-size: 1.5rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-item {
        padding: 2rem;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
    }
    
    .solution-icon i {
        font-size: 1.5rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-study {
        padding: 2rem;
    }
    
    .case-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .case-icon {
        width: 50px;
        height: 50px;
    }
    
    .case-icon i {
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon i {
        font-size: 1.2rem;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .challenge-item {
        padding: 2rem;
    }
    
    .challenge-icon {
        width: 60px;
        height: 60px;
    }
    
    .challenge-icon i {
        font-size: 1.5rem;
    }
    
    .story-text h2 {
        font-size: 1.5rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .story-results {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .result-item {
        padding: 1rem;
    }
    
    .result-number {
        font-size: 1.5rem;
    }
    
    .overview-content,
    .story-content,
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .key-benefits {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Policy Pages Styles */
.policy-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.policy-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.policy-hero p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.policy-date {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}

.policy-content {
    padding: 4rem 0;
    background-color: var(--bg-secondary);
}

.policy-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.policy-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.policy-sidebar h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0.5rem;
}

.policy-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-nav li {
    margin-bottom: 0.5rem;
}

.policy-nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.policy-nav a:hover {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    transform: translateX(5px);
}

.policy-nav a.active {
    background-color: var(--accent-blue);
    color: white;
}

.policy-main {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--border-light);
}

.policy-section h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.policy-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.policy-section a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

.contact-info {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid var(--accent-blue);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Policy Pages */
@media (max-width: 1024px) {
    .policy-wrapper {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
    
    .policy-main {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 2.5rem;
    }
    
    .policy-hero p {
        font-size: 1.1rem;
    }
    
    .policy-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .policy-sidebar {
        position: static;
        order: 2;
    }
    
    .policy-main {
        order: 1;
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.8rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        padding: 3rem 0;
    }
    
    .policy-hero h1 {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 2rem 0;
    }
    
    .policy-main {
        padding: 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.6rem;
    }
    
    .policy-section h3 {
        font-size: 1.1rem;
    }
    
    .policy-nav a {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Blog Components Styles */
.blog-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #1e3a8a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title {
    margin-bottom: 1rem;
}

.blog-card-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--accent-blue);
}

.blog-card-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tag {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    transition: background-color 0.3s ease;
}

.blog-tag:hover {
    background: var(--bg-secondary);
}

/* Blog Filters */
.blog-filters-section {
    background: var(--bg-secondary);
    padding: 2rem 0;
}

.blog-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.filter-select,
.filter-input {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Blog List Section */
.blog-list-section {
    padding: 3rem 0;
}

.blog-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* Pagination */
.pagination-container {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-btn {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-light);
}

.pagination-btn.active {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

/* Blog Post Page */
.blog-post-main {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.blog-post-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post-content {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow-color);
    overflow: hidden;
}

.blog-post-container {
    padding: 3rem;
}

.blog-post-header {
    margin-bottom: 2rem;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-category {
    background: var(--accent-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.blog-post-excerpt {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

.blog-post-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-content {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.blog-post-tags h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-post-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-section {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow-color);
    padding: 2rem;
}

.sidebar-section h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-light);
}

.related-article {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.related-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-article h4 {
    margin-bottom: 0.5rem;
}

.related-article h4 a {
    color: #1e3a8a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-article h4 a:hover {
    color: #3b82f6;
}

.related-article p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.related-date {
    color: #9ca3af;
    font-size: 0.8rem;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
}

.category-link:last-child {
    border-bottom: none;
}

.category-link:hover {
    color: #1e3a8a;
}

.category-link i {
    margin-right: 0.5rem;
    color: #6b7280;
}

.category-count {
    color: #9ca3af;
    font-size: 0.8rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-link {
    background: #f3f4f6;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: #1e3a8a;
    color: white;
}

/* Error and Loading States */
.no-blogs,
.error-message {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.no-blogs i,
.error-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #9ca3af;
}

.no-blogs h3,
.error-message h3 {
    color: #374151;
    margin-bottom: 1rem;
}

/* Responsive Design for Blog Components */
@media (max-width: 1024px) {
    .blog-post-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-list-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-filters {
        grid-template-columns: 1fr;
    }
    
    .blog-list-container {
        grid-template-columns: 1fr;
    }
    
    .blog-post-title {
        font-size: 2rem;
    }
    
    .blog-post-container {
        padding: 2rem;
    }
    
    .blog-card-content {
        padding: 1rem;
    }
    
    .blog-card-title a {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .blog-post-title {
        font-size: 1.8rem;
    }
    
    .blog-post-container {
        padding: 1.5rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .sidebar-section {
        padding: 1.5rem;
    }
}

/* Form Message Styles */
.form-message {
    margin: 1rem 0;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    animation: slideInDown 0.3s ease-out;
    border: 1px solid transparent;
}

.form-message-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-color: #c3e6cb;
}

.form-message-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-color: #f5c6cb;
}

.form-message .message-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-message .message-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.form-message-success .message-content i {
    color: #28a745;
}

.form-message-error .message-content i {
    color: #dc3545;
}

.form-message span {
    line-height: 1.4;
}

/* Animation for form messages */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark Mode Component Styles */
.service-card,
.industry-card,
.feature-card,
.testimonial-card,
.blog-card,
.job-card,
.culture-card,
.certification-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: all var(--transition-speed) ease;
}

.service-card:hover,
.industry-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.job-card:hover,
.culture-card:hover,
.certification-item:hover {
    box-shadow: 0 10px 30px var(--shadow-color);
}

/* Button Styles for Dark Mode */
.btn {
    transition: all var(--transition-speed) ease;
}

.btn-primary {
    background: var(--accent-blue);
    color: white;
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}

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

.btn-outline:hover {
    background: var(--bg-tertiary);
}

/* Form Styles for Dark Mode */
input, textarea, select {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--text-primary);
    transition: all var(--transition-speed) ease;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--input-focus);
    outline: none;
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.2);
}

/* Section Backgrounds */
.services,
.industries,
.testimonials,
.blog-section,
.careers-section,
.about-section {
    background: var(--bg-secondary);
}

/* Footer Dark Mode */
[data-theme="dark"] .footer {
    background: var(--footer-bg);
    color: var(--footer-text);
}

[data-theme="dark"] .footer-section h3,
[data-theme="dark"] .footer-section h4 {
    color: var(--accent-blue);
}

[data-theme="dark"] .footer-section p {
    color: var(--footer-text);
}

[data-theme="dark"] .footer-section ul li a {
    color: var(--footer-text);
}

[data-theme="dark"] .footer-section ul li a:hover {
    color: var(--accent-blue);
}

[data-theme="dark"] .footer-bottom {
    color: var(--footer-text);
    border-top: 1px solid var(--accent-blue);
}

[data-theme="dark"] .newsletter-form input {
    background: var(--input-bg);
    color: var(--text-primary);
    border: 1px solid var(--input-border);
}

[data-theme="dark"] .newsletter-form input::placeholder {
    color: var(--text-muted);
}

[data-theme="dark"] .newsletter-form button {
    background: var(--button-primary);
    color: white;
}

[data-theme="dark"] .newsletter-form button:hover {
    background: var(--button-primary-hover);
}

[data-theme="dark"] .social-links a {
    background: var(--accent-blue);
    color: white;
}

[data-theme="dark"] .social-links a:hover {
    background: var(--deep-navy);
}

/* Logo Dark Mode Overrides */
[data-theme="dark"] .nav-logo .logo-image {
    content: url('logo-light.svg') !important;
}

[data-theme="dark"] .footer-logo .footer-logo-image {
    content: url('logo.svg') !important;
}

/* Theme Transition Animation */
.theme-transitioning * {
    transition: none !important;
}

/* Mobile Navigation Dark Mode */
@media (max-width: 768px) {
    .nav-menu {
        background: var(--bg-primary);
        border: 1px solid var(--card-border);
    }
    
    .nav-menu a {
        color: var(--text-primary);
        border-bottom: 1px solid var(--card-border);
    }
    
    .nav-menu a:hover {
        background: var(--bg-tertiary);
    }
}

/* Support Widget Styles */
.support-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: 'Open Sans', 'Roboto', sans-serif;
}

/* Widget Toggle Button */
.widget-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue, #3498db), #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
    position: relative;
    color: white;
    font-size: 1.5rem;
}

.widget-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(52, 152, 219, 0.4);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Widget Container */
.widget-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--bg-primary, #ffffff);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--card-border, #dee2e6);
}

.widget-container.active {
    display: flex;
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Widget Header */
.widget-header {
    background: linear-gradient(135deg, var(--accent-blue, #3498db), #2980b9);
    color: white;
    padding: 15px 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.agent-avatar {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.agent-details h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.status {
    font-size: 0.75rem;
    opacity: 0.9;
}

.status.online::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    margin-right: 5px;
}

.close-widget {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-widget:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Widget Body */
.widget-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary, #ffffff);
}

/* Welcome Screen */
.welcome-screen {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.welcome-content {
    text-align: center;
    width: 100%;
}

.welcome-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue, #3498db), #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.welcome-content h3 {
    margin: 0 0 10px 0;
    color: var(--text-primary, #2c3e50);
    font-size: 1.2rem;
}

.welcome-content p {
    margin: 0 0 20px 0;
    color: var(--text-secondary, #6c757d);
    font-size: 0.9rem;
}

/* Support Options */
.support-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-option {
    background: var(--card-bg, #ffffff);
    border: 1px solid var(--card-border, #dee2e6);
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
}

.support-option:hover {
    background: var(--bg-tertiary, #f8f9fa);
    border-color: var(--accent-blue, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.1);
}

.support-option i {
    font-size: 1.2rem;
    color: var(--accent-blue, #3498db);
    width: 20px;
}

.support-option span {
    font-weight: 600;
    color: var(--text-primary, #2c3e50);
    font-size: 0.9rem;
}

.support-option small {
    display: block;
    color: var(--text-secondary, #6c757d);
    font-size: 0.75rem;
    margin-top: 2px;
}

/* Chat Interface */
.chat-interface,
.bot-interface {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 300px;
    min-height: 200px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-blue, #3498db) var(--bg-secondary, #f8f9fa);
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: var(--bg-secondary, #f8f9fa);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--accent-blue, #3498db);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: var(--deep-navy, #2c3e50);
}

.message {
    display: flex;
    gap: 10px;
    max-width: 80%;
}

.message.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.agent-message .message-avatar,
.bot-message .message-avatar {
    background: var(--accent-blue, #3498db);
    color: white;
}

.user-message .message-avatar {
    background: var(--bg-tertiary, #e9ecef);
    color: var(--text-primary, #2c3e50);
}

.message-content {
    background: var(--bg-secondary, #f8f9fa);
    padding: 10px 15px;
    border-radius: 15px;
    border-bottom-left-radius: 5px;
}

.user-message .message-content {
    background: var(--accent-blue, #3498db);
    color: white;
    border-radius: 15px;
    border-bottom-right-radius: 5px;
}

.message-content p {
    margin: 0 0 5px 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.message-time {
    font-size: 0.7rem;
    opacity: 0.7;
}

.bot-options {
    margin: 10px 0 0 0;
    padding-left: 15px;
    font-size: 0.8rem;
}

.bot-options li {
    margin-bottom: 5px;
    color: var(--text-secondary, #6c757d);
}

/* Chat Input */
.chat-input {
    padding: 15px;
    border-top: 1px solid var(--card-border, #dee2e6);
    display: flex;
    gap: 10px;
    background: var(--bg-primary, #ffffff);
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--input-border, #dee2e6);
    border-radius: 25px;
    font-size: 0.85rem;
    background: var(--input-bg, #ffffff);
    color: var(--text-primary, #2c3e50);
}

.chat-input input:focus {
    outline: none;
    border-color: var(--input-focus, #3498db);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.chat-input button {
    width: 40px;
    height: 40px;
    background: var(--accent-blue, #3498db);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-input button:hover {
    background: #2980b9;
    transform: scale(1.1);
}

/* Ticket Interface */
.ticket-interface {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.ticket-form h4 {
    margin: 0 0 10px 0;
    color: var(--text-primary, #2c3e50);
    font-size: 1.1rem;
}

.ticket-form p {
    margin: 0 0 20px 0;
    color: var(--text-secondary, #6c757d);
    font-size: 0.85rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary, #2c3e50);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--input-border, #dee2e6);
    border-radius: 8px;
    font-size: 0.85rem;
    background: var(--input-bg, #ffffff);
    color: var(--text-primary, #2c3e50);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--input-focus, #3498db);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.submit-ticket {
    width: 100%;
    background: var(--accent-blue, #3498db);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-ticket:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

/* Ticket Confirmation */
.ticket-confirmation {
    text-align: center;
    padding: 20px;
}

.confirmation-icon {
    width: 60px;
    height: 60px;
    background: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.ticket-confirmation h4 {
    color: var(--text-primary, #2c3e50);
    margin: 0 0 10px 0;
}

.ticket-confirmation p {
    color: var(--text-secondary, #6c757d);
    margin: 0 0 15px 0;
}

.ticket-details {
    background: var(--bg-secondary, #f8f9fa);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: left;
}

.ticket-details p {
    margin: 5px 0;
    font-size: 0.85rem;
}

.btn-back {
    background: var(--accent-blue, #3498db);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 480px) {
    .widget-container {
        width: calc(100vw - 40px);
        height: calc(100vh - 120px);
        bottom: 80px;
        right: 20px;
    }
    
    .support-widget {
        bottom: 10px;
        right: 10px;
    }
    
    .widget-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Dark Mode Compatibility for Support Widget */
[data-theme="dark"] .widget-container {
    background: var(--bg-primary, #0f1419);
    border-color: var(--card-border, #374151);
}

[data-theme="dark"] .welcome-content h3 {
    color: var(--text-primary, #e2e8f0);
}

[data-theme="dark"] .welcome-content p {
    color: var(--text-secondary, #cbd5e1);
}

[data-theme="dark"] .support-option {
    background: var(--card-bg, #1e293b);
    border-color: var(--card-border, #374151);
}

[data-theme="dark"] .support-option:hover {
    background: var(--bg-tertiary, #2d3748);
}

[data-theme="dark"] .support-option span {
    color: var(--text-primary, #e2e8f0);
}

[data-theme="dark"] .support-option small {
    color: var(--text-secondary, #cbd5e1);
}

[data-theme="dark"] .message-content {
    background: var(--bg-secondary, #1a1a1a);
    color: var(--text-primary, #e2e8f0);
}

[data-theme="dark"] .chat-input {
    background: var(--bg-primary, #0f1419);
    border-color: var(--card-border, #374151);
}

[data-theme="dark"] .ticket-form h4 {
    color: var(--text-primary, #e2e8f0);
}

[data-theme="dark"] .ticket-form p {
    color: var(--text-secondary, #cbd5e1);
}

[data-theme="dark"] .ticket-confirmation h4 {
    color: var(--text-primary, #e2e8f0);
}

[data-theme="dark"] .ticket-confirmation p {
    color: var(--text-secondary, #cbd5e1);
}

[data-theme="dark"] .ticket-details {
    background: var(--bg-secondary, #1a1a1a);
}

/* Cookie Consent Styles */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    animation: slideInUp 0.5s ease-out;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text h4 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-consent-text p {
    margin: 0 0 1rem 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: #3b82f6;
    text-decoration: underline;
}

.cookie-consent-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin: 0;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-consent-buttons .btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #f9fafb;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background: #f3f4f6;
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
}

/* Cookie Modal Styles */
#cookie-customize-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease-out;
}

.cookie-modal-content {
    background: #ffffff;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.3s ease-out;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-modal-header h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.3rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category h4 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
    font-size: 1.1rem;
}

.cookie-category p {
    margin: 0 0 1rem 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-details {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.6;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.toggle-slider {
    position: relative;
    width: 50px;
    height: 24px;
    background: #ccc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.toggle-slider:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
}

.cookie-toggle input:checked + .toggle-slider {
    background: #3b82f6;
}

.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.cookie-toggle input {
    display: none;
}

.toggle-label {
    font-weight: 500;
    color: #1f2937;
}

.cookie-modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    justify-content: flex-end;
}

/* Cookie Notification */
.cookie-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10002;
    animation: slideInRight 0.5s ease-out;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-content i {
    font-size: 1.1rem;
}

/* Animations */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Dark mode compatibility for cookie consent */
[data-theme="dark"] #cookie-consent-banner {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
}

[data-theme="dark"] .cookie-consent-text h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .cookie-consent-text p {
    color: var(--text-secondary);
}

/* Additional Dark Mode Overrides */
[data-theme="dark"] .policy-content {
    background-color: var(--bg-secondary);
}

[data-theme="dark"] .policy-main {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
}

[data-theme="dark"] .policy-sidebar {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
}

[data-theme="dark"] .contact-info {
    background-color: var(--bg-tertiary);
    border-left-color: var(--accent-blue);
}

[data-theme="dark"] .contact-info p {
    color: var(--text-secondary);
}

[data-theme="dark"] .policy-section h2,
[data-theme="dark"] .policy-section h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .policy-section p,
[data-theme="dark"] .policy-section li {
    color: var(--text-secondary);
}

[data-theme="dark"] .policy-section strong {
    color: var(--text-primary);
}

[data-theme="dark"] .policy-section a {
    color: var(--link-color);
}

[data-theme="dark"] .policy-section a:hover {
    color: var(--link-hover);
}

/* Blog Dark Mode Overrides */
[data-theme="dark"] .blog-card-title a {
    color: var(--text-primary);
}

[data-theme="dark"] .blog-card-title a:hover {
    color: var(--accent-blue);
}

[data-theme="dark"] .blog-card-excerpt {
    color: var(--text-secondary);
}

[data-theme="dark"] .blog-tag {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

[data-theme="dark"] .blog-tag:hover {
    background: var(--bg-secondary);
}

[data-theme="dark"] .blog-filters-section {
    background: var(--bg-secondary);
}

[data-theme="dark"] .filter-group label {
    color: var(--text-primary);
}

[data-theme="dark"] .blog-post-title {
    color: var(--text-primary);
}

[data-theme="dark"] .blog-post-excerpt {
    color: var(--text-secondary);
}

[data-theme="dark"] .blog-post-content {
    color: var(--text-secondary);
}

[data-theme="dark"] .blog-post-content h2,
[data-theme="dark"] .blog-post-content h3,
[data-theme="dark"] .blog-post-content h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .blog-post-footer,
[data-theme="dark"] .blog-post-navigation {
    border-top-color: var(--border-light);
}

[data-theme="dark"] .blog-post-tags h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .sidebar-section {
    background: var(--card-bg);
    box-shadow: 0 4px 6px var(--shadow-color);
}

[data-theme="dark"] .sidebar-section h3 {
    color: var(--text-primary);
    border-bottom-color: var(--border-light);
}

/* General Dark Mode Text Overrides */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: var(--text-primary);
}

[data-theme="dark"] p {
    color: var(--text-secondary);
}

[data-theme="dark"] a {
    color: var(--link-color);
}

[data-theme="dark"] a:hover {
    color: var(--link-hover);
}

[data-theme="dark"] .text-muted {
    color: var(--text-muted) !important;
}

[data-theme="dark"] .text-secondary {
    color: var(--text-secondary) !important;
}

/* Additional Dark Mode Overrides for Better Contrast */
[data-theme="dark"] .benefit-item p {
    color: var(--text-secondary);
}

[data-theme="dark"] .achievement-number {
    color: var(--accent-blue);
}

[data-theme="dark"] .achievement-item h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .achievement-item p {
    color: var(--text-secondary);
}

[data-theme="dark"] .industry-card li {
    color: var(--text-secondary);
}

[data-theme="dark"] .industry-card li::before {
    color: var(--accent-blue);
}

[data-theme="dark"] .industry-solutions {
    background: var(--bg-secondary);
}

[data-theme="dark"] .solution-item {
    background: var(--card-bg);
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--card-border);
}

[data-theme="dark"] .solution-item h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .solution-item p {
    color: var(--text-secondary);
}

[data-theme="dark"] .pagination-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
}

[data-theme="dark"] .pagination-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-light);
}

[data-theme="dark"] .pagination-btn.active {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

[data-theme="dark"] .blog-post-main {
    background: var(--bg-secondary);
}

[data-theme="dark"] .blog-post-content {
    background: var(--card-bg);
    box-shadow: 0 4px 6px var(--shadow-color);
}

[data-theme="dark"] .blog-post-meta {
    color: var(--text-secondary);
}

[data-theme="dark"] .blog-post-category {
    background: var(--accent-blue);
    color: white;
}

/* Form and Input Dark Mode Overrides */
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--text-primary);
}

[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
    border-color: var(--input-focus);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: var(--text-muted);
}

[data-theme="dark"] .form-group label {
    color: var(--text-primary);
}

/* Button Dark Mode Overrides */
[data-theme="dark"] .btn-primary {
    background: var(--button-primary);
    color: white;
}

[data-theme="dark"] .btn-primary:hover {
    background: var(--button-primary-hover);
}

[data-theme="dark"] .btn-secondary {
    background: var(--button-secondary);
    color: white;
}

[data-theme="dark"] .btn-secondary:hover {
    background: var(--button-secondary-hover);
}

/* Hero Section Button Overrides for Dark Mode */
[data-theme="dark"] .hero .btn-primary {
    background: var(--accent-blue);
    color: white !important;
}

[data-theme="dark"] .hero .btn-primary:hover {
    background: var(--deep-navy);
    color: white !important;
}

[data-theme="dark"] .hero .btn-secondary {
    background: transparent;
    color: white !important;
    border: 2px solid white;
}

[data-theme="dark"] .hero .btn-secondary:hover {
    background: white;
    color: var(--deep-navy) !important;
}

[data-theme="dark"] .btn-outline {
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    background: transparent;
}

[data-theme="dark"] .btn-outline:hover {
    background: var(--accent-blue);
    color: white;
}

/* Card and Section Dark Mode Overrides */
[data-theme="dark"] .card,
[data-theme="dark"] .section-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 6px var(--shadow-color);
}

[data-theme="dark"] .section {
    background: var(--bg-primary);
}

[data-theme="dark"] .section-alt {
    background: var(--bg-secondary);
}

/* Link Dark Mode Overrides */
[data-theme="dark"] a {
    color: var(--link-color);
}

[data-theme="dark"] a:hover {
    color: var(--link-hover);
}

/* Success/Error Message Dark Mode Overrides */
[data-theme="dark"] .success-message {
    background: var(--success-color);
    color: white;
    border: 1px solid var(--success-color);
}

[data-theme="dark"] .error-message {
    background: var(--error-color);
    color: white;
    border: 1px solid var(--error-color);
}

[data-theme="dark"] .warning-message {
    background: var(--warning-color);
    color: white;
    border: 1px solid var(--warning-color);
}

/* About Page Dark Mode Overrides */
[data-theme="dark"] .company-story {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--off-white) 100%);
}

[data-theme="dark"] .who-we-are {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

[data-theme="dark"] .key-highlights {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-tertiary) 100%);
    box-shadow: 0 20px 40px var(--shadow-color);
    border: 2px solid var(--accent-blue-transparent);
}

[data-theme="dark"] .key-highlights h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .key-highlights li {
    color: var(--text-secondary);
}

[data-theme="dark"] .key-highlights li:hover {
    color: var(--text-primary);
}

[data-theme="dark"] .key-highlights li::before {
    color: var(--accent-blue);
    background: var(--accent-blue-transparent);
    box-shadow: 0 2px 8px var(--accent-blue-transparent);
}

[data-theme="dark"] .founders-message {
    background: var(--bg-primary);
}

[data-theme="dark"] .founder-quote {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--off-white) 100%);
    box-shadow: 0 15px 35px var(--shadow-color);
    border: 1px solid var(--border-light);
}

[data-theme="dark"] .founder-quote p {
    color: var(--text-secondary);
}

[data-theme="dark"] .founder-signature strong {
    color: var(--text-primary);
}

[data-theme="dark"] .founder-signature span {
    color: var(--accent-blue);
}

[data-theme="dark"] .mission-vision {
    background: var(--bg-primary);
}

[data-theme="dark"] .mv-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--off-white) 100%);
    box-shadow: 0 15px 35px var(--shadow-color);
    border: 1px solid var(--accent-blue-transparent);
}

[data-theme="dark"] .mv-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .mv-card p {
    color: var(--text-secondary);
}

[data-theme="dark"] .core-values {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--off-white) 100%);
}

[data-theme="dark"] .value-item {
    background: var(--card-bg);
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--accent-blue-transparent);
}

[data-theme="dark"] .value-item:hover {
    box-shadow: 0 20px 40px var(--shadow-color);
    border-color: var(--accent-blue-transparent);
}

[data-theme="dark"] .value-item h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .value-item p {
    color: var(--text-secondary);
}

[data-theme="dark"] .team-section {
    background: var(--bg-primary);
}

[data-theme="dark"] .team-member {
    background: var(--card-bg);
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--card-border);
}

[data-theme="dark"] .team-member h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .team-member .position {
    color: var(--accent-blue);
}

[data-theme="dark"] .team-member p {
    color: var(--text-secondary);
}

[data-theme="dark"] .team-member .member-credentials span {
    color: var(--text-muted);
}

[data-theme="dark"] .achievements {
    background: var(--bg-secondary);
}

[data-theme="dark"] .achievement-item {
    background: var(--card-bg);
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--card-border);
}

[data-theme="dark"] .certifications {
    background: var(--bg-primary);
}

[data-theme="dark"] .certification-item {
    background: var(--card-bg);
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--card-border);
}

[data-theme="dark"] .certification-item h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .certification-item p {
    color: var(--text-secondary);
}

[data-theme="dark"] .why-choose-us {
    background: var(--bg-secondary);
}

[data-theme="dark"] .feature-item {
    background: var(--card-bg);
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--card-border);
}

[data-theme="dark"] .feature-item h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .feature-item p {
    color: var(--text-secondary);
}

/* Team Page Dark Mode Overrides */
[data-theme="dark"] .leadership-section {
    background: var(--bg-secondary);
}

[data-theme="dark"] .leader-card {
    background: var(--card-bg);
    box-shadow: 0 15px 35px var(--shadow-color);
}

[data-theme="dark"] .leader-card:hover {
    box-shadow: 0 25px 50px var(--shadow-color);
}

[data-theme="dark"] .leader-content h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .leader-content p {
    color: var(--text-secondary);
}

[data-theme="dark"] .expertise-tag {
    background: var(--accent-blue-transparent);
    color: var(--accent-blue);
}

[data-theme="dark"] .practice-leaders {
    background: var(--bg-primary);
}

[data-theme="dark"] .practice-leader {
    background: var(--card-bg);
    box-shadow: 0 15px 35px var(--shadow-color);
}

[data-theme="dark"] .practice-leader:hover {
    box-shadow: 0 25px 50px var(--shadow-color);
}

[data-theme="dark"] .practice-content h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .practice-content p {
    color: var(--text-secondary);
}

[data-theme="dark"] .join-team {
    background: var(--bg-secondary);
}

[data-theme="dark"] .join-content h2 {
    color: var(--text-primary);
}

[data-theme="dark"] .join-content p {
    color: var(--text-secondary);
}

/* Contact Page Dark Mode Overrides */
[data-theme="dark"] .contact-info-section {
    background: var(--bg-secondary);
}

[data-theme="dark"] .contact-method {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 30px var(--shadow-color);
}

[data-theme="dark"] .contact-method:hover {
    box-shadow: 0 15px 35px var(--shadow-color);
    border-color: var(--accent-blue-transparent);
}

[data-theme="dark"] .contact-method h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .contact-method p {
    color: var(--text-secondary);
}

[data-theme="dark"] .contact-method a {
    color: var(--accent-blue);
}

[data-theme="dark"] .contact-method a:hover {
    color: var(--accent-blue-hover);
}

[data-theme="dark"] .contact-form-section {
    background: var(--bg-secondary);
}

[data-theme="dark"] .contact-card {
    background: var(--card-bg);
    box-shadow: 0 8px 25px var(--shadow-color);
}

[data-theme="dark"] .contact-card:hover {
    box-shadow: 0 15px 35px var(--shadow-color);
}

[data-theme="dark"] .contact-details h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .contact-details p {
    color: var(--text-secondary);
}

[data-theme="dark"] .contact-item h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .contact-form {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--off-white) 100%);
    box-shadow: 0 15px 35px var(--shadow-color);
    border: 1px solid var(--accent-blue-transparent);
}

/* Services Page Dark Mode Overrides */
[data-theme="dark"] .service-card {
    background: var(--card-bg);
    box-shadow: 0 10px 30px var(--shadow-color);
}

[data-theme="dark"] .service-card:hover {
    box-shadow: 0 20px 40px var(--shadow-color);
}

[data-theme="dark"] .service-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .service-card p {
    color: var(--text-secondary);
}

[data-theme="dark"] .service-card li {
    color: var(--text-secondary);
}

/* Industries Page Dark Mode Overrides */
[data-theme="dark"] .industry-card {
    background: var(--card-bg);
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--card-border);
}

[data-theme="dark"] .industry-card:hover {
    box-shadow: 0 20px 40px var(--shadow-color);
    border-color: var(--accent-blue-transparent);
}

[data-theme="dark"] .industry-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .industry-card p {
    color: var(--text-secondary);
}

[data-theme="dark"] .industry-card li {
    color: var(--text-secondary);
}

[data-theme="dark"] .industry-card li::before {
    color: var(--accent-blue);
}

[data-theme="dark"] .industry-solutions {
    background: var(--bg-secondary);
}

[data-theme="dark"] .solution-item {
    background: var(--card-bg);
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--card-border);
}

[data-theme="dark"] .solution-item:hover {
    box-shadow: 0 20px 40px var(--shadow-color);
}

[data-theme="dark"] .solution-item h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .solution-item p {
    color: var(--text-secondary);
}

[data-theme="dark"] .cookie-modal-content {
    background: var(--dark-bg);
}

[data-theme="dark"] .cookie-modal-header {
    border-bottom: 1px solid var(--dark-border);
}

[data-theme="dark"] .cookie-modal-header h3 {
    color: var(--dark-text);
}

[data-theme="dark"] .close-modal {
    color: var(--dark-text-secondary);
}

[data-theme="dark"] .close-modal:hover {
    background: var(--dark-bg-hover);
    color: var(--dark-text);
}

[data-theme="dark"] .cookie-category {
    border-bottom: 1px solid var(--dark-border);
}

[data-theme="dark"] .cookie-category h4 {
    color: var(--dark-text);
}

[data-theme="dark"] .cookie-category p {
    color: var(--dark-text-secondary);
}

[data-theme="dark"] .cookie-details {
    background: var(--dark-bg-hover);
    color: var(--dark-text-secondary);
}

[data-theme="dark"] .toggle-label {
    color: var(--dark-text);
}

[data-theme="dark"] .cookie-modal-footer {
    border-top: 1px solid var(--dark-border);
}

[data-theme="dark"] .btn-secondary {
    background: var(--dark-bg);
    color: var(--dark-text);
    border: 1px solid var(--dark-border);
}

[data-theme="dark"] .btn-secondary:hover {
    background: var(--dark-bg-hover);
}

/* Responsive Design for Cookie Consent */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-consent-buttons .btn {
        width: 100%;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer .btn {
        width: 100%;
    }
}

/* Home Page Dark Mode Overrides */
[data-theme="dark"] .hero {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%), url('images/hero-bg.jpg?v=2');
}

[data-theme="dark"] .hero-content h1 {
    color: white !important;
}

[data-theme="dark"] .hero-content h2 {
    color: white !important;
}

[data-theme="dark"] .hero-content p {
    color: white !important;
}

[data-theme="dark"] .hero-stats {
    background: rgba(248, 249, 250, 0.15);
    border: 1px solid rgba(248, 249, 250, 0.2);
}

[data-theme="dark"] .stat h3 {
    color: white !important;
}

[data-theme="dark"] .stat p {
    color: white !important;
}

[data-theme="dark"] .section-header h2 {
    color: var(--text-primary);
}

[data-theme="dark"] .section-header p {
    color: var(--accent-blue);
}

[data-theme="dark"] .services {
    background: var(--bg-secondary);
}

[data-theme="dark"] .service-card {
    background: var(--card-bg);
    box-shadow: 0 10px 30px var(--shadow-color);
}

[data-theme="dark"] .service-card:hover {
    box-shadow: 0 20px 40px var(--shadow-color);
}

[data-theme="dark"] .service-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .service-card p {
    color: var(--text-secondary);
}

[data-theme="dark"] .service-card li {
    color: var(--text-secondary);
}

[data-theme="dark"] .about {
    background: var(--bg-primary);
}

[data-theme="dark"] .about img {
    box-shadow: 0 10px 30px var(--shadow-color);
}

[data-theme="dark"] .about-content img {
    box-shadow: 0 10px 30px var(--shadow-color);
}

[data-theme="dark"] .about-text h2 {
    color: var(--text-primary);
}

[data-theme="dark"] .about-text p {
    color: var(--text-secondary);
}

[data-theme="dark"] .feature h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .feature p {
    color: var(--text-secondary);
}

[data-theme="dark"] .certifications {
    background: var(--bg-secondary);
}

[data-theme="dark"] .certification-item {
    background: var(--card-bg);
    box-shadow: 0 10px 30px var(--shadow-color);
}

[data-theme="dark"] .certification-item:hover {
    box-shadow: 0 15px 35px var(--shadow-color);
}

[data-theme="dark"] .certification-item h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .certification-item p {
    color: var(--text-secondary);
}

[data-theme="dark"] .testimonials-section {
    background: var(--bg-secondary);
}

[data-theme="dark"] .cta-section {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--accent-blue) 100%);
}

[data-theme="dark"] .contact-cta {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--accent-blue) 100%);
}

[data-theme="dark"] .cta {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--accent-blue) 100%);
}

[data-theme="dark"] .cta-content h2 {
    color: white;
}

[data-theme="dark"] .cta-content p {
    color: white;
}

[data-theme="dark"] .contact-cta .cta-content h2 {
    color: white;
}

[data-theme="dark"] .contact-cta .cta-content p {
    color: white;
}
