
       .service-box {
            text-align: center;
            padding: 20px;
        }
        .service-image {
            width: 50px; /* Adjust the size of the images as needed */
            height: 50px; /* Adjust the size of the images as needed */
            margin-bottom: 20px;
        }
        .service-title {
            font-size: 1.5em;
            margin-bottom: 15px;
        }
        .secttion {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 0;
        }
        
        .secttion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .secttion-title {
            font-size: 1.8rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        
        .secttion-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        .slidder-container {
            position: relative;
        }
        
        .slidder {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding: 1rem 0;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        
        .slidder::-webkit-scrollbar {
            display: none;
        }
        
        .carrd {
            flex: 0 0 300px;
            scroll-snap-align: start;
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .carrd:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .carrd-image {
            height: 180px;
            width: 100%;
            object-fit: cover;
        }
        
        .carrd-content {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .carrd-header {
            margin-bottom: 0.75rem;
        }
        
        .carrd-category {
            display: inline-block;
            background: var(--light-color);
            color: var(--primary-color);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
        }
        
        .carrd-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }
        
        .carrd-text {
            color: #64748b;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            flex: 1;
        }
        
        .carrd-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }
        
        .carrd-author {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: #64748b;
        }
        
        .author-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .carrd-link {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            transition: color 0.2s;
        }
        
        .carrd-link:hover {
            color: var(--secondary-color);
        }
        
        .carrd-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.2s;
        }
        
        .carrd-link:hover svg {
            transform: translateX(2px);
        }
        
        .social-links {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }
        
        .social-link {
            color: #64748b;
            font-size: 0.8rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            transition: color 0.2s;
        }
        
        .social-link:hover {
            color: var(--primary-color);
        }
        
        .social-link svg {
            width: 14px;
            height: 14px;
        }
        
        .slidder-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .slidder-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: white;
            border: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .slidder-btn:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        .slidder-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: white;
            color: inherit;
        }
        
        @media (max-width: 768px) {
            .carrd {
                flex: 0 0 85%;
            }
            
            .secttion-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding: 0rem;
                padding-right: var(--bs-gutter-x, -0.5rem);
                padding-left: var(--bs-gutter-x, -0.5rem);
            }
            
            .carrd {
                flex: 0 0 90%;
            }
            
            .carrd-image {
                height: 160px;
            }
        }


        section {
            padding: 3rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contaiiner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        /* Left Content */
        .left {
            flex: 1 1 500px;
            padding: 1rem;
        }

        .tag {
            display: inline-block;
            background: #eaf2ff;
            color: #004aad;
            padding: 0.6rem 1.2rem;
            border-radius: 20px;
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            box-shadow: 0 4px 6px rgba(0, 74, 173, 0.1);
        }

        .title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
            line-height: 1.2;
            color: #1a1a1a;
            background: linear-gradient(90deg, #0066d9, #004aad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #444;
            max-width: 90%;
        }

        .services {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }

        .services span {
            display: flex;
            align-items: center;
            font-weight: 500;
            gap: 0.6rem;
            background: #f8f9ff;
            padding: 0.7rem 1.2rem;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .services span:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .bttn {
            background: #0066d9;
            color: #fff;
            padding: 1rem 2.2rem;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 4px 6px rgba(0, 102, 217, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .bttn:hover {
            background: #004aad;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 74, 173, 0.4);
        }

        /* Right Content */
        .right {
            flex: 1 1 500px;
            background: linear-gradient(135deg, #eaf2ff 0%, #d9e6ff 100%);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 74, 173, 0.15);
        }

        .stats-contaiiner {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }

        .developers, .client-satisfaction {
            font-size: 1.5rem;
            font-weight: 700;
            color: #004aad;
            text-align: center;
            background: white;
            padding: 1rem;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.08);
            flex: 0 0 48%;
        }

        .avatars {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 2.5rem 0;
            flex-wrap: wrap;
        }

        .avatar {
            width: 120px;
            height: 120px;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .avatar:hover {
            transform: scale(1.05);
        }

        .tech {
            background: #004aad;
            color: #fff;
            border-radius: 12px;
            padding: 1.2rem;
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        /* Technology Tags */
        .tech span {
            background: #fff;
            color: #111;
            padding: 0.7rem 1.3rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.4s ease-in-out;
            position: relative;
            overflow: hidden;
        }

        /* Hover Colorful Gradient Effect */
        .tech span:hover {
            color: #fff;
            transform: translateY(-5px) scale(1.05);
            background: linear-gradient(135deg, #ff416c, #ff4b2b, #1e90ff, #00c9ff, #92fe9d, #00f2fe);
            background-size: 300% 300%;
            animation: gradientMove 3s ease infinite;
            box-shadow: 0px 6px 15px rgba(0,0,0,0.2);
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Mobile Responsive Styles */
        @media (max-width: 992px) {
            .contaiiner {
                flex-direction: column;
                text-align: center;
            }
            
            .left, .right {
                flex: 1 1 100%;
                width: 100%;
            }
            
            /* Reordering for mobile */
            .contaiiner {
                display: flex;
                flex-direction: column;
            }
            
            .right {
                order: -1; /* Move right section above left on mobile */
            }
            
            .left {
                order: 1;
            }
            
            .title {
                font-size: 2.3rem;
            }
            
            .subtitle {
                max-width: 100%;
            }
            
            .services {
                justify-content: center;
            }
            
            .services span {
                flex: 0 0 calc(50% - 1rem);
                justify-content: center;
                font-size: 0.9rem;
            }
            
            .stats-contaiiner {
                flex-direction: column;
                gap: 1rem;
            }
            
            .developers, .client-satisfaction {
                width: 100%;
                font-size: 1.3rem;
            }
        }

        @media (max-width: 576px) {
            .title {
                font-size: 2rem;
            }
            
            .services span {
                flex: 0 0 100%;
            }
            
            .tech span {
                flex: 0 0 calc(50% - 0.5rem);
                text-align: center;
                padding: 0.6rem 0.5rem;
                font-size: 0.8rem;
            }
            
            .avatar {
                width: 100px;
                height: 100px;
            }
            
            .bttn {
                width: 100%;
                justify-content: center;
            }
        }




    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #0066ff;
      --secondary: #8a2be2;
      --accent: #ff3366;
      --gold: #ffb700;
      --light: #f8f9fa;
      --lighter: #ffffff;
      --dark: #1a1a1a;
      --glass: rgba(255, 255, 255, 0.7);
      --glow: rgba(0, 102, 255, 0.1);
    }

   
    /* Animated Background */
    .bg-animation {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -2;
      background: linear-gradient(45deg, 
        #ffffff 0%, 
        #f0f8ff 25%, 
        #f5f0ff 50%, 
        #f0f8ff 75%, 
        #ffffff 100%);
      background-size: 400% 400%;
      animation: gradientShift 15s ease infinite;
    }

    .bg-animation::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 30% 20%, var(--primary) 0%, transparent 50%),
                  radial-gradient(circle at 80% 80%, var(--secondary) 0%, transparent 50%),
                  radial-gradient(circle at 40% 70%, var(--accent) 0%, transparent 50%);
      opacity: 0.05;
      animation: colorPulse 8s ease-in-out infinite alternate;
    }

    /* 3D Geometric Shapes */
    .geometric-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      pointer-events: none;
    }

    .shape {
      position: absolute;
      border: 1px solid rgba(0, 102, 255, 0.2);
      animation: rotate3d 20s linear infinite;
    }

    .shape:nth-child(1) {
      width: 100px;
      height: 100px;
      top: 10%;
      left: 10%;
      transform: rotate(45deg);
      animation-duration: 25s;
      border-color: rgba(255, 51, 102, 0.2);
    }

    .shape:nth-child(2) {
      width: 150px;
      height: 150px;
      top: 60%;
      right: 10%;
      border-radius: 50%;
      animation-duration: 30s;
      border-color: rgba(138, 43, 226, 0.2);
    }

    .shape:nth-child(3) {
      width: 80px;
      height: 80px;
      bottom: 20%;
      left: 20%;
      clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
      background: linear-gradient(45deg, rgba(0, 102, 255, 0.1), transparent);
      animation-duration: 35s;
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 2rem;
    }

    .hero-content {
      text-align: center;
      max-width: 1200px;
      z-index: 10;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--glass);
      border: 1px solid var(--primary);
      padding: 0.8rem 1.5rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 2rem;
      backdrop-filter: blur(20px);
      box-shadow: 0 0 30px var(--glow);
      animation: pulse 3s infinite;
    }

    .hero-badge i {
      color: var(--primary);
      animation: spin 3s linear infinite;
    }

    .hero-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(3rem, 8vw, 8rem);
      font-weight: 800;
      line-height: 0.9;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, 
        var(--primary) 0%, 
        var(--secondary) 30%, 
        var(--accent) 60%, 
        var(--gold) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
      text-shadow: 0 0 50px rgba(0, 102, 255, 0.1);
      animation: titleGlow 4s ease-in-out infinite alternate;
    }

    .hero-subtitle {
      font-size: clamp(1.2rem, 3vw, 1.8rem);
      font-weight: 300;
      margin-bottom: 3rem;
      opacity: 0.8;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 4rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      padding: 1.2rem 1.5rem;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      font-size: 1.1rem;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(20px);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      box-shadow: 0 10px 40px rgba(0, 102, 255, 0.2);
    }

    .btn-secondary {
      background: var(--glass);
      color: var(--primary);
      border: 2px solid var(--primary);
      box-shadow: 0 10px 40px rgba(0, 102, 255, 0.05);
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
      transition: left 0.5s;
    }

    .btn:hover::before {
      left: 100%;
    }

    .btn:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
    }

    /* Floating Cards */
    .floating-cards {
      position: absolute;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .floating-card {
      position: absolute;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 20px;
      padding: 1.5rem;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      animation: float 6s ease-in-out infinite;
    }

    .floating-card:nth-child(1) {
      top: 20%;
      left: 5%;
      animation-delay: 0s;
    }

    .floating-card:nth-child(2) {
      top: 30%;
      right: 5%;
      animation-delay: 2s;
    }

    .floating-card:nth-child(3) {
      bottom: 20%;
      left: 8%;
      animation-delay: 4s;
    }

    .card-icon {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 0.5rem;
      text-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
    }

    .card-title {
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .card-desc {
      font-size: 0.9rem;
      opacity: 0.7;
    }

    /* Stats Section */
    .stats-section {
      padding: 8rem 2rem;
      position: relative;
      z-index: 5;
    }

    .stats-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
    }

    .stat-card {
      text-align: center;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 25px;
      padding: 3rem 2rem;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--gold));
      border-radius: 25px;
      z-index: -1;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .stat-card:hover::before {
      opacity: 1;
    }

    .stat-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(0, 102, 255, 0.2);
    }

    .stat-number {
      font-size: 3.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1rem;
      text-shadow: 0 0 30px rgba(0, 102, 255, 0.1);
    }

    .stat-label {
      font-size: 1.2rem;
      font-weight: 500;
      opacity: 0.8;
    }

    /* Services Grid */
    .services-section {
      padding: 8rem 2rem;
      background: linear-gradient(135deg, rgba(0, 102, 255, 0.03), rgba(138, 43, 226, 0.03));
    }

    .services-title {
      text-align: center;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      margin-bottom: 4rem;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .services-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
    }

    .service-card {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 30px;
      padding: 3rem;
      position: relative;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      cursor: pointer;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: -1;
    }

    .service-card:hover::before {
      opacity: 0.05;
    }

    .service-card:hover {
      transform: translateY(-15px) rotateX(5deg);
      box-shadow: 0 40px 80px rgba(0, 102, 255, 0.15);
    }

    .service-icon {
      font-size: 3rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
      text-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
    }

    .service-title {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .service-desc {
      opacity: 0.8;
      line-height: 1.6;
      margin-bottom: 2rem;
    }

    .service-features {
      list-style: none;
    }

    .service-features li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.8rem;
      font-size: 0.95rem;
    }

    .service-features li::before {
      content: '✓';
      color: var(--primary);
      font-weight: bold;
    }

    /* Tech Stack Visualization */
    .tech-section {
      padding: 8rem 2rem;
      position: relative;
    }

    .tech-title {
      text-align: center;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      margin-bottom: 4rem;
      background: linear-gradient(135deg, var(--accent), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .tech-orbit {
      position: relative;
      width: 500px;
      height: 500px;
      margin: 0 auto;
      border-radius: 50%;
      border: 2px solid rgba(0, 102, 255, 0.1);
    }

    .tech-center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 120px;
      height: 120px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: 800;
      color: white;
      box-shadow: 0 0 50px rgba(0, 102, 255, 0.2);
    }

    .tech-item {
      position: absolute;
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(20px);
      border: 2px solid var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--primary);
      animation: orbit 20s linear infinite;
    }

    .tech-item:nth-child(1) { transform: rotate(0deg) translateX(200px) rotate(0deg); animation-delay: 0s; }
    .tech-item:nth-child(2) { transform: rotate(60deg) translateX(200px) rotate(-60deg); animation-delay: -3s; }
    .tech-item:nth-child(3) { transform: rotate(120deg) translateX(200px) rotate(-120deg); animation-delay: -6s; }
    .tech-item:nth-child(4) { transform: rotate(180deg) translateX(200px) rotate(-180deg); animation-delay: -9s; }
    .tech-item:nth-child(5) { transform: rotate(240deg) translateX(200px) rotate(-240deg); animation-delay: -12s; }
    .tech-item:nth-child(6) { transform: rotate(300deg) translateX(200px) rotate(-300deg); animation-delay: -15s; }

    /* Contact Section */
    .contact-section {
      padding: 8rem 2rem;
      background: linear-gradient(135deg, rgba(255, 51, 102, 0.03), rgba(0, 102, 255, 0.03));
      text-align: center;
    }

    .contact-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      margin-bottom: 2rem;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .contact-form {
      max-width: 600px;
      margin: 0 auto;
      display: grid;
      gap: 2rem;
    }

    .form-group {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-input {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(20px);
      border: 2px solid rgba(0, 0, 0, 0.1);
      border-radius: 15px;
      padding: 1.2rem 1.5rem;
      color: var(--dark);
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .form-input:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 30px rgba(0, 102, 255, 0.1);
    }

    .form-textarea {
      grid-column: 1 / -1;
      min-height: 120px;
      resize: vertical;
    }

    .form-submit {
      grid-column: 1 / -1;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      border: none;
      border-radius: 50px;
      padding: 1.5rem 3rem;
      font-size: 1.2rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .form-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
    }

    /* Animations */
    @keyframes gradientShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    @keyframes colorPulse {
      0% { opacity: 0.03; }
      100% { opacity: 0.08; }
    }

    @keyframes rotate3d {
      0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
      33% { transform: rotateX(360deg) rotateY(120deg) rotateZ(180deg); }
      66% { transform: rotateX(180deg) rotateY(240deg) rotateZ(360deg); }
      100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(0, 102, 255, 0.1); }
      50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(0, 102, 255, 0.2); }
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes titleGlow {
      0%, 100% { text-shadow: 0 0 50px rgba(0, 102, 255, 0.1); }
      50% { text-shadow: 0 0 80px rgba(0, 102, 255, 0.2), 0 0 100px rgba(0, 102, 255, 0.1); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) rotateY(0deg); }
      50% { transform: translateY(-20px) rotateY(10deg); }
    }

    @keyframes orbit {
      0% { transform: rotate(0deg) translateX(200px) rotate(0deg); }
      100% { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .floating-cards {
        display: none;
      }
      
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .form-group {
        grid-template-columns: 1fr;
      }
      
      .tech-orbit {
        width: 350px;
        height: 350px;
      }
      
      .tech-item:nth-child(n) {
        transform: rotate(calc(var(--i) * 60deg)) translateX(150px) rotate(calc(var(--i) * -60deg));
      }
    }

    @media (max-width: 480px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
      
      .stats-container {
        grid-template-columns: 1fr;
      }
      
      .tech-orbit {
        width: 280px;
        height: 280px;
      }
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--lighter);
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(135deg, var(--secondary), var(--accent));
    }
