/* Complete New Design - Based on Reference Screenshots */

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables */
:root {
    --primary-blue: #2563eb;
    --purple-start: #8b5cf6;
    --purple-end: #6d28d9;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --light-gray: #f8fafc;
    --white: #ffffff;
    --green: #10b981;
    --light-blue-bg: #eff6ff;
    --border-light: #e5e7eb;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    padding-top: 84px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple-start) 0%, var(--purple-end) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text .company-name {
    font-size: 23px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.logo-text .tagline {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1;
    margin-top: 2px;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 48px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 0;
    transition: all 0.2s ease;
    position: relative;
    font-size: 16px;
}

.main-nav ul li.active a,
.main-nav ul li a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.main-nav ul li a:hover {
    color: var(--primary-blue);
}

/* Get Started Button - Removed */

/* Hero Section */
.hero {
    background: white;
    position: relative;
    overflow: hidden;
    padding: 40px 0 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
}

/* Single column hero content for Terms/Privacy pages */
.hero-content.single-column {
    grid-template-columns: 1fr;
    max-width: 800px;
    justify-items: center;
}

.hero-content.single-column .hero-text {
    width: 100%;
    text-align: left;
}

.hero-text {
    background: #f8f9fa;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-visual {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    padding: 60px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 50%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Dynamics 365 specific gradient */
.hero-visual.dynamics-gradient {
    background: linear-gradient(135deg, #0078d4 0%, #ff6900 100%);
}

/* Training specific gradient */
.hero-visual.training-gradient {
    background: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
}

/* Not-for-Profit specific gradient */
.hero-visual.nfp-gradient {
    background: linear-gradient(135deg, #DC2626 0%, #F59E0B 100%);
}

/* MACS Aged Care specific gradient */
.hero-visual.macs-gradient {
    background: linear-gradient(135deg, #059669 0%, #3B82F6 100%);
}

/* Service Bus Integration specific gradient */
.hero-visual.service-bus-gradient {
    background: linear-gradient(135deg, #7C3AED 0%, #1E40AF 100%);
}

/* Cloud Integration specific gradient */
.hero-visual.cloud-gradient {
    background: linear-gradient(135deg, #0EA5E9 0%, #06B6D4 100%);
}

/* Service Bus Integration specific gradient */
.hero-visual.service-bus-gradient {
    background: linear-gradient(135deg, #7C3AED 0%, #1E40AF 100%);
}

/* Cloud Integration specific gradient */
.hero-visual.cloud-gradient {
    background: linear-gradient(135deg, #0EA5E9 0%, #06B6D4 100%);
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, var(--purple-start) 0%, var(--purple-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: var(--primary-blue);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    padding: 14px 28px;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Integration Diagram */
.integration-diagram {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.system-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--light-blue-bg);
    border-radius: 12px;
    border: 2px solid var(--primary-blue);
    min-width: 100px;
}

.system-node i {
    font-size: 32px;
    color: var(--primary-blue);
}

.system-node span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.biztalk-hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--purple-start) 100%);
    border-radius: 16px;
    color: white;
    min-width: 120px;
}

.biztalk-hub i {
    font-size: 36px;
    color: white;
}

.biztalk-hub span {
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-align: center;
}

.connection-lines {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    pointer-events: none;
}

.line {
    position: absolute;
    height: 2px;
    background: var(--primary-blue);
    top: 0;
}

.line-1 {
    left: 20%;
    width: 25%;
}

.line-2 {
    right: 20%;
    width: 25%;
}

/* Service Bus Diagram */
.service-bus-diagram {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
}

.app-node, .service-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--light-blue-bg);
    border-radius: 12px;
    border: 2px solid var(--primary-blue);
    min-width: 90px;
}

.bus-hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: linear-gradient(135deg, #1d4ed8 0%, #9333ea 100%);
    border-radius: 16px;
    color: white;
    min-width: 110px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.app-node i, .service-node i {
    font-size: 28px;
    color: var(--primary-blue);
}

.bus-hub i {
    font-size: 32px;
    color: white;
}

.app-node span, .service-node span, .bus-hub span {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.app-node span, .service-node span {
    color: var(--text-dark);
}

.bus-hub span {
    color: white;
}

.message-lines {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    pointer-events: none;
    z-index: 1;
}

.message-arrow {
    position: absolute;
    height: 2px;
    background: linear-gradient(to right, var(--primary-blue), transparent);
    top: 0;
}

.left-to-center {
    left: 25%;
    width: 20%;
}

.center-to-right {
    right: 25%;
    width: 20%;
}

/* Cloud Architecture Diagram */
.cloud-architecture {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.cloud-layer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.on-premise, .azure-cloud {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--light-blue-bg);
    border-radius: 12px;
    border: 2px solid var(--primary-blue);
    min-width: 100px;
}

.cloud-bridge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: linear-gradient(135deg, #1d4ed8 0%, #9333ea 100%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.on-premise i, .azure-cloud i {
    font-size: 28px;
    color: var(--primary-blue);
}

.cloud-bridge i {
    font-size: 24px;
    color: white;
}

.on-premise span, .azure-cloud span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.migration-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
}

.migration-arrow i {
    font-size: 20px;
    color: var(--primary-blue);
}

.migration-arrow span {
    font-size: 10px;
    font-weight: 600;
    color: var(--primary-blue);
}

.hero-award {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.award-image {
    width: 120%;
    max-height: 350px;
    object-fit: contain;
    border-radius: 12px;
    filter: brightness(1.1) contrast(1.05);
    position: relative;
    z-index: 1;
}

/* Stats Section */
.stats-section {
    background: white;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-item p {
    color: var(--text-gray);
    font-weight: 500;
    margin: 0;
    font-size: 16px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: white;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.why-choose-text p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-gray);
}

.features-list li::before {
    content: '✓';
    background: var(--green);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Checkmark List for Why Choose Mayasoft */
.checkmark-list {
    list-style: none;
    padding: 0;
}

.checkmark-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-gray);
}

.checkmark-list li::before {
    content: '✓';
    background: var(--green);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Icon Cards Grid */
.icon-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.icon-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.icon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.icon-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.blue-card .icon-card-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.green-card .icon-card-icon {
    background: linear-gradient(135deg, #10b981, #047857);
}

.purple-card .icon-card-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.orange-card .icon-card-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.icon-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.icon-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .icon-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.benefit-icon.user {
    color: var(--primary-blue);
}

.benefit-icon.fast {
    color: var(--green);
}

.benefit-icon.award {
    color: var(--purple-start);
}

.benefit-icon.shield {
    color: #f59e0b;
}

.benefit-icon.growth {
    color: var(--green);
}

.benefit-icon.efficiency {
    color: var(--primary-blue);
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Services Section */
.services-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.services-header p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-blue);
    font-size: 32px;
    padding: 10px;
}

.service-card .service-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-card .learn-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.service-card .learn-more:hover {
    gap: 8px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1d4ed8 0%, #9333ea 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Contact Cards */
.contact-cards {
    background: var(--light-gray);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    justify-items: center;
}

.contact-grid .contact-card {
    width: 100%;
    max-width: 350px;
}

.contact-card {
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.contact-card .icon {
    color: var(--primary-blue);
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

.contact-card a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-card:hover a {
    color: var(--primary-blue);
}

/* Content Section Styles */
.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-blue-bg);
}

.terms-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 24px 0 12px 0;
}

.terms-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.terms-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.terms-list li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 8px;
}

/* Project Overview Enhanced Styles */
.project-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-blue-bg) 0%, #f0f9ff 100%);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.overview-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.transformation-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--purple-start) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    box-shadow: var(--shadow-lg);
}

.overview-image {
    width: 300px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.section-badge {
    background: var(--primary-blue);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.overview-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.overview-text p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.transformation-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
}

.highlight-item i {
    color: var(--green);
    font-size: 18px;
}

@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .transformation-icon {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
    
    .overview-text h2 {
        font-size: 28px;
    }
}

/* Modern Animation Styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.fade-in-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.fade-in-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

.scale-in.animate-in {
    opacity: 1;
    transform: scale(1);
}

.slide-in-stagger {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
}

.slide-in-stagger.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for multiple elements */
.slide-in-stagger:nth-child(1) { transition-delay: 0.1s; }
.slide-in-stagger:nth-child(2) { transition-delay: 0.2s; }
.slide-in-stagger:nth-child(3) { transition-delay: 0.3s; }
.slide-in-stagger:nth-child(4) { transition-delay: 0.4s; }
.slide-in-stagger:nth-child(5) { transition-delay: 0.5s; }
.slide-in-stagger:nth-child(6) { transition-delay: 0.6s; }

/* Hero animations */
.hero-text {
    opacity: 0;
    animation: heroFadeIn 1.2s ease-out 0.3s forwards;
}

.hero-visual {
    opacity: 0;
    animation: heroSlideIn 1.2s ease-out 0.6s forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Page load animation */
.page-load {
    animation: pageLoad 0.8s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Enhanced Modern Footer */
.modern-footer {
    background: #1f2937;
    color: white;
    padding: 80px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

/* Company Info Section */
.company-info {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    background: var(--primary-blue);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.footer-company-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.footer-tagline {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1;
    margin-top: 4px;
}

.footer-description {
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #9ca3af;
    font-size: 14px;
}

.footer-contact-item i {
    color: var(--primary-blue);
    width: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid #374151;
    margin-top: 60px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Form Styles */
.contact-form {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 600px;
    margin: 40px auto 0;
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 24px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: var(--light-gray);
    color: var(--text-dark);
    font-size: 16px;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control::placeholder {
    color: var(--text-gray);
}

.submit-btn {
    background: var(--primary-blue);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0 16px;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid var(--border-light);
        border-radius: 12px;
        margin: 8px 20px;
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }
    
    .main-nav.mobile-open {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 8px;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
    }
}

/* Logo Image Styling */
.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

/* Dropdown Navigation */
.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px 0;
    min-width: 240px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


.dropdown-menu li {
    margin: 0;
    width: 100%;
}

.main-nav .dropdown-menu > li > a,
.dropdown-menu li a {
    display: block !important;
    padding: 16px 24px 16px 32px !important;
    color: var(--text-gray) !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    border-radius: 0 !important;
    white-space: nowrap !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    min-height: 48px !important;
    box-sizing: border-box !important;
}

.main-nav .dropdown-menu > li > a:hover,
.dropdown-menu li a:hover {
    background: var(--light-blue-bg) !important;
    color: var(--primary-blue) !important;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 20px;
    right: 20px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: 8px;
}

.mobile-menu ul li a {
    display: block;
    padding: 12px 16px;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-menu ul li a:hover {
    background: var(--light-blue-bg);
    color: var(--primary-blue);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.section-padding {
    padding: 100px 0;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

/* Animation */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Portfolio/Case Study Styles */
.portfolio-hero {
    background: var(--light-gray);
    padding: 120px 0 80px;
}

.portfolio-header {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.client-logo {
    flex-shrink: 0;
}

.case-study-logo {
    width: 120px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.portfolio-title {
    flex: 1;
}

.portfolio-category {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.portfolio-title h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.portfolio-title p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Project Overview */
.project-overview {
    background: white;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-light);
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.overview-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.overview-text p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Key Results Section */
.key-results {
    background: var(--light-gray);
    padding: 100px 0;
}

.key-results h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.result-item {
    text-align: center;
    background: white;
    padding: 40px 24px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.result-icon {
    color: var(--green);
    font-size: 32px;
    margin-bottom: 20px;
}

.result-item h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1;
}

.result-item p {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Testimonial Section */
.testimonial-section {
    background: linear-gradient(135deg, #1d4ed8 0%, #9333ea 100%);
    color: white;
    padding: 100px 0;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.testimonial-content blockquote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 32px;
    color: white;
    border: none;
    padding: 0;
    quotes: """ """ "'" "'";
}

.testimonial-content blockquote::before {
    content: open-quote;
    font-size: 48px;
    line-height: 1;
    margin-right: 8px;
    vertical-align: -8px;
}

.testimonial-content blockquote::after {
    content: close-quote;
    font-size: 48px;
    line-height: 1;
    margin-left: 8px;
    vertical-align: -8px;
}

.testimonial-author {
    margin-top: 24px;
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.testimonial-author span {
    font-size: 14px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Case Study Details */
.case-study-details {
    background: white;
    padding: 100px 0;
}

.details-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.detail-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.detail-section p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.detail-section p:last-child {
    margin-bottom: 0;
}

.challenge-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.challenge-list li {
    padding: 8px 0 8px 32px;
    position: relative;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

.challenge-list li::before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .portfolio-header {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .portfolio-title h1 {
        font-size: 32px;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .details-grid {
        gap: 40px;
    }
    
    .testimonial-content blockquote {
        font-size: 20px;
    }
}

/* Team/Client Section */
.team {
    background: var(--white);
    padding: 6rem 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto 0;
    align-items: center;
}

.client-logo {
    text-align: center;
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.client-logo:hover {
    transform: translateY(-5px);
    background: var(--light-gray);
}

.client-logo img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(0.3) brightness(1.1);
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0) brightness(1);
}

/* Override all existing styles */
body, .light-bg, .dark-bg, .intro {
    background: white !important;
    color: var(--text-dark) !important;
}

nav {
    background: white !important;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark) !important;
}

p {
    color: var(--text-gray) !important;
}

/* Video Card Styles */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.video-thumbnail iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
}

.video-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.video-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.video-duration {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-duration i {
    color: var(--primary-blue);
}

.watch-btn {
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.watch-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.training-logo {
    width: 120px;
    height: 120px;
    background: var(--light-blue-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .video-meta {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .watch-btn {
        align-self: stretch;
        justify-content: center;
    }
}

/* Blog Styles */
.blog-hero {
    background: var(--light-gray);
    padding: 120px 0 80px;
}

.blog-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.blog-category {
    margin-bottom: 20px;
}

.category-tag {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.blog-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.blog-meta span {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--primary-blue);
}

/* Blog Content */
.blog-content {
    background: white;
    padding: 80px 0;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section {
    margin-bottom: 60px;
}

.content-section .lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 32px;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.content-section p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Insight Box */
.insight-box {
    background: var(--light-blue-bg);
    border-left: 4px solid var(--primary-blue);
    padding: 32px;
    border-radius: 12px;
    margin: 40px 0;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.insight-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.insight-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.insight-content p {
    color: var(--text-gray);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Factors Section */
.factors-section {
    margin: 60px 0;
}

.factors-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    text-align: center;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.factor-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.factor-icon {
    width: 64px;
    height: 64px;
    background: var(--light-blue-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-blue);
    font-size: 24px;
}

.factor-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.factor-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Recommendation Box */
.recommendation-box {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 32px;
    margin: 40px 0;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.rec-icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.rec-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.rec-content p {
    color: var(--text-gray);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* CTA Link Box */
.cta-link-box {
    background: white;
    border: 2px solid var(--primary-blue);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin: 40px 0;
}

.cta-link-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.cta-link-box p {
    color: var(--text-gray);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
}

.comparison-btn {
    background: var(--primary-blue);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.comparison-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Responsive for Blog */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 32px;
    }
    
    .blog-subtitle {
        font-size: 18px;
    }
    
    .blog-meta {
        gap: 16px;
        justify-content: center;
    }
    
    .content-section .lead {
        font-size: 18px;
    }
    
    .content-section h2 {
        font-size: 28px;
    }
    
    .factors-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .insight-box,
    .recommendation-box {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .insight-box {
        padding: 24px;
    }
    
    .recommendation-box {
        padding: 24px;
    }
}

/* Comparison Page Styles */
.comparison-hero {
    background: var(--light-gray);
    padding: 120px 0 80px;
}

.comparison-header {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.comparison-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.comparison-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 48px;
}

/* VS Logos */
.vs-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
}

.logo-section {
    text-align: center;
}

.crm-logo {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.crm-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.vs-divider {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 800;
}

/* Comparison Intro */
.comparison-intro {
    background: white;
    padding: 80px 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.intro-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-text p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.intro-text a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.intro-text a:hover {
    text-decoration: underline;
}

/* Quick Overview */
.quick-overview {
    background: var(--light-gray);
    padding: 80px 0;
}

.quick-overview h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 48px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.overview-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.rating {
    text-align: right;
}

.stars {
    color: #fbbf24;
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
}

.score {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
}

.pros h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.pros li {
    padding: 6px 0;
    color: var(--text-gray);
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.pros li::before {
    content: '•';
    color: var(--green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.best-for h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.best-for p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Detailed Comparison */
.detailed-comparison {
    background: white;
    padding: 80px 0;
}

.detailed-comparison h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.comparison-table-wrapper {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 48px;
    border: 1px solid var(--border-light);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead tr {
    background: var(--light-gray);
}

.comparison-table th {
    padding: 24px 20px;
    text-align: center;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-light);
}

.table-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.table-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-gray);
    font-size: 15px;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--light-blue-bg);
}

.dynamics-cell.winner {
    background: #dcfce7;
    color: var(--green);
    font-weight: 600;
    position: relative;
}

.zoho-cell.winner {
    background: #dcfce7;
    color: var(--green);
    font-weight: 600;
    position: relative;
}

.winner::after {
    content: '✓';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green);
    font-weight: bold;
    font-size: 16px;
}

/* Comparison Image */
.comparison-image {
    text-align: center;
    margin: 48px 0;
}

.comparison-chart {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.image-caption {
    margin-top: 16px;
    color: var(--text-gray);
    font-size: 14px;
    font-style: italic;
}

/* Decision Matrix */
.decision-matrix {
    background: var(--light-gray);
    padding: 80px 0;
}

.decision-matrix h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 48px;
}

.matrix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.matrix-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.matrix-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.matrix-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.matrix-header i {
    color: var(--primary-blue);
    font-size: 24px;
}

.matrix-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.matrix-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.matrix-list li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.5;
    position: relative;
    padding-left: 24px;
}

.matrix-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

.matrix-footer {
    margin-top: auto;
    text-align: center;
}

.price-tag {
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Expert Recommendation */
.expert-recommendation {
    background: white;
    padding: 80px 0;
}

.recommendation-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.expert-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
}

.recommendation-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.recommendation-content p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

.recommendation-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.rec-btn {
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.rec-btn.primary {
    background: var(--primary-blue);
    color: white;
}

.rec-btn.secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.rec-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.rec-btn.primary:hover {
    background: #1d4ed8;
}

.rec-btn.secondary:hover {
    background: var(--primary-blue);
    color: white;
}

/* Mobile Responsive for Comparison */
@media (max-width: 768px) {
    .comparison-header h1 {
        font-size: 32px;
    }
    
    .vs-logos {
        flex-direction: column;
        gap: 24px;
    }
    
    .vs-divider {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .matrix-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 600px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 16px 12px;
        font-size: 14px;
    }
    
    .table-header {
        flex-direction: column;
        gap: 8px;
    }
    
    .table-logo {
        width: 24px;
        height: 24px;
    }
    
    .recommendation-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .rec-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* BizTalk Tools Specific Styles */
.tools-section {
    margin: 60px 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.tool-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.tool-icon {
    width: 56px;
    height: 56px;
    background: var(--light-blue-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 24px;
    flex-shrink: 0;
}

.tool-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.tool-description {
    flex: 1;
    margin-bottom: 20px;
}

.tool-description p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.tool-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.tool-type {
    background: var(--light-gray);
    color: var(--text-gray);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.tool-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.tool-link:hover {
    color: #1d4ed8;
}

/* Analysis Section */
.analysis-section {
    margin: 80px 0;
}

.analysis-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.analysis-item {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
}

.analysis-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.analysis-item h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.analysis-content > p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.tool-analysis {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tool-point {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--border-light);
    transition: all 0.2s ease;
}

.tool-point:hover {
    border-left-color: var(--primary-blue);
    box-shadow: var(--shadow);
}

.tool-point.bhm {
    border-left-color: #10b981;
}

.tool-point.notifier {
    border-left-color: #f59e0b;
}

.tool-point.biztalk360 {
    border-left-color: var(--primary-blue);
}

.tool-point.notifier-360 {
    border-left-color: var(--purple-start);
}

.tool-point strong {
    color: var(--text-dark);
    font-weight: 700;
}

.tool-point p,
.tool-point {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for BizTalk Tools */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .tool-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .analysis-item {
        padding: 24px;
    }
    
    .analysis-item h3 {
        font-size: 20px;
    }
    
    .tool-analysis {
        gap: 16px;
    }
}

/* CRM Dashboard Diagram */
.crm-dashboard {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
    max-width: 280px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #1d4ed8 0%, #9333ea 100%);
    border-radius: 12px;
    color: white;
    margin-bottom: 20px;
}

.dashboard-header i {
    font-size: 24px;
    color: white;
}

.dashboard-header span {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.dashboard-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light-blue-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.metric-item i {
    font-size: 18px;
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
}

.metric-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Training Dashboard Diagram */
.training-dashboard {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
    max-width: 280px;
    margin: 0 auto;
}

.training-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #1d4ed8 0%, #9333ea 100%);
    border-radius: 12px;
    color: white;
    margin-bottom: 20px;
}

.training-header i {
    font-size: 24px;
    color: white;
}

.training-header span {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.training-modules {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light-blue-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.module-item i {
    font-size: 18px;
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
}

.module-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* ===============================================
   About Us Page Styles
   =============================================== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #1d4ed8 0%, #9333ea 100%);
    color: white !important;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-header {
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 16px 0 20px;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.stat-item span {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Company Overview */
.company-overview {
    padding: 80px 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.overview-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.overview-text .lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.overview-text p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.company-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.highlight-card {
    background: var(--surface-light);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.highlight-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-start));
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 20px;
}

.highlight-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.highlight-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--surface-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.mv-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-start));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mv-icon i {
    font-size: 32px;
}

.mv-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1d4ed8 0%, #9333ea 100%);
    color: white !important;
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 32px;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-orange);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #e85a4f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(208, 88, 76, 0.3);
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
    margin: 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.story-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--primary-blue);
}

.story-logo {
    margin-bottom: 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-logo img {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
}

.story-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.story-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.story-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.story-link:hover {
    color: var(--purple-start);
    gap: 12px;
}

/* About Us Page - Services Overview */
.services-overview {
    padding: 80px 0;
    background: var(--surface-light);
}

.services-overview .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.services-overview .service-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 250px 1fr;
    align-items: center;
}

.services-overview .service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.services-overview .service-image {
    padding: 40px;
    background: var(--surface-light);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.services-overview .service-image img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

.services-overview .service-content {
    padding: 40px;
}

.services-overview .service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.services-overview .service-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.services-overview .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.services-overview .service-link:hover {
    color: var(--purple-start);
    gap: 12px;
}

/* Mobile Responsive for About Us */
@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-header h1 {
        font-size: 32px;
    }
    
    .about-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-text h2 {
        font-size: 28px;
    }
    
    .overview-text .lead {
        font-size: 18px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .mv-card {
        padding: 32px 24px;
    }
    
    .mv-card h3 {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        padding: 32px;
        border-bottom: 1px solid var(--border-light);
    }
    
    .service-content {
        padding: 32px 24px;
    }
}
    
    .tool-point {
        padding: 16px;
    }
}