* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --light-bg: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --border-color: #334155;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 35px 60px -12px rgba(0, 0, 0, 0.35);
  }
  
  body {
    font-family: "Inter", sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
  }
  
  .nav-logo h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  .nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: var(--primary-color);
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
  }
  
  .breadcrumb {
    padding: 6rem 0 2rem;
    background: var(--light-bg);
  }
  
  .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
  }
  
  .breadcrumb-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
  }
  
  .breadcrumb-link:hover {
    color: var(--primary-color);
  }
  
  .breadcrumb-separator {
    color: var(--text-muted);
    font-size: 0.8rem;
  }
  
  .breadcrumb-current {
    color: var(--primary-color);
    font-weight: 500;
  }
  
  .page-hero {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
  }
  
  .hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, var(--primary-color) 2px, transparent 2px),
      radial-gradient(circle at 80% 20%, var(--accent-color) 1px, transparent 1px),
      radial-gradient(circle at 40% 80%, var(--secondary-color) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: float 20s ease-in-out infinite;
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(180deg);
    }
  }
  
  .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
  }
  
  .hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .highlight-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
  }
  
  .highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
  }
  
  .highlight-item span {
    color: var(--text-primary);
    font-weight: 500;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
  }
  
  .industry-solutions {
    padding: 6rem 0;
    background: var(--light-bg);
  }
  
  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .solution-card {
    background: var(--dark-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .solution-card:hover::before {
    transform: scaleX(1);
  }
  
  .solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
  }
  
  .solution-card.featured {
    background: var(--gradient-primary);
    color: white;
  }
  
  .solution-card.featured::before {
    background: rgba(255, 255, 255, 0.3);
  }
  
  .solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .solution-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .solution-card.featured .solution-icon {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .solution-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .solution-card.featured .solution-icon i {
    color: white;
  }
  
  .solution-meta h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
  }
  
  .solution-card.featured .solution-meta h3 {
    color: white;
  }
  
  .solution-tag {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-color);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .solution-card.featured .solution-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
  }
  
  .solution-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .solution-card.featured .solution-description {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .solution-features {
    margin-bottom: 1.5rem;
  }
  
  .feature-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
  }
  
  .solution-card.featured .feature-row {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .feature-row i {
    color: var(--primary-color);
    font-size: 0.9rem;
  }
  
  .solution-card.featured .feature-row i {
    color: white;
  }
  
  .solution-results {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-top: 1.5rem;
  }
  
  .solution-card.featured .solution-results {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .metric-value {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
  }
  
  .metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
  }
  
  .solution-card.featured .metric-number {
    color: white;
  }
  
  .metric-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
  }
  
  .solution-card.featured .metric-label {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .solution-stats {
    display: flex;
    gap: 1rem;
  }
  
  .stat-item {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
  }
  
  .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
  }
  
  .success-cases {
    padding: 6rem 0;
  }
  
  .cases-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }
  
  .case-timeline {
    position: relative;
  }
  
  .case-timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
  }
  
  .timeline-item {
    position: relative;
    padding: 2rem 0 2rem 4rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .timeline-item:hover,
  .timeline-item.active {
    transform: translateX(10px);
  }
  
  .timeline-marker {
    position: absolute;
    left: 0;
    top: 2rem;
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border: 3px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .timeline-item.active .timeline-marker,
  .timeline-item:hover .timeline-marker {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
  }
  
  .timeline-marker i {
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
  }
  
  .timeline-item.active .timeline-marker i,
  .timeline-item:hover .timeline-marker i {
    color: white;
  }
  
  .timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
  }
  
  .timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
  }
  
  .timeline-date {
    font-size: 0.8rem;
    color: var(--text-muted);
  }
  
  .case-details {
    position: relative;
  }
  
  .case-detail {
    display: none;
    animation: fadeIn 0.5s ease;
  }
  
  .case-detail.active {
    display: block;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .case-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
  
  .case-visual {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
  }
  
  .case-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  
  .case-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
  }
  
  .case-category {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .case-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
  }
  
  .case-challenge,
  .case-solution {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  .case-challenge strong,
  .case-solution strong {
    color: var(--primary-color);
  }
  
  .case-achievements {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .achievement-item {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .achievement-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
  }
  
  .achievement-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
  }
  
  .tech-innovations {
    padding: 6rem 0;
    background: var(--light-bg);
  }
  
  .innovations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .innovation-card {
    background: var(--dark-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
  }
  
  .innovation-visual {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .tech-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
  }
  
  .tech-icon i {
    font-size: 2rem;
    color: white;
  }
  
  .tech-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 2s infinite;
  }
  
  .pulse-ring.delay-1 {
    animation-delay: 0.5s;
  }
  
  .pulse-ring.delay-2 {
    animation-delay: 1s;
  }
  
  @keyframes pulse {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
    }
    100% {
      transform: translate(-50%, -50%) scale(2);
      opacity: 0;
    }
  }
  
  .cloud-animation {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .cloud-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: cloudFloat 3s infinite ease-in-out;
  }
  
  .cloud-particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
  }
  
  .cloud-particle:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 0.5s;
  }
  
  .cloud-particle:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 1s;
  }
  
  .cloud-particle:nth-child(4) {
    bottom: 20%;
    right: 30%;
    animation-delay: 1.5s;
  }
  
  @keyframes cloudFloat {
    0%,
    100% {
      transform: translateY(0px);
      opacity: 0.5;
    }
    50% {
      transform: translateY(-10px);
      opacity: 1;
    }
  }
  
  .data-visualization {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: end;
    gap: 4px;
    height: 40px;
  }
  
  .data-bar {
    width: 6px;
    background: var(--gradient-secondary);
    border-radius: 3px;
    animation: growBar 2s ease-out infinite;
  }
  
  @keyframes growBar {
    0%,
    100% {
      transform: scaleY(0.5);
    }
    50% {
      transform: scaleY(1);
    }
  }
  
  .mobile-animation {
    position: absolute;
    width: 60px;
    height: 100px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--light-bg);
    border-radius: 10px;
    border: 2px solid var(--border-color);
  }
  
  .screen-glow {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 15px;
    background: var(--gradient-primary);
    border-radius: 5px;
    opacity: 0.3;
    animation: screenGlow 2s ease-in-out infinite;
  }
  
  @keyframes screenGlow {
    0%,
    100% {
      opacity: 0.3;
    }
    50% {
      opacity: 0.6;
    }
  }
  
  .app-icons {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
  }
  
  .app-icon {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 2px;
    opacity: 0.8;
  }
  
  .security-animation {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .security-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px dashed var(--accent-color);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
  }
  
  @keyframes rotate {
    from {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  
  .security-dots {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .security-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: securityPulse 2s infinite ease-in-out;
  }
  
  .security-dot:nth-child(1) {
    top: 10%;
    left: 50%;
    animation-delay: 0s;
  }
  
  .security-dot:nth-child(2) {
    top: 50%;
    right: 10%;
    animation-delay: 0.5s;
  }
  
  .security-dot:nth-child(3) {
    bottom: 10%;
    left: 50%;
    animation-delay: 1s;
  }
  
  .security-dot:nth-child(4) {
    top: 50%;
    left: 10%;
    animation-delay: 1.5s;
  }
  
  @keyframes securityPulse {
    0%,
    100% {
      opacity: 0.3;
      transform: scale(1);
    }
    50% {
      opacity: 1;
      transform: scale(1.5);
    }
  }
  
  .automation-animation {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .gear {
    position: absolute;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: rotateGear 4s linear infinite;
  }
  
  .gear::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
  }
  
  .gear-1 {
    width: 30px;
    height: 30px;
    top: 20%;
    left: 30%;
  }
  
  .gear-2 {
    width: 25px;
    height: 25px;
    top: 40%;
    right: 25%;
    animation-direction: reverse;
    animation-delay: -1s;
  }
  
  .gear-3 {
    width: 20px;
    height: 20px;
    bottom: 25%;
    left: 40%;
    animation-delay: -2s;
  }
  
  @keyframes rotateGear {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  .innovation-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
  }
  
  .innovation-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .tech-tag {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .consultation-cta {
    padding: 6rem 0;
  }
  
  .cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 4rem;
    color: white;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
  }
  
  .cta-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .cta-feature i {
    font-size: 1.2rem;
    opacity: 0.8;
  }
  
  .cta-feature span {
    font-weight: 500;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
  }
  
  .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
  
  .btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
  
  .consultation-graphic {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .graphic-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: floatElement 6s ease-in-out infinite;
  }
  
  .graphic-element i {
    font-size: 1.5rem;
    color: white;
  }
  
  .element-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .element-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: -2s;
  }
  
  .element-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -4s;
  }
  
  @keyframes floatElement {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  .connection-line {
    position: absolute;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    animation: lineGlow 3s ease-in-out infinite;
  }
  
  .line-1 {
    top: 25%;
    left: 60%;
    width: 30%;
    transform: rotate(45deg);
  }
  
  .line-2 {
    bottom: 25%;
    left: 60%;
    width: 30%;
    transform: rotate(-45deg);
    animation-delay: -1.5s;
  }
  
  @keyframes lineGlow {
    0%,
    100% {
      opacity: 0.3;
    }
    50% {
      opacity: 1;
    }
  }
  
  .footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
  }
  
  .footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .footer-section ul {
    list-style: none;
  }
  
  .footer-section ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: var(--primary-color);
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
  }
  
  .contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
  }
  
  .contact-info i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
  }
  
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    .nav-menu {
      position: fixed;
      left: -100%;
      top: 70px;
      flex-direction: column;
      background-color: var(--dark-bg);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: var(--shadow-lg);
      padding: 2rem 0;
    }
  
    .nav-menu.active {
      left: 0;
    }
  
    .page-title {
      font-size: 2.5rem;
    }
  
    .hero-highlights {
      flex-direction: column;
      align-items: center;
    }
  
    .solutions-grid {
      grid-template-columns: 1fr;
    }
  
    .cases-showcase {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  
    .case-detail {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .case-achievements {
      flex-direction: column;
      gap: 1rem;
    }
  
    .innovations-grid {
      grid-template-columns: 1fr;
    }
  
    .cta-wrapper {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
    }
  
    .cta-features {
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .container {
      padding: 0 1rem;
    }
  
    .nav-container {
      padding: 0 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .page-title {
      font-size: 2rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .solution-card {
      padding: 1.5rem;
    }
  
    .solution-stats {
      flex-direction: column;
      gap: 0.5rem;
    }
  
    .timeline-item {
      padding-left: 3rem;
    }
  
    .timeline-marker {
      width: 50px;
      height: 50px;
    }
  
    .innovation-card {
      padding: 1.5rem;
    }
  
    .cta-wrapper {
      padding: 2rem;
    }
  
    .cta-content h2 {
      font-size: 2rem;
    }
  
    .cta-features {
      flex-direction: column;
      gap: 1rem;
    }
  }
  