/* === Digital Era Purple Theme CSS === */

/* Color palette */
:root {
    --primary: #6C4ED9;
    --secondary: #EEE6FF;
    --accent: #8A63D2;
    --gray-400: #CCC8E0;
    --gray-600: #6B7280;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --white: #FFFFFF;
    --light-purple: rgba(108, 78, 217, 0.1);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --shadow: 0 10px 25px rgba(108, 78, 217, 0.1);
    --shadow-hover: 0 20px 40px rgba(108, 78, 217, 0.2);
    --header-height: 70px; /* Dynamic header height, updated by JavaScript */
  }
  
  /* Reset and base styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    min-width: 320px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--secondary);
    overflow-x: hidden;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
  }
  
  .display-4 {
    font-size: 3.5rem;
    font-weight: 800;
  }
  
  .display-5 {
    font-size: 2.5rem;
    font-weight: 700;
  }
  
  .lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gray-600);
  }
  
  /* Links and buttons */
  a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  a:hover {
    color: var(--accent);
  }
  
  .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }
  
  .btn-primary {
    background: var(--gradient);
    border-color: var(--primary);
    color: var(--white);
  }
  
  .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(108, 78, 217, 0.4), 0 0 30px rgba(108, 78, 217, 0.3);
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
  }
  
  .btn-outline-primary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.9);
  }
  
  .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.1);
  }
  
  .btn-lg {
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
  }
  
  /* Logo styling */
  .logo {
    max-height: 40px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
  }
  
  /* Navigation */
  .navbar {
    background: rgba(238, 230, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(108, 78, 217, 0.1);
    transition: all 0.3s ease;
  }
  
  .navbar-brand {
    color: var(--primary) !important;
  }
  
  .navbar-nav .nav-link {
    color: var(--gray-600) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    color: var(--primary) !important;
  }
  
  .navbar-toggler {
    border: none;
    padding: 4px 8px;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  /* Section spacing */
  section {
    position: relative;
  }
  
  .py-5 {
    padding: 5rem 0;
  }
  
  .py-4 {
    padding: 3rem 0;
  }
  
  /* Intro section */
  .intro {
    background: var(--gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
  }
  
  .intro::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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
  }
  
  @keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
  }
  
  .intro-row {
    min-height: 70vh;
  }
  
  .intro h1 {
    color: var(--white);
  }
  
  .intro .lead {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin-bottom: 2rem;
  }
  
  .hero-visual {
    position: relative;
    padding: 2rem;
  }
  
  .hero-logo {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  }
  
  .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
  }
  
  .floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatUp 6s infinite ease-in-out;
  }
  
  .circle-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
  }
  
  .circle-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
  }
  
  .circle-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
  }
  
  @keyframes floatUp {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
  }
  
  /* Key Highlights */
  .key-highlights {
    position: relative;
    z-index: 2;
  }
  
  /* Feature boxes in right column */
  .feature-boxes {
    padding: 2rem 1rem;
  }
  
  .feature-boxes .key-highlights {
    margin-bottom: 0;
  }
  
  .highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }
  
  .highlight-item:last-child {
    margin-bottom: 0;
  }
  
  /* Hero Background Elements */
  .hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
  }
  
  /* Hero Background SVG Logo */
  .hero-background-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 440px;
    height: auto;
    opacity: 0.06;
    mix-blend-mode: normal;
    z-index: 0;
    animation: heroLogoFloat 35s infinite ease-in-out;
    pointer-events: none;
  }
  
  .feature-boxes {
    position: relative;
    z-index: 2;
  }
  
  /* Floating Elements */
  .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
  }
  
  .floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: floatUp 8s infinite ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .circle-1 {
    width: 40px;
    height: 40px;
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(108, 78, 217, 0.1), rgba(255, 255, 255, 0.05));
  }
  
  .circle-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 10%;
    animation-delay: 3s;
    background: linear-gradient(135deg, rgba(138, 99, 210, 0.08), rgba(255, 255, 255, 0.03));
  }
  
  .circle-3 {
    width: 30px;
    height: 30px;
    bottom: 25%;
    left: 15%;
    animation-delay: 6s;
    background: linear-gradient(225deg, rgba(255, 255, 255, 0.1), rgba(108, 78, 217, 0.05));
  }
  
  .circle-4 {
    width: 50px;
    height: 50px;
    top: 40%;
    right: 30%;
    animation-delay: 2s;
    background: linear-gradient(315deg, rgba(238, 230, 255, 0.08), rgba(138, 99, 210, 0.04));
  }
  
  /* Floating Dots */
  .floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: dotFloat 12s infinite ease-in-out;
  }
  
  .dot-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    background: rgba(108, 78, 217, 0.4);
  }
  
  .dot-2 {
    top: 35%;
    right: 25%;
    animation-delay: 2s;
    background: rgba(255, 255, 255, 0.2);
  }
  
  .dot-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 4s;
    background: rgba(138, 99, 210, 0.3);
  }
  
  .dot-4 {
    top: 70%;
    right: 15%;
    animation-delay: 6s;
    background: rgba(238, 230, 255, 0.4);
  }
  
  .dot-5 {
    top: 50%;
    left: 8%;
    animation-delay: 8s;
    background: rgba(108, 78, 217, 0.2);
  }
  
  /* Abstract Curves */
  .abstract-curves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .curve {
    position: absolute;
    opacity: 0.6;
  }
  
  .curve-1 {
    width: 200px;
    height: 100px;
    top: 25%;
    left: 10%;
    animation: curveFlow 15s infinite ease-in-out;
  }
  
  .curve-2 {
    width: 150px;
    height: 80px;
    bottom: 20%;
    right: 20%;
    animation: curveFlow 18s infinite ease-in-out reverse;
  }
  
  /* Animations */
  @keyframes floatUp {
    0%, 100% { 
      transform: translateY(0px) translateX(0px) rotate(0deg); 
      opacity: 0.8;
    }
    25% { 
      transform: translateY(-15px) translateX(5px) rotate(90deg); 
      opacity: 1;
    }
    50% { 
      transform: translateY(-25px) translateX(-5px) rotate(180deg); 
      opacity: 0.6;
    }
    75% { 
      transform: translateY(-10px) translateX(8px) rotate(270deg); 
      opacity: 1;
    }
  }
  
  @keyframes dotFloat {
    0%, 100% { 
      transform: translateY(0px) scale(1); 
      opacity: 0.4;
    }
    33% { 
      transform: translateY(-20px) scale(1.2); 
      opacity: 0.8;
    }
    66% { 
      transform: translateY(-10px) scale(0.8); 
      opacity: 0.6;
    }
  }
  
  @keyframes curveFlow {
    0%, 100% { 
      transform: translateX(0px) scale(1); 
      opacity: 0.3;
    }
    50% { 
      transform: translateX(20px) scale(1.1); 
      opacity: 0.6;
    }
  }
  
  @keyframes heroLogoFloat {
    0%, 100% {
      transform: translateY(-50%) rotate(0deg) scale(1);
      opacity: 0.07;
    }
    25% {
      transform: translateY(-52%) rotate(1deg) scale(1.02);
      opacity: 0.06;
    }
    50% {
      transform: translateY(-48%) rotate(2deg) scale(1.05);
      opacity: 0.08;
    }
    75% {
      transform: translateY(-52%) rotate(1deg) scale(1.02);
      opacity: 0.06;
    }
  }
  
  /* Mobile responsive adjustments */
  @media (max-width: 991.98px) {
    .feature-boxes {
      padding: 2rem 0;
      margin-top: 3rem;
    }
    
    .highlight-item {
      margin-bottom: 2rem;
    }
    
    /* Scale down animations on mobile */
    .floating-circle {
      transform: scale(0.7);
    }
    
    .dot {
      transform: scale(0.8);
    }
    
    .curve {
      opacity: 0.3;
      transform: scale(0.8);
    }
    
    /* Scale down left column animations on mobile */
    .particle {
      transform: scale(0.6);
    }
    
    .wave {
      opacity: 0.2;
      transform: scale(0.9);
    }
    
    /* Scale down hero background logo on mobile */
    .hero-background-logo {
      width: 200px;
      opacity: 0.04;
      left: -20px;
    }
    
    /* Scale down footer logo SVG background on mobile */
    .footer-logo-background {
      width: 120%;
      opacity: 0.12;
    }
  }
  
  /* Left Column Background Elements */
  .left-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
  }
  
  .intro-content {
    position: relative;
    z-index: 2;
  }
  
  /* Floating Particles */
  .particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: particleFloat 10s infinite ease-in-out;
  }
  
  .particle-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
    background: rgba(108, 78, 217, 0.3);
  }
  
  .particle-2 {
    top: 60%;
    left: 10%;
    animation-delay: 4s;
    background: rgba(238, 230, 255, 0.4);
  }
  
  .particle-3 {
    bottom: 30%;
    right: 25%;
    animation-delay: 7s;
    background: rgba(138, 99, 210, 0.2);
  }
  
  /* Soft Waves */
  .soft-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .wave {
    position: absolute;
    opacity: 0.4;
  }
  
  .wave-1 {
    width: 300px;
    height: 60px;
    top: 30%;
    left: -50px;
    animation: waveFlow 20s infinite ease-in-out;
  }
  
  .wave-2 {
    width: 250px;
    height: 40px;
    bottom: 25%;
    right: -30px;
    animation: waveFlow 16s infinite ease-in-out reverse;
  }
  
  /* Particle Animation */
  @keyframes particleFloat {
    0%, 100% { 
      transform: translateY(0px) translateX(0px); 
      opacity: 0.3;
    }
    25% { 
      transform: translateY(-15px) translateX(8px); 
      opacity: 0.7;
    }
    50% { 
      transform: translateY(-8px) translateX(-5px); 
      opacity: 0.5;
    }
    75% { 
      transform: translateY(-20px) translateX(10px); 
      opacity: 0.8;
    }
  }
  
  /* Wave Animation */
  @keyframes waveFlow {
    0%, 100% { 
      transform: translateX(0px) translateY(0px); 
      opacity: 0.2;
    }
    50% { 
      transform: translateX(15px) translateY(-5px); 
      opacity: 0.4;
    }
  }
  
  /* Right Side Extra Shapes */
  .right-side-shapes {
    position: absolute;
    top: 0;
    right: -100px;
    bottom: 0;
    width: 200px;
    pointer-events: none;
    z-index: 0;
  }
  
  /* Blob Shape */
  .blob-shape {
    position: absolute;
    border-radius: 50% 30% 70% 40%;
    background: linear-gradient(135deg, rgba(108, 78, 217, 0.04), rgba(138, 99, 210, 0.08));
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .blob-1 {
    width: 120px;
    height: 80px;
    top: 20%;
    right: 20px;
    animation: blobFloat 18s infinite ease-in-out;
    transform-origin: center;
  }
  
  /* Wave Shape */
  .wave-shape {
    position: absolute;
    opacity: 0.7;
  }
  
  .wave-shape-1 {
    width: 120px;
    height: 80px;
    top: 55%;
    right: 40px;
    animation: waveShapeFloat 15s infinite ease-in-out;
    transform-origin: center;
  }
  
  /* Gradient Circle */
  .gradient-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(238, 230, 255, 0.06) 0%, rgba(108, 78, 217, 0.02) 70%, transparent 100%);
    border: 1px solid rgba(138, 99, 210, 0.08);
  }
  
  .circle-extra {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 10px;
    animation: gradientCircleFloat 20s infinite ease-in-out;
  }
  
  /* Right Side Shape Animations */
  @keyframes blobFloat {
    0%, 100% {
      transform: translateY(0px) rotate(0deg) scale(1);
      border-radius: 50% 30% 70% 40%;
      opacity: 0.6;
    }
    25% {
      transform: translateY(-15px) rotate(5deg) scale(1.05);
      border-radius: 40% 60% 50% 70%;
      opacity: 0.8;
    }
    50% {
      transform: translateY(-25px) rotate(-3deg) scale(0.95);
      border-radius: 60% 40% 80% 30%;
      opacity: 0.4;
    }
    75% {
      transform: translateY(-10px) rotate(8deg) scale(1.1);
      border-radius: 30% 70% 40% 60%;
      opacity: 0.7;
    }
  }
  
  @keyframes waveShapeFloat {
    0%, 100% {
      transform: translateY(0px) translateX(0px) rotate(0deg);
      opacity: 0.5;
    }
    33% {
      transform: translateY(-20px) translateX(8px) rotate(2deg);
      opacity: 0.8;
    }
    66% {
      transform: translateY(-5px) translateX(-5px) rotate(-1deg);
      opacity: 0.3;
    }
  }
  
  @keyframes gradientCircleFloat {
    0%, 100% {
      transform: translateY(0px) scale(1);
      opacity: 0.4;
    }
    50% {
      transform: translateY(-30px) scale(1.15);
      opacity: 0.7;
    }
  }
  
  /* Mobile adjustments for right side shapes */
  @media (max-width: 991.98px) {
    .right-side-shapes {
      display: none; /* Hide on mobile to avoid overlap */
    }
  }
  
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .right-side-shapes {
      right: -50px;
      width: 150px;
    }
    
    .blob-1 {
      width: 90px;
      height: 60px;
    }
    
    .wave-shape-1 {
      width: 90px;
      height: 60px;
    }
    
    .circle-extra {
      width: 75px;
      height: 75px;
    }
  }
  
  .highlight-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
  
  .highlight-icon i {
    font-size: 1.5rem;
    color: var(--white);
  }
  
  .highlight-content h6 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
  
  .highlight-content p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  /* Tech Graphics */
  .tech-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
  }
  
  .tech-shape {
    position: absolute;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: techFloat 8s infinite ease-in-out;
  }
  
  .shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 20%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation-delay: 0s;
  }
  
  .shape-2 {
    width: 60px;
    height: 120px;
    bottom: 30%;
    right: 10%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation-delay: 2s;
  }
  
  .shape-3 {
    width: 100px;
    height: 60px;
    top: 60%;
    left: 10%;
    background: linear-gradient(225deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation-delay: 4s;
  }
  
  .tech-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat center bottom;
    background-size: cover;
    animation: waveMove 10s infinite linear;
  }
  
  @keyframes techFloat {
    0%, 100% { 
      transform: translateY(0px) rotate(0deg); 
      opacity: 0.6;
    }
    33% { 
      transform: translateY(-15px) rotate(5deg); 
      opacity: 0.8;
    }
    66% { 
      transform: translateY(10px) rotate(-3deg); 
      opacity: 0.7;
    }
  }
  
  @keyframes waveMove {
    0% { transform: translateX(0px); }
    100% { transform: translateX(-100px); }
  }
  
  /* Intro Buttons */
  .intro-buttons {
    position: relative;
    z-index: 3;
  }
  
  .intro-buttons .btn {
    margin-bottom: 1rem;
  }
  
  /* Service boxes */
  .service-box {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(108, 78, 217, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .service-box:hover::before {
    transform: scaleX(1);
  }
  
  .service-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
  }
  
  .service-box:hover .service-illustration {
    transform: scale(1.08);
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
  }
  
  .service-icon i {
    width: 40px;
    height: 40px;
  }
  
  .service-illustration {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: transparent;
    border-radius: 15px;
    padding: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .service-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 100%;
    border-radius: 8px;
  }
  
  /*.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
  }
  
  .service-features li {
    padding: 0.75rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: center;
    font-weight: 500;
  }
  
  .service-features li i {
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1rem;
    width: 1.2rem;
    text-align: center;
  }
*/
/* Fix padd features */
.service-features {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service-features li {
  display: flex;              
  align-items: center;        
  gap: 8px;                   
  line-height: 1.4;
  min-height: 24px;           
}

.service-features li i,
.service-features li .fa-solid {
  display: inline-flex;
  width: 18px;                
  height: 18px;
  align-items: center;
  justify-content: center;
  line-height: 1;             
  flex: 0 0 18px;
  margin-right: 0;
  color: var(--primary);            
}


.service-features li i { position: static; }

  
  /* Project cards */
  .project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
  }
  
  .project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
  }
  
  .project-image {
    height: 200px;
    overflow: hidden;
  }
  
  .project-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
  }
  
  .project-icon {
    font-size: 4.5rem;
    z-index: 10;
    position: relative;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  }
  
  .tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    z-index: 1;
  }
  
  .game-bg {
    background: 
      linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.9) 100%),
      url('../images/bg-rpg-game_1754344379421.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .game-bg .tech-particles::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.08) 2px, transparent 2px),
                radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.04) 3px, transparent 3px);
    background-size: 50px 50px, 30px 30px, 70px 70px;
    animation: float 20s infinite linear;
  }
  
  .mobile-bg {
    background: 
      linear-gradient(135deg, rgba(240, 147, 251, 0.8) 0%, rgba(245, 87, 108, 0.9) 100%),
      url('../images/bg-fitness-app_1754344379420.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .mobile-bg .tech-particles::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
      linear-gradient(90deg, transparent 47%, rgba(255, 255, 255, 0.08) 50%, transparent 53%),
      linear-gradient(0deg, transparent 47%, rgba(255, 255, 255, 0.06) 50%, transparent 53%);
    background-size: 40px 40px, 60px 60px;
    animation: pulse 15s infinite ease-in-out;
  }
  
  .web-bg {
    background: 
      linear-gradient(135deg, rgba(79, 172, 254, 0.8) 0%, rgba(0, 242, 254, 0.9) 100%),
      url('../images/bg-ecommerce_1754344379420.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .web-bg .tech-particles::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
      conic-gradient(from 0deg at 25% 25%, transparent 0deg, rgba(255, 255, 255, 0.08) 90deg, transparent 180deg),
      conic-gradient(from 180deg at 75% 75%, transparent 0deg, rgba(255, 255, 255, 0.06) 90deg, transparent 180deg);
    background-size: 80px 80px, 60px 60px;
    animation: rotate 25s infinite linear;
  }
  
  .project-content {
    padding: 2rem;
  }
  
  .project-tags {
    margin-top: 1rem;
  }
  
  .tag {
    display: inline-block;
    background: var(--light-purple);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin: 0.25rem;
    font-weight: 500;
  }
  
  /* Tech particle animations */
  @keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, -30px) rotate(120deg); }
    66% { transform: translate(30px, -20px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
  }
  
  @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .project-card:hover .project-icon {
    transform: scale(1.1);
    transition: all 0.3s ease;
  }
  
  .project-card:hover .tech-particles::before {
    animation-duration: 8s;
  }
  
  /* About section */
  .about {
    background: var(--white);
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
  }
  
  .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
  }
  
  .stat-number {
    font-size: 3.8rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .stat-item:hover .stat-number {
    transform: scale(1.05);
  }
  
  .stat-item:nth-child(1) .stat-number {
    color: var(--primary); /* #6C4ED9 purple */
  }
  
  .stat-item:nth-child(2) .stat-number {
    color: #4E80D9; /* blue */
  }
  
  .stat-item:nth-child(3) .stat-number {
    color: #4ED9C2; /* teal */
  }
  
  .stat-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .about-features {
    margin-top: 2rem;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    color: var(--gray-600);
    padding-left: 0.5rem;
  }
  
  .feature-item i {
    color: #6C4ED9;
    margin-right: 1rem;
    padding-left: 10px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .feature-item span {
    font-weight: 500;
    line-height: 1.4;
    padding-left: 8px;
  }
  
  /* Mission section */
  .our-mission {
    position: relative;
    background: linear-gradient(180deg, #8A6CE9 0%, #6C4ED9 100%);
    padding: 80px 0;
    overflow: hidden;
  }
  
  /* Top Wave */
  .our-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23f8f9fa"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23f8f9fa"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23f8f9fa"/></svg>') repeat-x;
    background-size: 1200px 60px;
    z-index: 1;
    animation: waveFlow 12s ease-in-out infinite;
  }
  
  @keyframes waveFlow {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(-200px);
    }
  }
  
  /* Bottom Wave */
  .our-mission::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23f8f9fa"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23f8f9fa"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23f8f9fa"/></svg>') no-repeat;
    background-size: cover;
    transform: rotate(180deg);
    z-index: 1;
  }
  
  .mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
  }
  
  .mission-title {
    text-align: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .mission-description {
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .mission-card {
    background: transparent;
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    border-left: 2px solid #FFD700;
    transition: transform 0.3s ease;
  }
  
  .mission-card:hover {
    transform: translateY(-5px);
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .card-icon i {
    color: #fff;
    font-size: 32px;
  }
  
  .card-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .card-description {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    font-size: 1rem;
  }
  
  .our-mission h2,
  .our-mission h5 {
    color: var(--white);
  }
  
  .our-mission .lead {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
  }
  
  .value-item i {
    color: var(--white);
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }
  
  .value-item p {
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* Contact section */
  .contact {
    background: var(--white);
  }
  
  .contact-form-wrapper {
    background: var(--secondary);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  
  .form-control,
  .form-select {
    border: 2px solid var(--gray-400);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
  }
  
  .form-control:focus,
  .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(108, 78, 217, 0.25);
  }
  
  .form-label {
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  /* Footer */
  .footer {
    background: var(--gray-900);
    color: var(--white);
  }
  
  .footer .logo {
    max-height: 30px;
    width: auto;
    margin-top: 10px;
  }
  
  .footer-logo-wrapper {
    position: relative;
    display: inline-block;
  }
  
  .footer-logo-background {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 130%;
    height: auto;
    z-index: 0;
    pointer-events: none;
  }
  
  .footer-logo-wrapper .footer-logo {
    position: relative;
    z-index: 1;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-bottom: 1rem;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background: var(--accent);
    transform: translateY(-2px);
    color: var(--white);
  }
  
  .social-link i {
    width: 20px;
    height: 20px;
  }
  
  /* Responsive design */
  @media (max-width: 991.98px) {
    .display-4 {
      font-size: 2.5rem;
    }
    
    .display-5 {
      font-size: 2rem;
    }
    
    .py-5 {
      padding: 3rem 0;
    }
    
    .py-4 {
      padding: 2rem 0;
    }
    
    .intro {
      text-align: center;
      min-height: 80vh;
    }
    
    .intro-row {
      min-height: 60vh;
    }
    
    .tagline {
      font-size: 1.3rem;
    }
    
    .key-highlights .row {
      flex-direction: column;
    }
    
    .highlight-item {
      margin-bottom: 1.5rem;
      padding: 1.2rem;
    }
    
    .highlight-icon {
      width: 50px;
      height: 50px;
      margin-right: 1rem;
    }
    
    .highlight-icon i {
      font-size: 1.3rem;
    }
    
    .stats-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    
    .stat-item {
      padding: 1rem;
      min-height: 100px;
    }
    
    .stat-number {
      font-size: 2.8rem;
    }
    
    .mission-values {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    
    .contact-form-wrapper {
      padding: 2rem;
    }
  }
  
  @media (max-width: 767.98px) {
    .display-4 {
      font-size: 2rem;
    }
    
    .display-5 {
      font-size: 1.75rem;
    }
    
    .btn-lg {
      padding: 15px 35px;
      font-size: 1.1rem;
    }
    
    .py-4 {
      padding: 1.5rem 0;
    }
    
    section.intro {
      min-height: 70vh;
      margin-top: var(--header-height); /* Dynamic margin based on actual header height */
    }
    
    .intro-row {
      min-height: 50vh;
    }
    
    .tagline {
      font-size: 1.2rem;
    }
    
    .highlight-item {
      flex-direction: column;
      text-align: center;
      padding: 1rem;
    }
    
    .highlight-icon {
      margin-right: 0;
      margin-bottom: 1rem;
    }
    
    .tech-shape {
      display: none;
    }
    
    .service-illustration {
      height: 140px;
      padding: 10px;
    }
    
    .service-features li {
      padding: 0.6rem 0;
      font-size: 0.95rem;
    }
    
    .service-features li i {
      font-size: 0.9rem;
      width: 1rem;
    }
    
    .project-icon {
      font-size: 3.5rem;
    }
    
    .project-image {
      height: 180px;
    }
    
    .stats-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 1.5rem;
    }
    
    .stat-item {
      padding: 1.2rem;
      min-height: 110px;
    }
    
    .stat-number {
      font-size: 3.2rem;
    }
    
    .our-mission {
      padding: 60px 0;
    }
  
    .our-mission::before,
    .our-mission::after {
      height: 40px;
    }
  
    .our-mission::before {
      background-size: 1000px 40px;
    }
  
    @keyframes waveFlow {
      0%, 100% {
        transform: translateX(0);
      }
      50% {
        transform: translateX(-150px);
      }
    }
  
    .mission-title {
      font-size: 2.2rem;
    }
  
    .mission-description {
      font-size: 1.1rem;
      margin-bottom: 3rem;
    }
  
    .mission-cards {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .mission-card {
      padding: 1.5rem;
    }
  
    .mission-container {
      padding: 0 15px;
    }
    
    .social-links {
      justify-content: center;
    }
    
    .contact-form-wrapper {
      padding: 1.5rem;
    }
    
    .service-box,
    .project-card {
      margin-bottom: 2rem;
    }
  }
  
  @media (max-width: 575.98px) {
    .hero-visual {
      padding: 1rem;
    }
    
    .floating-circle {
      display: none;
    }
    
    .intro-buttons .btn {
      display: block;
      width: 100%;
      margin-bottom: 1rem;
    }
    
    .intro-buttons .btn:last-child {
      margin-bottom: 0;
    }
    
    .highlight-item {
      padding: 0.8rem;
    }
    
    .service-illustration {
      height: 120px;
      padding: 8px;
    }
    
    .project-icon {
      font-size: 3rem;
    }
    
    .project-image {
      height: 160px;
    }
    
    .our-mission::before,
    .our-mission::after {
      height: 30px;
    }
  
    .our-mission::before {
      background-size: 800px 30px;
    }
  
    @keyframes waveFlow {
      0%, 100% {
        transform: translateX(0);
      }
      50% {
        transform: translateX(-100px);
      }
    }
  
    .mission-title {
      font-size: 1.8rem;
    }
  
    .mission-description {
      font-size: 1rem;
    }
  
    .card-title {
      font-size: 1.3rem;
    }
    
    .service-box,
    .value-item {
      padding: 1.5rem;
    }
    
    .project-content {
      padding: 1.5rem;
    }
  }
  
  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--secondary);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
  }
  
  /* Animation utilities */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(108, 78, 217, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
  }
  
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(108, 78, 217, 0.4);
  }
  
  .back-to-top:active {
    transform: translateY(-1px);
  }
  
  .back-to-top i {
    transition: transform 0.3s ease;
  }
  
  .back-to-top:hover i {
    transform: translateY(-2px);
  }
  
  /* Responsive adjustments for Back to Top button */
  @media (max-width: 767.98px) {
    .back-to-top {
      width: 40px;
      height: 40px;
      bottom: 20px;
      right: 20px;
      font-size: 1rem;
    }
  }
  
  /* Print styles */
  @media print {
    .navbar,
    .floating-elements,
    .btn,
    .back-to-top {
      display: none !important;
    }
    
    .intro {
      background: var(--white) !important;
      color: var(--gray-800) !important;
    }
    
    .intro h1 {
      color: var(--primary) !important;
    }
  }
.wpcf7-not-valid {
  border-color: #dc3545;
}

.wpcf7-response-output {
  margin-top: 1rem;
  color: #dc3545;
}

.wpcf7-form .btn {
  min-width: 180px;
}
/* Успешное сообщение */
.wpcf7 form.sent .wpcf7-response-output {
    border: 2px solid #46b450; /* зелёная рамка */
    color: #46b450;            /* зелёный текст */
}

/* Сообщение об ошибке */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
    border: 2px solid #dc3232; /* красная рамка */
    color: #dc3232;            /* красный текст */
}
