/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5aa0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5aa0;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2c5aa0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}

.btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.hero-image {
    text-align: center;
    opacity: 0.8;
}

.hero-image i {
    color: rgba(255,255,255,0.3);
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Differentiators */
.differentiators {
    padding: 80px 0;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.differentiator {
    text-align: center;
    padding: 2rem;
}

.diff-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.diff-icon i {
    font-size: 2rem;
    color: white;
}

.differentiator h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.differentiator p {
    color: #666;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.testimonial-author h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .differentiators-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card,
    .testimonial {
        padding: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Mission Section */
.mission {
    padding: 80px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.6;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value {
    text-align: center;
    padding: 1.5rem;
}

.value i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.value h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.value p {
    color: #666;
    font-size: 0.9rem;
}

.mission-image {
    text-align: center;
    opacity: 0.6;
}

.mission-image i {
    color: #667eea;
}

/* Timeline */
.history {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #667eea;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #667eea;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 0 2rem;
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Leadership Team */
.leadership {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.member-photo i {
    color: white;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.member-title {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #667eea;
    color: white;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    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;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Certifications */
.certifications {
    padding: 80px 0;
    background: #f8f9fa;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
}

.cert-item i {
    color: #667eea;
    margin-bottom: 1.5rem;
}

.cert-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.cert-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: #28a745;
}

.notification-error {
    background: #dc3545;
}

.notification-info {
    background: #17a2b8;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 1rem;
    padding: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mission-text h2 {
        font-size: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        margin: 0;
    }

    .timeline-content {
        margin-left: 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .mission-values {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Services Page Styles */
.services-intro {
    padding: 80px 0;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

/* Service Categories */
.qa-services,
.cloud-services {
    padding: 80px 0;
}

.qa-services {
    background: #f8f9fa;
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-category {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.category-icon i {
    font-size: 1.5rem;
    color: white;
}

.category-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.category-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: #28a745;
    margin-right: 1rem;
    font-size: 0.9rem;
}

/* Service Process */
.service-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Service Benefits */
.service-benefits {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .service-categories {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }

    .category-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .service-category,
    .process-step,
    .benefit-item {
        padding: 2rem;
    }

    .intro-content h2 {
        font-size: 2rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.contact-methods {
    margin-top: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.method-info p {
    color: #666;
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 3px;
    margin-right: 0.75rem;
    margin-top: 2px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #667eea;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 15px 30px;
    margin-top: 1rem;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-container {
    margin-top: 2rem;
}

.map-placeholder {
    background: white;
    border-radius: 15px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content i {
    color: #667eea;
    margin-bottom: 2rem;
}

.map-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.map-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    .method-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-form h3 {
        font-size: 1.5rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .faq-item {
        padding: 2rem;
    }
}

/* Industries Page Styles */
.industries-intro {
    padding: 80px 0;
    text-align: center;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Industry Sections */
.industry-section {
    padding: 80px 0;
}

.industry-section:nth-child(even) {
    background: #f8f9fa;
}

.industry-content {
    max-width: 1200px;
    margin: 0 auto;
}

.industry-header {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
}

.industry-icon i {
    font-size: 2.5rem;
    color: white;
}

.industry-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.industry-title p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.industry-details {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.industry-challenges h3,
.industry-solutions h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.industry-challenges ul {
    list-style: none;
    padding: 0;
}

.industry-challenges li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.industry-challenges li i {
    color: #667eea;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.solution-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-3px);
}

.solution-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.solution-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.industry-benefits {
    margin-top: 3rem;
}

.industry-benefits h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit i {
    color: #28a745;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.benefit span {
    color: #555;
    font-weight: 500;
}

/* Industry Comparison Section */
.industry-comparison {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.comparison-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-5px);
}

.comparison-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.comparison-icon i {
    font-size: 2rem;
    color: white;
}

.comparison-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.comparison-item p {
    color: #666;
    line-height: 1.6;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.story-item:hover {
    transform: translateY(-5px);
}

.story-industry {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.story-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.story-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.story-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.metric {
    background: #f8f9fa;
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #e9ecef;
}

/* Responsive Design for Industries Page */
@media (max-width: 768px) {
    .industry-header {
        flex-direction: column;
        text-align: center;
    }

    .industry-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .industry-title h2 {
        font-size: 2rem;
    }

    .industry-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .intro-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .industry-section {
        padding: 60px 0;
    }

    .industry-title h2 {
        font-size: 1.8rem;
    }

    .industry-challenges h3,
    .industry-solutions h3,
    .industry-benefits h3 {
        font-size: 1.5rem;
    }

    .solution-item,
    .story-item,
    .comparison-item {
        padding: 2rem;
    }

    .story-metrics {
        justify-content: center;
    }

    .intro-stats {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Databricks Services Section */
.databricks-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.databricks-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.databricks-icon {
    background: linear-gradient(135deg, #ff3621, #ff6b4a) !important;
}

/* AI Accelerators Section */
.ai-accelerators {
    padding: 80px 0;
    background: #fff;
}

.accelerators-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.accelerators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.accelerator-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.accelerator-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.accelerator-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.accelerator-icon i {
    font-size: 2rem;
    color: white;
}

.accelerator-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.accelerator-card > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.accelerator-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.accelerator-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.accelerator-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.accelerator-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.tech-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Databricks and AI Sections */
@media (max-width: 768px) {
    .accelerators-grid {
        grid-template-columns: 1fr;
    }

    .databricks-services .service-categories {
        grid-template-columns: 1fr;
    }

    .accelerator-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .databricks-services,
    .ai-accelerators {
        padding: 60px 0;
    }

    .accelerator-icon {
        width: 60px;
        height: 60px;
    }

    .accelerator-icon i {
        font-size: 1.5rem;
    }

    .accelerator-card h3 {
        font-size: 1.2rem;
    }
}

/* AWS Cloud Services Section */
.cloud-services {
    padding: 80px 0;
    background: #fff;
}

.aws-icon {
    background: linear-gradient(135deg, #ff9900, #ffb84d) !important;
}

/* Azure Services Section */
.azure-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.azure-icon {
    background: linear-gradient(135deg, #0078d4, #50e6ff) !important;
}

/* AI Automation Services Section */
.ai-automation-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f0ff 0%, #eef5ff 50%, #f0fff5 100%);
}

.ai-auto-icon {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4) !important;
}

/* ============================================================
   ACCELERATOR PAGE & HOME ENHANCEMENTS
   ============================================================ */

/* Nav highlight for Accelerators link */
.nav-link-highlight {
    color: #ff6b35 !important;
    font-weight: 600;
}
.nav-link-highlight:hover {
    color: #e55a2b !important;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(8px);
    letter-spacing: 0.03em;
}

/* Hero KPI bar */
.hero-kpis {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0 2rem;
    flex-wrap: wrap;
}
.hero-kpi {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-kpi-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.hero-kpi-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
    margin-top: 0.25rem;
}

/* ============================================================
   ACCELERATORS TEASER (index.html)
   ============================================================ */
.accel-teaser {
    padding: 80px 0;
    background: #f8f9fc;
}
.accel-teaser-header {
    text-align: center;
    margin-bottom: 3rem;
}
.accel-teaser-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}
.accel-teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.accel-teaser-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.8rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    border: 1px solid #eee;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}
.accel-teaser-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.accel-teaser-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
}
.accel-teaser-icon.engineering { background: linear-gradient(135deg, #667eea, #764ba2); }
.accel-teaser-icon.migration   { background: linear-gradient(135deg, #f093fb, #f5576c); }
.accel-teaser-icon.genai       { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.accel-teaser-icon.ml          { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.accel-teaser-icon.analytics   { background: linear-gradient(135deg, #fa709a, #fee140); }
.accel-teaser-icon.governance  { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.accel-teaser-icon.aws         { background: linear-gradient(135deg, #ff9900, #e88600); }
.accel-teaser-icon.azure       { background: linear-gradient(135deg, #0078d4, #00bcf2); }
.accel-teaser-icon.ai-auto     { background: linear-gradient(135deg, #8b5cf6, #06b6d4); }

.accel-teaser-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.6rem; color: #222; }
.accel-teaser-card p  { font-size: 0.9rem; color: #666; flex: 1; line-height: 1.55; }
.accel-teaser-meta {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.accel-teaser-meta span {
    font-size: 0.78rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.accel-teaser-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 1rem;
    transition: gap 0.2s;
}
.accel-teaser-link:hover { gap: 0.7rem; }

/* ============================================================
   ACCELERATOR HERO
   ============================================================ */
.accel-hero {
    padding: 110px 0 70px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.accel-hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(102,126,234,0.25) 0%, transparent 70%);
    top: -200px; right: -200px;
    border-radius: 50%;
}
.accel-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,107,53,0.2);
    border: 1px solid rgba(255,107,53,0.5);
    color: #ff9a6c;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
}
.accel-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.accel-hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
}
.accel-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.accel-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.accel-stat-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.accel-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    margin-top: 0.3rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.accel-hero-cta { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}
.trust-bar-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: #555;
    font-weight: 500;
}
.trust-item i { color: #667eea; font-size: 1rem; }

/* ============================================================
   FILTER BAR
   ============================================================ */
.accel-filter-bar {
    background: #f8f9fc;
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #eee;
}
.filter-header { text-align: center; margin-bottom: 2rem; }
.filter-sub { color: #777; font-size: 1rem; }
.filter-controls { display: flex; flex-direction: column; gap: 1.2rem; }
.filter-group { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.filter-group label { font-weight: 600; color: #444; font-size: 0.9rem; min-width: 70px; }
.filter-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-pill {
    background: #fff;
    border: 1.5px solid #ddd;
    color: #555;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}
.filter-pill:hover { border-color: #667eea; color: #667eea; }
.filter-pill.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    color: #fff;
}

/* ============================================================
   ACCELERATOR CARD GRID
   ============================================================ */
.accel-catalog { padding: 3rem 0 5rem; background: #f8f9fc; }
.accel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}
.accel-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.25s, box-shadow 0.25s;
}
.accel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}
.accel-card-header { display: flex; align-items: flex-start; justify-content: space-between; }
.accel-card-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff; flex-shrink: 0;
}
.accel-card-icon.engineering { background: linear-gradient(135deg, #667eea, #764ba2); }
.accel-card-icon.migration   { background: linear-gradient(135deg, #f093fb, #f5576c); }
.accel-card-icon.genai       { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.accel-card-icon.ml          { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.accel-card-icon.analytics   { background: linear-gradient(135deg, #fa709a, #fee140); }
.accel-card-icon.governance  { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.accel-card-icon.aws         { background: linear-gradient(135deg, #ff9900, #e88600); }
.accel-card-icon.azure       { background: linear-gradient(135deg, #0078d4, #00bcf2); }
.accel-card-icon.ai-auto     { background: linear-gradient(135deg, #8b5cf6, #06b6d4); }

.accel-card-tags { display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem; }
.accel-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    letter-spacing: 0.02em;
}
.tag-industry { background: #e8f4fd; color: #1565c0; }
.tag-usecase  { background: #f0faf4; color: #2e7d32; }

.accel-card-title { font-size: 1.15rem; font-weight: 700; color: #1a1a2e; line-height: 1.3; }
.accel-card-desc  { font-size: 0.9rem; color: #666; line-height: 1.6; }

.accel-outcomes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.accel-outcome {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: #444;
    font-weight: 500;
}
.accel-outcome i { color: #667eea; width: 14px; }

.accel-includes h4 { font-size: 0.85rem; color: #999; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.6rem; }
.accel-includes ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.accel-includes li { font-size: 0.88rem; color: #555; display: flex; align-items: center; gap: 0.5rem; }
.accel-includes li i { color: #43e97b; font-size: 0.75rem; }

.accel-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
}
.accel-tech span {
    background: #f0f2ff;
    color: #667eea;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
}
.accel-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    align-self: flex-start;
}
.accel-cta:hover { opacity: 0.9; transform: translateX(3px); }

.no-results {
    text-align: center;
    padding: 4rem;
    color: #aaa;
    width: 100%;
}
.no-results p { margin: 1rem 0 1.5rem; font-size: 1.1rem; }

/* ============================================================
   DELIVERY PROCESS
   ============================================================ */
.accel-process {
    padding: 80px 0;
    background: #fff;
}
.process-steps-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    overflow-x: auto;
}
.process-step-item {
    flex: 1;
    min-width: 200px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}
.process-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: #667eea;
    letter-spacing: 0.1em;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
}
.process-step-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff;
    margin: 0 auto 1rem;
}
.process-step-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: #1a1a2e; }
.process-step-item p  { font-size: 0.88rem; color: #666; line-height: 1.55; }
.process-arrow {
    display: flex;
    align-items: center;
    padding-top: 3rem;
    color: #ccc;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ============================================================
   CASE STUDY SNAPSHOTS
   ============================================================ */
.accel-cases {
    padding: 80px 0;
    background: #f8f9fc;
}
.case-snap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.case-snap {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.case-snap-icon {
    width: 55px; height: 55px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff;
}
.case-snap-icon.financial   { background: linear-gradient(135deg, #2c5aa0, #1a3a6e); }
.case-snap-icon.retail      { background: linear-gradient(135deg, #f093fb, #f5576c); }
.case-snap-icon.healthcare  { background: linear-gradient(135deg, #43e97b, #38f9d7); }

.case-snap-industry {
    font-size: 0.75rem;
    font-weight: 700;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.case-snap-content h3 { font-size: 1rem; font-weight: 600; color: #1a1a2e; margin: 0.4rem 0 0.6rem; }
.case-snap-content p  { font-size: 0.9rem; color: #666; line-height: 1.55; }
.case-snap-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}
.case-snap-metrics span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #444;
    font-weight: 500;
}
.case-snap-metrics i { color: #43e97b; }

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.accel-bottom-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.accel-cta-box {
    text-align: center;
    color: #fff;
}
.accel-cta-box h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.accel-cta-box p  { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 650px; margin: 0 auto 2rem; line-height: 1.6; }
.accel-cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.accel-cta-fine {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
}
.accel-cta-fine i { color: rgba(255,255,255,0.9); }

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 768px) {
    .accel-hero h1 { font-size: 1.9rem; }
    .accel-hero-stats { gap: 1.5rem; }
    .hero-kpis { gap: 1rem; }
    .hero-kpi-num { font-size: 1.3rem; }
    .accel-grid { grid-template-columns: 1fr; }
    .accel-teaser-grid { grid-template-columns: 1fr; }
    .process-steps-row { flex-direction: column; align-items: center; }
    .process-arrow { display: none; }
    .accel-outcomes { grid-template-columns: 1fr; }
    .trust-bar-grid { gap: 1rem; }
    .accel-cta-fine { gap: 1rem; flex-direction: column; align-items: center; }
    .filter-group { flex-direction: column; align-items: flex-start; }
}
