/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #3e3a39;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #0075bd;
    color: white;
}

.btn-primary:hover {
    background-color: #1868b1;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #0075bd;
    border: 2px solid #0075bd;
}

.btn-secondary:hover {
    background-color: #0075bd;
    color: white;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
    padding: 1rem 0;
    transition: padding 0.3s ease;
}

.header.scrolled .navbar {
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.nav-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #3e3a39;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
    transition: height 0.3s ease;
}

.header.scrolled .nav-logo .logo {
    height: 35px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0075bd;
    white-space: nowrap;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #3e3a39;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
    display: block;
}

.nav-link:hover,
.nav-link.active {
    color: #0075bd;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0075bd;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Contact Information */
.nav-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0075bd;
    font-weight: 500;
    font-size: 1rem;
    flex-shrink: 0;
}

.nav-contact i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.contact-number {
    white-space: nowrap;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-toggle:hover {
    background-color: rgba(0, 117, 189, 0.1);
}

.nav-toggle:focus {
    outline: 2px solid #0075bd;
    outline-offset: 2px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #3e3a39;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: #0075bd;
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: #0075bd;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9)),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 117, 189, 0.1), rgba(1, 164, 238, 0.1));
    z-index: -1;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.hero-content {
    z-index: 1;
    width: 100%;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 117, 189, 0.1);
    border: 1px solid rgba(0, 117, 189, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    color: #0075bd;
}

.hero-badge i {
    color: #01a4ee;
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    color: #2c3e50;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.title-sub {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    opacity: 0.9;
    color: #01a4ee;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
    color: #555;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #444;
}

.feature-item i {
    color: #01a4ee;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #01a4ee;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    color: #666;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-illustration {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 117, 189, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #0075bd;
}

.scroll-arrow:hover {
    border-color: #0075bd;
    background: rgba(0, 117, 189, 0.1);
}

.scroll-text {
    font-size: 0.8rem;
    opacity: 0.7;
    color: #666;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #3e3a39;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #0075bd;
}

/* Alternating section backgrounds */
.about,
.software {
    background-color: #f9f9f9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #3e3a39 100%);
    color: white;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0075bd, #01a4ee);
}

.footer-main {
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Footer Sections */
.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h5 {
    color: #01a4ee;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-logo {
    position: relative;
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo .logo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.contact-item i {
    color: #01a4ee;
    font-size: 0.9rem;
    width: 16px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #01a4ee;
    padding-left: 5px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #01a4ee;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 5px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.copyright {
    text-align: left;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0 0 0.5rem 0;
}

.legal-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #01a4ee;
}

.separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* Footer Certifications */
.footer-certifications {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.cert-item i {
    color: #01a4ee;
    font-size: 0.9rem;
}

/* Footer Social */
.footer-social {
    text-align: right;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-bottom: 0.5rem;
}

.social-link {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #01a4ee;
    color: white;
    transform: translateY(-2px);
}

.footer-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Universal animate-in class for scroll animations */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Force visibility for all potentially hidden elements */
.service-card,
.software-card,
.ai-solution-card,
.advantage-card,
.industry-card,
.case-card,
.process-step,
.step-item {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.col-1 {
    flex: 0 0 8.333333%;
}

.col-2 {
    flex: 0 0 16.666667%;
}

.col-3 {
    flex: 0 0 25%;
}

.col-4 {
    flex: 0 0 33.333333%;
}

.col-6 {
    flex: 0 0 50%;
}

.col-8 {
    flex: 0 0 66.666667%;
}

.col-12 {
    flex: 0 0 100%;
}

/* Card Component */
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-title {
    color: #0075bd;
    margin-bottom: 1rem;
}

.card-text {
    color: #666;
    line-height: 1.6;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0075bd;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #1868b1;
    transform: translateY(-3px);
}

/* F
orm Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #3e3a39;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.form-control:focus {
    outline: none;
    border-color: #0075bd;
    box-shadow: 0 0 0 3px rgba(0, 117, 189, 0.1);
}

.form-control.error {
    border-color: #dc3545;
}

.form-control.error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.field-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.form-message {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.close-message {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
}

.close-message:hover {
    opacity: 1;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Additional utility classes */
.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.d-inline-block {
    display: inline-block;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.m-0 {
    margin: 0;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/ * Mobile Menu Overlay */ .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Enhanced mobile menu styles */
@media (max-width: 767px) {
    .nav-menu {
        transform: translateX(-100%);
        left: 0;
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu .nav-item {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active .nav-item:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active .nav-item:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active .nav-item:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-menu.active .nav-item:nth-child(5) {
        transition-delay: 0.5s;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover::after {
        width: 0;
    }

    .nav-link:active {
        background-color: rgba(0, 117, 189, 0.1);
    }

    .nav-toggle:hover {
        background-color: transparent;
    }

    .nav-toggle:active {
        background-color: rgba(0, 117, 189, 0.2);
    }
}

/* 
Development Testing Styles */
.nav-test-indicator {
    position: fixed;
    top: 80px;
    right: 20px;
    background: rgba(0, 117, 189, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 1001;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.nav-test-indicator.show {
    opacity: 1;
    transform: translateY(0);
}

.nav-test-indicator.success {
    background: rgba(40, 167, 69, 0.9);
}

.nav-test-indicator.error {
    background: rgba(220, 53, 69, 0.9);
}

/* Hide test indicator in production */
@media (min-width: 1px) {
    .nav-test-indicator {
        display: none;
    }
}

/* Show only on localhost for development */
body[data-env="development"] .nav-test-indicator {
    display: block;
}

/* 
Advanced Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced button hover effects */
.btn-primary {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 117, 189, 0.3);
}

.btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 117, 189, 0.2);
}

/* Feature items hover animation */
.feature-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item:hover i {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Stats animation enhancement */
.stat-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Hero badge pulse animation */
.hero-badge {
    animation: fadeInUp 1s ease-out, pulse-glow 3s ease-in-out 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(1, 164, 238, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(1, 164, 238, 0.6);
    }
}

/* Scroll indicator enhanced animation */
.scroll-arrow {
    animation: bounce 2s infinite, rotate-pulse 4s ease-in-out infinite;
}

@keyframes rotate-pulse {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(90deg) scale(1.1);
    }

    50% {
        transform: rotate(180deg) scale(1);
    }

    75% {
        transform: rotate(270deg) scale(1.1);
    }
}

/* Hero illustration floating animation */
.hero-illustration {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Background animation */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(1, 164, 238, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 117, 189, 0.1) 0%, transparent 50%);
    animation: backgroundShift 10s ease-in-out infinite;
}

@keyframes backgroundShift {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Text typing effect for title */
.title-main.typing {
    overflow: hidden;
    border-right: 3px solid #01a4ee;
    white-space: nowrap;
    animation: typing 3s steps(20, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #01a4ee;
    }
}

/* Staggered animation for hero features */
.hero-features .feature-item:nth-child(1) {
    animation-delay: 0.6s;
}

.hero-features .feature-item:nth-child(2) {
    animation-delay: 0.8s;
}

.hero-features .feature-item:nth-child(3) {
    animation-delay: 1s;
}

/* Enhanced mobile animations */
@media (max-width: 767px) {
    .hero-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        animation: fadeInUp 0.8s ease-out 0.8s both;
        overflow-x: visible;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        animation: fadeInUp 0.8s ease-out 1s both;
    }

    .hero-badge {
        animation: fadeInUp 0.8s ease-out;
    }

    .title-main {
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .title-sub {
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }

    .hero-description {
        animation: fadeInUp 0.8s ease-out 0.6s both;
    }

    .hero-stats {
        animation: fadeInUp 0.8s ease-out 1.2s both;
    }
}

/* Abo
ut Section Styles */
.about {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 117, 189, 0.1);
    color: #0075bd;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    padding-right: 2rem;
}

.about-intro,
.about-mission,
.about-values {
    margin-bottom: 3rem;
}

.about-intro h3,
.about-mission h3,
.about-values h3 {
    color: #0075bd;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.about-intro h3::after,
.about-mission h3::after,
.about-values h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #01a4ee;
}

.about-intro p,
.about-mission p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.about-mission blockquote {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #0075bd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 1.5rem 0;
}

.about-mission blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #0075bd;
    margin: 0;
    text-align: center;
}

.about-mission .fa-quote-left,
.about-mission .fa-quote-right {
    color: #01a4ee;
    font-size: 1.5rem;
    opacity: 0.7;
}

.about-mission .fa-quote-left {
    float: left;
    margin-right: 0.5rem;
}

.about-mission .fa-quote-right {
    float: right;
    margin-left: 0.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.value-item i {
    font-size: 2.5rem;
    color: #0075bd;
    margin-bottom: 1rem;
    display: block;
}

.value-item h4 {
    color: #3e3a39;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* About Image Section */
.about-image {
    padding-left: 2rem;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.company-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 117, 189, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.image-container:hover .company-image {
    transform: scale(1.1);
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 500;
}

.company-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item i {
    font-size: 1.5rem;
    color: #0075bd;
    width: 30px;
    text-align: center;
}

.info-content h4 {
    color: #3e3a39;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Animation classes for scroll reveal */
.about-text,
.about-image {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about-image.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-text.animate-in,
.about-image.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.value-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.value-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.value-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/ * Advantages Section Styles */ .advantages {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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="%23e0e0e0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.advantages-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.advantages-content {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0075bd, #01a4ee);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.advantage-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.advantage-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-content h3 {
    color: #3e3a39;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.advantage-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.advantage-features li i {
    color: #01a4ee;
    font-size: 0.8rem;
}

/* Advantages Stats */
.advantages-stats {
    position: relative;
    z-index: 1;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0075bd;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Floating animation for advantage cards */
@keyframes float-card {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.advantage-card:nth-child(odd) {
    animation: float-card 6s ease-in-out infinite;
}

.advantage-card:nth-child(even) {
    animation: float-card 6s ease-in-out infinite reverse;
    animation-delay: 3s;
}

/* Hover effects for stats */
.stat-card:hover .stat-number {
    color: #01a4ee;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/ * Services Section Styles */ .services {
    padding: 100px 0;
    background: white;
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-content {
    margin-bottom: 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0075bd, #01a4ee);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 117, 189, 0.2);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .icon-bg {
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    transform: scale(1.1);
}

.service-card:hover .service-icon i {
    color: white;
    transform: scale(1.1);
}

.service-content h3 {
    color: #3e3a39;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #555;
    font-size: 0.95rem;
}

.service-features .feature-item i {
    color: #01a4ee;
    font-size: 0.9rem;
}

.service-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(0, 117, 189, 0.1);
    color: #0075bd;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Service Overlay */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 117, 189, 0.95), rgba(1, 164, 238, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
    z-index: 100;
    border-radius: 20px;
    pointer-events: none;
}

.service-card:hover .service-overlay {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.overlay-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.service-cta {
    display: inline-block;
    background: white;
    color: #0075bd;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Service Process Flow */
.service-process {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.process-title {
    color: #3e3a39;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.service-process .step-content h4 {
    color: #3e3a39;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-process .step-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.process-arrow {
    color: #0075bd;
    font-size: 1.5rem;
    opacity: 0.6;
    flex-shrink: 0;
}

/* Floating animation for service cards */
@keyframes float-service {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.service-card:nth-child(1) {
    animation: float-service 8s ease-in-out infinite;
}

.service-card:nth-child(2) {
    animation: float-service 8s ease-in-out infinite;
    animation-delay: 2.5s;
}

.service-card:nth-child(3) {
    animation: float-service 8s ease-in-out infinite;
    animation-delay: 5s;
}

/* Enh
anced Service Card Interactions */
.service-card {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.service-card:hover {
    animation-play-state: paused;
}

/* Ripple effect for service cards */
.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 117, 189, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.service-card.ripple::after {
    width: 300px;
    height: 300px;
}

/* Glowing border effect */
.service-card {
    border: 2px solid transparent;
    background-clip: padding-box;
}

.service-card:hover {
    border-image: linear-gradient(45deg, #0075bd, #01a4ee) 1;
    border-image-slice: 1;
}

/* Icon rotation on hover */
.service-icon {
    overflow: hidden;
}

.service-card:hover .service-icon i {
    animation: iconRotate 0.6s ease-in-out;
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1.1);
    }
}

/* Feature items slide-in effect */
.service-features .feature-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.service-card:hover .service-features .feature-item {
    opacity: 1;
    transform: translateX(0);
}

.service-card:hover .service-features .feature-item:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:hover .service-features .feature-item:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card:hover .service-features .feature-item:nth-child(3) {
    transition-delay: 0.3s;
}

.service-card:hover .service-features .feature-item:nth-child(4) {
    transition-delay: 0.4s;
}

/* Tech tags animation */
.tech-tag {
    transition: all 0.3s ease;
    transform: scale(0.9);
    opacity: 0.8;
}

.service-card:hover .tech-tag {
    transform: scale(1);
    opacity: 1;
    background: linear-gradient(45deg, rgba(0, 117, 189, 0.2), rgba(1, 164, 238, 0.2));
}

/* Service overlay entrance animation */
.service-overlay {
    backdrop-filter: blur(10px);
}

.service-overlay .overlay-content {
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.service-card:hover .service-overlay .overlay-content {
    transform: scale(1);
}

/* Process step pulse effect */
.process-step {
    cursor: pointer;
}

.process-step:hover .step-number {
    animation: pulse-step 1s ease-in-out infinite;
}

@keyframes pulse-step {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 117, 189, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 117, 189, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 117, 189, 0);
    }
}

/* Mobile touch interactions */
@media (hover: none) and (pointer: coarse) {
    .service-card:active {
        transform: scale(0.98);
    }

    .service-overlay {
        opacity: 0;
        visibility: hidden;
    }

    .service-card.touch-active .service-overlay {
        opacity: 1;
        visibility: visible;
    }

    .service-features .feature-item {
        opacity: 1;
        transform: translateX(0);
    }

    .tech-tag {
        transform: scale(1);
        opacity: 1;
    }
}

/* Softwa
re Section Styles */
.software {
    padding: 100px 0;
    background: #f9f9f9;
}

.software-header {
    text-align: center;
    margin-bottom: 4rem;
}

.software-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Software Grid */
.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.software-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.software-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0075bd, #01a4ee);
}

.software-card.featured::before {
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.software-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 117, 189, 0.2);
}

.software-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Software Badge */
.software-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.software-badge.new {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.software-card.featured .software-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

/* Software Header */
.software-header-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.software-logo {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.logo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.software-info h3 {
    color: #3e3a39;
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    z-index: 10;
    position: relative;
}

/* Fix software logo placeholder overlap */
.software-card .logo-placeholder {
    z-index: 1;
}

.software-card .software-info {
    z-index: 10;
    position: relative;
}

.software-version {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.software-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-text {
    color: #666;
    font-size: 0.8rem;
}

/* Software Description */
.software-description {
    margin-bottom: 1.5rem;
}

.software-description p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Software Features */
.software-features {
    margin-bottom: 2rem;
}

.software-features h4 {
    color: #3e3a39;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.features-list li i {
    color: #01a4ee;
    font-size: 0.8rem;
}

/* Software Actions */
.software-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.software-actions .btn {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

/* Software Comparison Table */
.software-comparison {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.software-comparison.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.comparison-title {
    text-align: center;
    color: #3e3a39;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.comparison-table-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #3e3a39;
}

.comparison-table tbody tr:hover {
    background: rgba(0, 117, 189, 0.05);
}

.text-success {
    color: #28a745;
}

.text-muted {
    color: #6c757d;
}

/* Software Support */
.software-support {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.software-support.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.support-text h3 {
    color: #3e3a39;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.support-item i {
    font-size: 2rem;
    color: #0075bd;
    margin-top: 0.25rem;
}

.support-info h4 {
    color: #3e3a39;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.support-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.support-image {
    text-align: center;
}

.support-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Floating animation for software cards */
@keyframes float-software {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.software-card:nth-child(1) {
    animation: float-software 6s ease-in-out infinite;
}

.software-card:nth-child(2) {
    animation: float-software 6s ease-in-out infinite;
    animation-delay: 2s;
}

.software-card:nth-child(3) {
    animation: float-software 6s ease-in-out infinite;
    animation-delay: 4s;
}

.software-card:hover {
    animation-play-state: paused;
}

/* 
Enhanced Product Display Animations */

/* Software card entrance animations */
.software-card {
    animation-fill-mode: both;
}

.software-card:nth-child(1) {
    animation-delay: 0.1s;
}

.software-card:nth-child(2) {
    animation-delay: 0.3s;
}

.software-card:nth-child(3) {
    animation-delay: 0.5s;
}

/* Logo animations */
.software-logo {
    transition: all 0.4s ease;
}

.software-card:hover .software-logo {
    animation: logoSpin 0.8s ease-in-out;
}

@keyframes logoSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1.1);
    }
}

/* Badge animations */
.software-badge {
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 117, 189, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 117, 189, 0);
    }
}

.software-badge.new {
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    from {
        box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
    }

    to {
        box-shadow: 0 0 20px rgba(40, 167, 69, 0.8);
    }
}

/* Feature list animations */
.features-list {
    overflow: hidden;
}

.features-list li {
    animation: slideInLeft 0.6s ease-out both;
}

.features-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.features-list li:nth-child(2) {
    animation-delay: 0.2s;
}

.features-list li:nth-child(3) {
    animation-delay: 0.3s;
}

.features-list li:nth-child(4) {
    animation-delay: 0.4s;
}

.features-list li:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Rating stars animation */
.stars i {
    animation: starTwinkle 2s ease-in-out infinite;
}

.stars i:nth-child(1) {
    animation-delay: 0s;
}

.stars i:nth-child(2) {
    animation-delay: 0.2s;
}

.stars i:nth-child(3) {
    animation-delay: 0.4s;
}

.stars i:nth-child(4) {
    animation-delay: 0.6s;
}

.stars i:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Software actions button animations */
.software-actions .btn {
    position: relative;
    overflow: hidden;
}

.software-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.software-actions .btn:hover::before {
    left: 100%;
}

/* Comparison table animations */
.comparison-table tbody tr {
    animation: fadeInUp 0.6s ease-out both;
}

.comparison-table tbody tr:nth-child(1) {
    animation-delay: 0.1s;
}

.comparison-table tbody tr:nth-child(2) {
    animation-delay: 0.2s;
}

.comparison-table tbody tr:nth-child(3) {
    animation-delay: 0.3s;
}

.comparison-table tbody tr:nth-child(4) {
    animation-delay: 0.4s;
}

.comparison-table tbody tr:nth-child(5) {
    animation-delay: 0.5s;
}

.comparison-table tbody tr:nth-child(6) {
    animation-delay: 0.6s;
}

/* Support section animations */
.support-item {
    animation: slideInRight 0.8s ease-out both;
}

.support-item:nth-child(1) {
    animation-delay: 0.2s;
}

.support-item:nth-child(2) {
    animation-delay: 0.4s;
}

.support-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tech tags animation */
.tech-tag {
    animation: tagFloat 4s ease-in-out infinite;
}

.tech-tag:nth-child(1) {
    animation-delay: 0s;
}

.tech-tag:nth-child(2) {
    animation-delay: 1s;
}

.tech-tag:nth-child(3) {
    animation-delay: 2s;
}

@keyframes tagFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Software card flip animation on click */
.software-card.flipped {
    animation: cardFlip 0.8s ease-in-out;
}

@keyframes cardFlip {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(90deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}

/* Hover glow effect for featured card */
.software-card.featured {
    position: relative;
}

.software-card.featured::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: gradientShift 3s ease-in-out infinite;
}

.software-card.featured:hover::after {
    opacity: 0.7;
}

@keyframes gradientShift {

    0%,
    100% {
        background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
    }

    50% {
        background: linear-gradient(45deg, #f7931e, #ff6b35, #f7931e);
    }
}

/* Loading animation for buttons */
.btn.loading {
    pointer-events: none;
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: buttonSpin 1s linear infinite;
}

@keyframes buttonSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive animations */
@media (max-width: 767px) {
    .software-card {
        animation: none;
    }

    .software-card:hover {
        animation: none;
    }

    .features-list li {
        animation: fadeIn 0.6s ease-out both;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    .software-card,
    .software-badge,
    .features-list li,
    .stars i,
    .tech-tag,
    .support-item,
    .comparison-table tbody tr {
        animation: none;
    }

    .software-card:hover .software-logo {
        animation: none;
    }
}

/* A
I Solutions Section Styles */
.ai-solutions {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.ai-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 0 10 L 10 10 M 10 0 L 10 20 M 10 10 L 20 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
    pointer-events: none;
}

.ai-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.ai-header .section-badge {
    background: rgba(1, 164, 238, 0.2);
    color: #01a4ee;
    border: 1px solid rgba(1, 164, 238, 0.3);
}

.ai-header .section-title {
    color: white;
}

.ai-header .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.ai-content {
    position: relative;
    z-index: 1;
}

/* AI Solutions Grid */
.ai-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.ai-solution-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.ai-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #01a4ee, #0075bd);
}

.ai-solution-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(1, 164, 238, 0.3);
    box-shadow: 0 20px 40px rgba(1, 164, 238, 0.2);
}

.ai-solution-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Solution Header */
.solution-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.solution-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #01a4ee, #0075bd);
    flex-shrink: 0;
}

.solution-icon i {
    font-size: 2.5rem;
    color: white;
    z-index: 2;
    position: relative;
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #01a4ee, #0075bd);
    border-radius: 50%;
    opacity: 0.3;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.solution-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.solution-tagline {
    color: #01a4ee;
    font-size: 1rem;
    font-style: italic;
    margin: 0;
}

/* Solution Description */
.solution-description {
    margin-bottom: 2rem;
}

.solution-description p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Solution Features */
.solution-features {
    margin-bottom: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(1, 164, 238, 0.1);
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #01a4ee;
    margin-top: 0.25rem;
}

.feature-content h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Solution Benefits */
.ai-solutions .solution-benefits h4 {
    color: #01a4ee !important;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.benefits-list li i {
    color: #01a4ee;
    font-size: 1rem;
}

/* AI Architecture */
.ai-architecture {
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.ai-architecture.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.architecture-title {
    text-align: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.architecture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.architecture-diagram {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.arch-layer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.arch-layer:hover {
    background: rgba(1, 164, 238, 0.1);
    border-color: rgba(1, 164, 238, 0.3);
    transform: translateX(10px);
}

.layer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.layer-header i {
    font-size: 1.5rem;
    color: #01a4ee;
}

.layer-header h4 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.layer-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.layer-item {
    background: rgba(1, 164, 238, 0.2);
    color: #01a4ee;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Architecture Description */
.architecture-description h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.tech-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tech-item i {
    font-size: 2rem;
    color: #01a4ee;
    margin-top: 0.25rem;
}

.tech-content h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tech-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* AI Implementation */
.ai-implementation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.ai-implementation.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.implementation-title {
    text-align: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.implementation-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.step-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #01a4ee, #0075bd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.step-icon::before {
    display: none;
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(1, 164, 238, 0.4);
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.ai-implementation .step-content h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.ai-implementation .step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.step-connector {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #01a4ee, #0075bd);
    flex-shrink: 0;
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid #0075bd;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Floating particles animation */
.ai-solutions::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(1, 164, 238, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 117, 189, 0.1) 0%, transparent 50%);
    animation: particleFloat 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particleFloat {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* AI Sce
narios Section Styles */
.ai-scenarios {
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.ai-scenarios.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scenarios-title {
    text-align: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.scenario-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.scenario-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(1, 164, 238, 0.3);
    box-shadow: 0 20px 40px rgba(1, 164, 238, 0.2);
}

.scenario-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scenario-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.scenario-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.scenario-card:hover .scenario-img {
    transform: scale(1.1);
}

.scenario-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 164, 238, 0.8), rgba(0, 117, 189, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.scenario-card:hover .scenario-overlay {
    opacity: 1;
}

.overlay-icon {
    font-size: 3rem;
    color: white;
    animation: iconBounce 0.6s ease-in-out;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.scenario-content {
    padding: 2rem;
}

.scenario-content h4 {
    color: #01a4ee;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scenario-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.scenario-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.scenario-stats .stat-item {
    text-align: center;
}

.scenario-stats .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #01a4ee;
    line-height: 1;
}

.scenario-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.scenario-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.scenario-tags .tag {
    background: rgba(1, 164, 238, 0.2);
    color: #01a4ee;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(1, 164, 238, 0.3);
}

/* Success Cases */
.success-cases {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.success-cases.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.cases-title {
    text-align: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.cases-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.case-item {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    animation: slideIn 0.5s ease-in-out;
}

.case-item.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.case-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.case-logo {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.case-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.case-logo .logo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.case-info h5 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.case-industry {
    color: #01a4ee;
    font-size: 0.9rem;
    margin: 0;
}

.case-description {
    margin-bottom: 1.5rem;
}

.case-description p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.6;
    font-size: 1.1rem;
    position: relative;
    padding-left: 1rem;
}

.case-description p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 2rem;
    color: #01a4ee;
    font-family: serif;
}

.case-results {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.result-item i {
    color: #01a4ee;
    font-size: 1rem;
}

/* Cases Navigation */
.cases-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.nav-btn {
    background: rgba(1, 164, 238, 0.2);
    border: 1px solid rgba(1, 164, 238, 0.3);
    color: #01a4ee;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(1, 164, 238, 0.3);
    transform: scale(1.1);
}

.nav-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #01a4ee;
    transform: scale(1.2);
}

/* AI Consultation */
.ai-consultation {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.ai-consultation.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.consultation-content h4 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.consultation-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.consultation-actions .btn {
    min-width: 180px;
}

/* Indu
stry Solutions Section Styles */
.industry-solutions {
    padding: 100px 0;
    background: white;
    position: relative;
}

.industry-header {
    text-align: center;
    margin-bottom: 4rem;
}

.industry-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Pharmaceutical Showcase */
.industry-showcase {
    margin-bottom: 5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.industry-showcase.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.industry-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 117, 189, 0.1);
    color: #0075bd;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.showcase-text h3 {
    color: #3e3a39;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.industry-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Solution Highlights */
.solution-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: white;
}

.highlight-content h4 {
    color: #3e3a39;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Solution Benefits */
.solution-benefits h4 {
    color: #3e3a39;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.benefit-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0075bd;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.benefit-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Showcase Visual */
.showcase-visual {
    position: relative;
}

.visual-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.solution-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 117, 189, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.visual-container:hover .visual-overlay {
    opacity: 1;
}

.visual-container:hover .solution-image {
    transform: scale(1.1);
}

.visual-overlay .overlay-content {
    text-align: center;
    color: white;
}

.visual-overlay i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.visual-overlay span {
    font-size: 1.1rem;
    font-weight: 500;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 117, 189, 0.1);
    color: #0075bd;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 117, 189, 0.2);
}

.feature-tag i {
    font-size: 0.8rem;
}

/* Other Industries */
.other-industries {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.other-industries.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.other-title {
    text-align: center;
    color: #3e3a39;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
    position: relative;
}

.other-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #0075bd;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.industry-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 117, 189, 0.3);
}

.industry-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
}

.industry-icon i {
    font-size: 1.8rem;
    color: white;
}

.industry-info h4 {
    color: #3e3a39;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.industry-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.industry-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.industry-features li {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.industry-features li::before {
    content: '�?;
 color: #01a4ee;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.industry-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.industry-stats .stat {
    background: rgba(0, 117, 189, 0.1);
    color: #0075bd;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

/* Floating animation for industry cards */
@keyframes float-industry {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.industry-card:nth-child(1) {
    animation: float-industry 6s ease-in-out infinite;
}

.industry-card:nth-child(2) {
    animation: float-industry 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

.industry-card:nth-child(3) {
    animation: float-industry 6s ease-in-out infinite;
    animation-delay: 3s;
}

.industry-card:nth-child(4) {
    animation: float-industry 6s ease-in-out infinite;
    animation-delay: 4.5s;
}

.industry-card:hover {
    animation-play-state: paused;
}

/* Success
 Cases Showcase Styles */
.success-showcase {
    margin-top: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.success-showcase.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.showcase-title {
    text-align: center;
    color: #3e3a39;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
    position: relative;
}

.showcase-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #0075bd;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.case-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0075bd, #01a4ee);
}

.case-card.featured::before {
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.case-industry-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 117, 189, 0.1);
    color: #0075bd;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.case-featured-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-client {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.client-logo {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.client-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.client-logo .logo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.client-info h4 {
    color: #3e3a39;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.client-description {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.case-challenge,
.case-solution,
.case-results {
    margin-bottom: 1.5rem;
}

.case-challenge h5,
.case-solution h5,
.case-results h5 {
    color: #0075bd;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.case-challenge p,
.case-solution p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.solution-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-points li {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.solution-points li::before {
    content: '�?;
 color: #01a4ee;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Results Grid (for featured case) */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.result-item {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 117, 189, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 117, 189, 0.1);
}

.result-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0075bd;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.result-label {
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Results Summary (for other cases) */
.results-summary {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.summary-item {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    background: rgba(0, 117, 189, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 117, 189, 0.1);
}

.summary-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0075bd;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.summary-label {
    color: #666;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Case Testimonial */
.case-testimonial {
    background: rgba(0, 117, 189, 0.05);
    border-left: 4px solid #0075bd;
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
    margin-top: 1.5rem;
}

.case-testimonial blockquote {
    color: #555;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
}

.case-testimonial cite {
    color: #0075bd;
    font-size: 0.9rem;
    font-weight: 500;
    font-style: normal;
}

/* Partners Section */
.partners-section {
    text-align: center;
    padding: 3rem 0;
    background: rgba(0, 117, 189, 0.02);
    border-radius: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.partners-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.partners-title {
    color: #3e3a39;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.partner-logo {
    position: relative;
    width: 180px;
    height: 135px;
    margin: 2rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.15);
}

.partner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    transition: all 0.3s ease;
}

.partner-logo:hover .partner-img {
    filter: brightness(1.1);
}

.partner-logo .partner-placeholder {
    display: none;
}

/* Floating animation for case cards */
@keyframes float-case {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.case-card:nth-child(1) {
    animation: float-case 8s ease-in-out infinite;
}

.case-card:nth-child(2) {
    animation: float-case 8s ease-in-out infinite;
    animation-delay: 2s;
}

.case-card:nth-child(3) {
    animation: float-case 8s ease-in-out infinite;
    animation-delay: 4s;
}

.case-card:nth-child(4) {
    animation: float-case 8s ease-in-out infinite;
    animation-delay: 6s;
}

.case-card:hover {
    animation-play-state: paused;
}

/* Partner logos animation */
.partner-logo {
    animation: partner-float 6s ease-in-out infinite;
}

.partner-logo:nth-child(1) {
    animation-delay: 0s;
}

.partner-logo:nth-child(2) {
    animation-delay: 1s;
}

.partner-logo:nth-child(3) {
    animation-delay: 2s;
}

.partner-logo:nth-child(4) {
    animation-delay: 3s;
}

.partner-logo:nth-child(5) {
    animation-delay: 4s;
}

.partner-logo:nth-child(6) {
    animation-delay: 5s;
}

@keyframes partner-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* C
ontact Section Styles */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="%23e0e0e0" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.contact-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
    width: 100%;
    max-width: 800px;
}

.contact-form-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    color: #3e3a39;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #3e3a39;
    font-size: 0.9rem;
}

.form-label i {
    color: #0075bd;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: white;
}

.form-control:focus {
    outline: none;
    border-color: #0075bd;
    box-shadow: 0 0 0 3px rgba(0, 117, 189, 0.1);
}

.form-control.error {
    border-color: #dc3545;
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    transition: color 0.3s ease;
}

.checkbox-item:hover {
    color: #0075bd;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e1e1e1;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked+.checkmark {
    background-color: #0075bd;
    border-color: #0075bd;
}

.checkbox-item 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;
}

.privacy-checkbox {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.privacy-link,
.terms-link {
    color: #0075bd;
    text-decoration: none;
}

.privacy-link:hover,
.terms-link:hover {
    text-decoration: underline;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    min-width: 200px;
    margin-bottom: 1rem;
}

.form-note {
    color: #666;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

.form-note i {
    color: #28a745;
}

/* Contact Info Section */
.contact-info-section {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
    width: 100%;
    max-width: 600px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.info-header {
    margin-bottom: 2rem;
}

.info-header h3 {
    color: #3e3a39;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-header p {
    color: #666;
    font-size: 1rem;
}

.contact-methods {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 400px;
    text-align: left;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-content h4 {
    color: #3e3a39;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.method-value {
    color: #0075bd;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.method-desc {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.method-action {
    color: #0075bd;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.method-action:hover {
    color: #01a4ee;
    text-decoration: underline;
}

/* Company Info Card */
.company-info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 117, 189, 0.1);
}

.company-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.company-logo {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.company-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.company-logo .logo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.company-details h4 {
    color: #3e3a39;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.company-details p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.company-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.company-stats .stat-item {
    text-align: center;
}

.company-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0075bd;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.company-stats .stat-label {
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
}

.company-certifications h5 {
    color: #3e3a39;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-badge {
    background: rgba(0, 117, 189, 0.1);
    color: #0075bd;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 117, 189, 0.2);
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.faq-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-title {
    text-align: center;
    color: #3e3a39;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.faq-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 117, 189, 0.05);
}

.faq-question h4 {
    color: #3e3a39;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: #0075bd;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 117, 189, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding-top: 0.5rem;
}

/*
 强制修复service-card图标和overlay显示问题 */
.services .service-card .service-icon {
    position: relative !important;
    width: 80px !important;
    height: 80px !important;
    margin-bottom: 2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.services .service-card .service-icon .icon-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    border-radius: 50% !important;
    z-index: 1 !important;
}

.services .service-card .service-icon i {
    font-size: 2.5rem !important;
    color: #ffffff !important;
    z-index: 2 !important;
    position: relative !important;
}

.services .service-card .service-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(0, 117, 189, 0.95), rgba(1, 164, 238, 0.95)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    padding: 2rem !important;
    z-index: 100 !important;
    border-radius: 20px !important;
}

.services .service-card:hover .service-overlay {
    opacity: 1 !important;
    visibility: visible !important;
}

.services .service-card .service-overlay .overlay-content {
    text-align: center !important;
    color: white !important;
}

.services .service-card .service-overlay .overlay-content h4 {
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
    font-weight: 600 !important;
    color: white !important;
}

.services .service-card .service-overlay .overlay-content p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    opacity: 0.9 !important;
    color: white !important;
}

.services .service-card .service-overlay .service-cta {
    display: inline-block !important;
    background: white !important;
    color: #0075bd !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.services .service-card .service-overlay .service-cta:hover {
    background: #f8f9fa !important;
    transform: translateY(-2px) !important;
}

/* Con
tact Form Responsive Styles */
@media (max-width: 768px) {
    .contact-main {
        max-width: 100%;
        padding: 0 1rem;
        gap: 2rem;
    }

    .contact-form-section {
        padding: 2rem;
        max-width: 100%;
    }

    .contact-info-section {
        max-width: 100%;
    }

    .contact-method {
        width: 100%;
        max-width: 400px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }
}

/* ICP
备案信息样式 */
.icp-info {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.8rem !important;
    margin: 0.5rem 0 0 0 !important;
}

.icp-info a {
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.icp-info a:hover {
    color: rgba(255, 255, 255, 0.7) !important;
}

.icp-info .separator {
    color: rgba(255, 255, 255, 0.3) !important;
    margin: 0 0.5rem !important;
}

.icp-info i {
    color: rgba(255, 255, 255, 0.5) !important;
    margin-right: 0.25rem !important;
}

/*
 公安备案图标样式 */
.police-icon {
    width: 14px !important;
    height: 14px !important;
    margin-right: 0.25rem !important;
    vertical-align: middle !important;
    opacity: 0.5 !important;
    transition: opacity 0.3s ease !important;
}

.icp-info a:hover .police-icon {
    opacity: 0.7 !important;
}

/ * 强制联系方式卡片居中显示 */ .contact .contact-info-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
}

.contact .contact-methods {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    width: 100% !important;
    margin-bottom: 2rem !important;
}

.contact .contact-method {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1.5rem 2rem !important;
    background: white !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    width: 400px !important;
    max-width: 400px !important;
    text-align: left !important;
    margin: 0 auto !important;
}

@media (max-width: 768px) {
    .contact .contact-method {
        width: 90% !important;
        max-width: 400px !important;
    }
}

/* AI解决方案sec
tion中的文字颜色优化 */
.ai-solutions .solution-benefits {
    color: rgba(255, 255, 255, 0.9) !important;
}

.ai-solutions .solution-benefits .benefits-list li {
    color: rgba(255, 255, 255, 0.8) !important;
}

.ai-solutions .feature-content h4 {
    color: #01a4ee !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Hero features响应式优化 - 只在超大屏幕强制一排 */
@media (min-width: 1400px) {
    .hero-features {
        flex-wrap: nowrap;
        gap: 3rem;
    }

    .feature-item {
        font-size: 1.1rem;
    }
}}

/*
 ===== AI SOLUTIONS SECTION ===== */
.ai-solutions {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.ai-solutions::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="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.ai-solutions .container {
    position: relative;
    z-index: 2;
}

.ai-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ai-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.ai-solution-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0075bd, #01a4ee);
}

.ai-solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.solution-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.solution-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.solution-icon i {
    font-size: 1.5rem;
    color: white;
    z-index: 2;
    position: relative;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 117, 189, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

.solution-info h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.solution-tagline {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.solution-description {
    margin-bottom: 2rem;
}

.solution-description p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.solution-features {
    margin-bottom: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.feature-item i {
    color: #0075bd;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.feature-content p {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

.solution-benefits h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
}

.benefits-list li i {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

/* AI Architecture */
.ai-architecture {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.architecture-title {
    text-align: center;
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
}

.architecture-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.arch-layer {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.arch-layer:hover {
    background: #e9ecef;
    border-left-color: #0075bd;
    transform: translateX(5px);
}

.arch-layer[data-layer="application"] { border-left-color: #28a745; }
.arch-layer[data-layer="ai"] { border-left-color: #0075bd; }
.arch-layer[data-layer="platform"] { border-left-color: #ffc107; }
.arch-layer[data-layer="data"] { border-left-color: #dc3545; }

.layer-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.layer-header i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    color: #0075bd;
}

.layer-header h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.layer-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.layer-item {
    background: white;
    color: #555;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.layer-item:hover {
    background: #0075bd;
    color: white;
    border-color: #0075bd;
}

/* ===== INDUSTRY SOLUTIONS SECTION ===== */
.industry-solutions {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.industry-header {
    text-align: center;
    margin-bottom: 4rem;
}

.industry-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.industry-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.industry-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0075bd, #01a4ee);
}

.showcase-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.industry-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.industry-badge i {
    margin-right: 0.5rem;
}

.showcase-text h3 {
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.industry-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.solution-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.highlight-icon i {
    color: white;
    font-size: 1.2rem;
}

.highlight-content h4 {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.highlight-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.solution-benefits h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.benefit-item {
    text-align: center;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.benefit-number {
    color: #0075bd;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.benefit-label {
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
}

.showcase-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: #0075bd;
    color: white;
    transform: translateX(5px);
}

.feature-tag i {
    color: #28a745;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.feature-tag:hover i {
    color: white;
}

/* Other Industries */
.other-industries {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
}

.other-title {
    text-align: center;
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.industry-icon i {
    color: white;
    font-size: 1.5rem;
}

.industry-info h4 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.industry-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.industry-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-features li {
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
    color: #555;
    font-size: 0.85rem;
}

.industry-features li i {
    color: #28a745;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* ===== FOOTER COMPLIANCE INFO ===== */
.compliance-info {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #e9ecef;
    margin-top: 1rem;
}

.icp-info {
    margin: 0;
    font-size: 0.8rem;
    color: #999 !important;
    line-height: 1.4;
}

.icp-info a {
    color: #999 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.icp-info a:hover {
    color: #666 !important;
    text-decoration: underline;
}

.separator {
    margin: 0 0.5rem;
    color: #ccc;
}

.police-icon {
    width: 14px;
    height: 14px;
    margin-right: 0.25rem;
    vertical-align: middle;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ai-solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ai-solution-card {
        padding: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .architecture-content {
        gap: 1rem;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .industry-showcase {
        padding: 2rem;
    }
    
    .other-industries {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .ai-solutions {
        padding: 3rem 0;
    }
    
    .industry-solutions {
        padding: 3rem 0;
    }
    
    .ai-solution-card {
        padding: 1.5rem;
    }
    
    .solution-header {
        flex-direction: column;
        text-align: center;
    }
    
    .solution-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}
/* ===== A
I ARCHITECTURE STYLES ===== */
.ai-architecture {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.architecture-title {
    text-align: center;
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
}

.architecture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.architecture-diagram {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.arch-layer {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
}

.arch-layer:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.arch-layer[data-layer="application"] { 
    border-left-color: #28a745; 
}

.arch-layer[data-layer="ai"] { 
    border-left-color: #0075bd; 
}

.arch-layer[data-layer="platform"] { 
    border-left-color: #ffc107; 
}

.arch-layer[data-layer="data"] { 
    border-left-color: #dc3545; 
}

.layer-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.layer-header i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    color: #0075bd;
}

.layer-header h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.layer-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.layer-item {
    background: white;
    color: #555;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.layer-item:hover {
    background: #0075bd;
    color: white;
    border-color: #0075bd;
    transform: translateY(-2px);
}

.architecture-description {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
}

.architecture-description h4 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.tech-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* AI解决方案中的技术特点深色主题 */
.ai-solutions .tech-item {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tech-item i {
    font-size: 1.5rem;
    color: #0075bd;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.tech-content h5 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.tech-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* AI解决方案中的技术内容深色主题 */
.ai-solutions .tech-content h5 {
    color: white !important;
}

.ai-solutions .tech-content p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ===== AI IMPLEMENTATION PROCESS STYLES ===== */
.ai-implementation {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.ai-implementation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0075bd, #01a4ee);
}

.implementation-title {
    text-align: center;
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 3rem 0;
}

.implementation-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
    gap: 1rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0075bd, #01a4ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

.step-icon::before {
    content: attr(data-step);
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.step-item[data-step="1"] .step-icon::before { content: "1"; }
.step-item[data-step="2"] .step-icon::before { content: "2"; }
.step-item[data-step="3"] .step-icon::before { content: "3"; }
.step-item[data-step="4"] .step-icon::before { content: "4"; }
.step-item[data-step="5"] .step-icon::before { content: "5"; }

.step-icon i {
    color: white;
    font-size: 1.5rem;
}

.step-content h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0075bd, #01a4ee);
    position: relative;
    flex-shrink: 0;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid #01a4ee;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* ===== RESPONSIVE DESIGN FOR AI SECTIONS ===== */
@media (max-width: 1024px) {
    .architecture-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .implementation-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
        transform: rotate(90deg);
    }
    
    .step-connector::after {
        right: -4px;
        top: 34px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 8px solid #01a4ee;
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .ai-architecture,
    .ai-implementation {
        padding: 2rem;
    }
    
    .architecture-title,
    .implementation-title {
        font-size: 1.5rem;
    }
    
    .step-item {
        padding: 1.5rem 1rem;
        min-width: 180px;
    }
    
    .tech-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .ai-architecture,
    .ai-implementation {
        padding: 1.5rem;
    }
    
    .step-item {
        min-width: 150px;
        padding: 1rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.2rem;
    }
    
    .layer-items {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .layer-item {
        text-align: center;
    }
}