
        :root {
            --primary: #0066ff;
            --primary-dark: #0055dd;
            --primary-light: rgba(0, 102, 255, 0.1);
            --secondary: #6c757d;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #28a745;
            --gradient: linear-gradient(135deg, var(--primary) 0%, #003366 100%);
        }



        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */






        /* Software Development Intro */
        .software-intro {
            text-align: center;
            margin: 100px auto;
            max-width: 800px;
            position: relative;
        }

        /* Process Steps Grid */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }


        .software-intro h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        .software-intro h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .software-intro p {
            font-size: 1.1rem;
            color: var(--secondary);
        }

        /* Development Process */
        .dev-process {
            background:
                url('https://images.unsplash.com/photo-1586830746542-19b25c53497f?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NjN8fHdoaXRlfGVufDB8fDB8fHww');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            padding: 80px 0;
            margin: 80px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .dev-process::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" fill="none" stroke="%230066ff" stroke-width="0.5" stroke-opacity="0.1"><path d="M0 0 L100 0 L100 100 L0 100 Z" /></svg>');
            opacity: 0.1;
            z-index: 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section-title p {
            color: var(--secondary);
            max-width: 700px;
            margin: 15px auto 0;
        }

        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .process-step {
            flex: 1;
            min-width: 270px;
            max-width: 350px;
            text-align: center;
            padding: 40px 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .process-step.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .process-step:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            color: white;
        }

        .process-step:hover::before {
            opacity: 1;
        }

        .process-step:hover .step-icon {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .process-step:hover .step-title,
        .process-step:hover p {
            color: white;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .step-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
            transition: color 0.3s ease;
        }

        .process-step p {
            transition: color 0.3s ease;
        }





        /* Technologies Stack */
        .tech-stack {
            /* margin: 100px 0; */
            /* position: relative; */
        }

        /* Main Section Styling */
        .tech-stack {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 100px 0;
            width: 100%;
            position: relative;
            overflow: hidden;
        }



        /* Technology Grid */
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 25px;
            justify-items: center;
        }

        /* Technology Cards */
        .tech-card {
            background: white;
            width: 100%;
            padding: 30px 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }



        /* Specific technology colors */
        .fa-js {
            color: #f7df1e;
        }

        .fa-python {
            color: #3776ab;
        }

        .fa-java {
            color: #007396;
        }

        .fa-node-js {
            color: #68a063;
        }

        .fa-database {
            color: #00758f;
        }

        .fa-react {
            color: #61dafb;
        }

        .fa-angular {
            color: #dd0031;
        }

        .fa-aws {
            color: #ff9900;
        }

        .fa-microsoft {
            color: #5e5e5e;
        }

        .fa-docker {
            color: #2496ed;
        }


        .tech-stack::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 0;
            width: 100%;
            height: 200px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f5f7fa" fill-opacity="1" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            z-index: -1;
        }

        .tech-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 50px;
            perspective: 1000px;
        }

        .tech-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            width: 160px;
            height: 160px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(20px) rotateY(20deg);
            position: relative;
            overflow: hidden;
        }

        .tech-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .tech-card.visible {
            opacity: 1;
            transform: translateY(0) rotateY(0);
        }

        .tech-card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            color: white;
        }

        .tech-card:hover::before {
            opacity: 1;
        }

        .tech-card:hover .tech-icon {
            color: white;
            transform: scale(1.2) rotate(10deg);
        }

        .tech-card:hover .tech-name {
            color: white;
        }

        .tech-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .tech-name {
            font-weight: 600;
            text-align: center;
            transition: color 0.3s ease;
        }

        /* Software Services */
        .software-services {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
            padding: 100px 0;
            margin: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .software-services::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            z-index: 0;
        }

        .services-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .service-tab {
            padding: 12px 25px;
            background: white;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #eee;
            position: relative;
            overflow: hidden;
        }

        .service-tab::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-tab.active,
        .service-tab:hover {
            color: white;
            box-shadow: 0 5px 20px rgba(0, 102, 255, 0.2);
            transform: translateY(-3px);
        }

        .service-tab.active::before,
        .service-tab:hover::before {
            opacity: 1;
        }

        .service-content {
            background: white;
            border-radius: 10px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            display: none;
            position: relative;
            z-index: 1;
            transform-origin: top center;
            animation: scaleIn 0.5s ease;
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .service-content.active {
            display: block;
        }

        .service-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        .service-content h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .service-content p {
            margin-bottom: 25px;
            color: var(--secondary);
        }

        .service-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .feature-item {
            display: flex;
            gap: 15px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(5px);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            background: var(--primary);
            color: white;
            transform: rotate(15deg);
        }

        /* Case Studies */
        .case-studies {
            margin: 100px 0;
            position: relative;
        }

        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .case-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }

        .case-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .case-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .case-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .case-card:hover::before {
            opacity: 0.8;
        }

        .case-card:hover .case-info h3,
        .case-card:hover .case-info p,
        .case-card:hover .stat-number,
        .case-card:hover .stat-label {
            color: white;
            z-index: 2;
            position: relative;
        }

        .case-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            transition: all 0.5s ease;
            position: relative;
        }

        .case-card:hover .case-image {
            transform: scale(1.1);
        }

        .case-info {
            padding: 30px;
            position: relative;
        }

        .case-info h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .case-info p {
            color: var(--secondary);
            margin-bottom: 20px;
            transition: color 0.3s ease;
        }

        .case-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            transition: all 0.3s ease;
        }

        .case-card:hover .case-stats {
            border-color: rgba(255, 255, 255, 0.3);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            transition: color 0.3s ease;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--secondary);
            transition: color 0.3s ease;
        }

        /* CTA Section */
        /* .cta-section {
            background: var(--gradient);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
            margin-top: 100px;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
            opacity: 0.1;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        } */
        /* 
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .btn {
            display: inline-block;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn-primary {
            background: white;
            color: var(--primary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-primary:hover::before {
            opacity: 1;
            color: white;
        }

        .btn-outline {
            border: 2px solid white;
            color: white;
            background: transparent;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-outline:hover::before {
            opacity: 0.2;
        } */

        /* Floating Shapes */
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            z-index: 0;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--primary);
            top: -150px;
            right: -150px;
            animation: float 15s ease-in-out infinite;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: var(--primary);
            bottom: -100px;
            left: -100px;
            animation: float 12s ease-in-out infinite reverse;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }


        /* Animations */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }

            .subtitle {
                font-size: 1.1rem;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .process-step {
                min-width: 220px;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 80px 0 120px;
                clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
            }

            h1 {
                font-size: 2.2rem;
            }

            .nav-links {
                display: none;
            }

            .process-step {
                max-width: 100%;
            }

            .service-content {
                padding: 30px;
            }

            .cta-title {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 250px;
            }
        }

        @media (max-width: 576px) {
            header {
                padding: 70px 0 100px;
            }

            .software-intro h2 {
                font-size: 2rem;
            }

            .case-grid {
                grid-template-columns: 1fr;
            }

            .tech-card {
                width: 130px;
                height: 130px;
            }

            .tech-icon {
                font-size: 2.5rem;
            }

            .services-tabs {
                flex-direction: column;
                align-items: center;
            }

            .service-tab {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }
        }

        :root {
            --primary-color: #3498db;
            --secondary-color: #2c3e50;
            --text-color: #34495e;
            --light-text: #7f8c8d;
            --background-light: #f8f9fa;
            --background-gradient: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            --white: #ffffff;
            --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.1);
            --shadow-primary: 0 5px 15px rgba(52, 152, 219, 0.3);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }



        .software-services {
            padding: 5rem 0;
            /* background: var(--background-gradient); */
            background: url(https://images.unsplash.com/photo-1619252584172-a83a949b6efd?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1yZWxhdGVkfDZ8fHxlbnwwfHx8fHw%3D);
            /* background-color: url(https://images.unsplash.com/photo-1751971725935-84dd6f5e3544?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D) !important; */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3.75rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 0.75rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .section-subtitle {
            color: var(--light-text);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 1.5rem;
        }

        .divider {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 1.25rem;
        }

        .divider-dot {
            width: 10px;
            height: 10px;
            background: var(--primary-color);
            border-radius: 50%;
            margin: 0 10px;
        }

        .divider-line {
            width: 80px;
            height: 2px;
            background: var(--primary-color);
        }

        .services-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
            gap: 0.625rem;
        }

        .service-tab {
            padding: 0.75rem 1.5rem;
            cursor: pointer;
            border-radius: 50px;
            font-weight: 600;
            color: var(--text-color);
            transition: var(--transition);
            display: flex;
            align-items: center;
            position: relative;
            background: var(--white);
            box-shadow: var(--shadow-sm);
            margin: 0.25rem;
            border: none;
            outline: none;
        }

        .service-tab:focus-visible {
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.5);
        }

        .service-tab i {
            margin-right: 0.625rem;
            font-size: 1.1rem;
            color: var(--primary-color);
        }

        .service-tab.active {
            background: var(--primary-color);
            color: var(--white);
        }

        .service-tab.active i {
            color: var(--white);
        }

        .service-tab:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .tab-indicator {
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 70%;
            height: 3px;
            background: var(--primary-color);
            border-radius: 3px;
            transition: transform 0.3s ease;
        }

        .service-tab.active .tab-indicator {
            transform: translateX(-50%) scaleX(1);
        }

        .services-content {
            position: relative;
            min-height: 500px;
        }

        .service-panel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s ease;
            transform: translateY(20px);
        }

        .service-panel.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .panel-wrapper {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .panel-text {
            flex: 1;
        }

        .panel-image {
            flex: 1;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .service-img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(52, 152, 219, 0.3) 0%, rgba(155, 89, 182, 0.3) 100%);
            opacity: 0.7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.875rem;
            margin: 2.5rem 0;
        }

        .feature-card {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.2rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            flex-shrink: 0;
        }

        .feature-icon.pulse:hover {
            animation: pulse 1s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
            }
        }

        .feature-title {
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .feature-desc {
            color: var(--light-text);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* 
        .btn {
            display: inline-flex;
            align-items: center;
            padding: 0.75rem 1.875rem;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-primary);
        }

        .btn:focus-visible {
            outline: 2px dashed var(--secondary-color);
            outline-offset: 3px;
        }

        .btn i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(52,152,219,0.4);
        }

        .btn:hover i {
            transform: translateX(5px);
        } */

        /* Responsive Styles */
        @media (max-width: 992px) {
            .panel-wrapper {
                flex-direction: column;
            }

            .panel-text,
            .panel-image {
                width: 100%;
            }

            .service-tab {
                padding: 0.75rem 1.25rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .software-services {
                padding: 3rem 0;
            }
        }

        @media (max-width: 576px) {
            .services-tabs {
                flex-direction: column;
                align-items: center;
            }

            .service-tab {
                width: 100%;
                justify-content: center;
            }
        }

        /* Main Section Styling */
        .tech-stack {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 120px 0;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .tech-stack::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 30%, rgba(52, 152, 219, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(155, 89, 182, 0.03) 0%, transparent 40%);
            animation: float 15s infinite alternate ease-in-out;
        }

        @keyframes float {
            0% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(-20px, -20px);
            }

            100% {
                transform: translate(20px, 20px);
            }
        }

        /* Container for content */
        .section-title,
        .tech-grid-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* Section Title Styling */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .section-title.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title h2 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #2c3e50, #4a6491);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            transition-delay: 0.2s;
        }

        /* Tech Grid Container */
        .tech-grid-container {
            perspective: 1000px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out 0.3s;
        }

        .tech-grid-container.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Technology Grid */
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 30px;
            justify-items: center;
        }

        /* Technology Cards */
        .tech-card {
            background: white;
            width: 100%;
            padding: 35px 20px;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.03);
            opacity: 0;
            transform: translateY(30px) rotateX(15deg);
        }

        .tech-card.animate:hover {
            opacity: 1;
            transform: translateY(0) rotateX(100);
        }



        /* Technology Specific Colors */
        .tech-card.js {
            --primary-color: #f7df1e;
            --secondary-color: #f0b823;
        }

        .tech-card.python {
            --primary-color: #3776ab;
            --secondary-color: #ffd343;
        }

        .tech-card.java {
            --primary-color: #007396;
            --secondary-color: #ea2d2e;
        }

        .tech-card.node {
            --primary-color: #68a063;
            --secondary-color: #3c873a;
        }

        .tech-card.sql {
            --primary-color: #00758f;
            --secondary-color: #f29111;
        }

        .tech-card.react {
            --primary-color: #61dafb;
            --secondary-color: #087ea4;
        }

        .tech-card.angular {
            --primary-color: #dd0031;
            --secondary-color: #c3002f;
        }

        .tech-card.aws {
            --primary-color: #ff9900;
            --secondary-color: #232f3e;
        }

        .tech-card.dotnet {
            --primary-color: #512bd4;
            --secondary-color: #68217a;
        }

        .tech-card.docker {
            --primary-color: #2496ed;
            --secondary-color: #1d63ed;
        }

        /* Card hover background */
        .tech-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .tech-card:hover::after {
            opacity: 1;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .tech-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .tech-stack {
                padding: 80px 0;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .tech-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 20px;
            }

            .tech-card {
                padding: 25px 15px;
            }

            .tech-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }
        }

        /* Process Section */
        .process {
            background: var(--dark);
            color: white;
            padding: 50px 0px;
        }

        .process h2:after {
            background: var(--accent);
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 3rem;
            position: relative;
        }

        .process-steps:before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 1;
            flex: 1;
            padding: 0 1rem;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            border: 5px solid var(--dark);
        }

        .step h3 {
            color: var(--accent);
        }

        /* Case Studies Section */
        .case-studies {
            padding: 80px 20px;
            background-color: #f9fafc;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #7f8c8d;
            line-height: 1.6;
        }

        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .case-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            transform: translateY(0);
        }

        .case-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .case-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .case-card:hover .image-overlay {
            opacity: 0.9;
        }

        .case-info {
            padding: 25px;
        }

        .case-info h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .case-info p {
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .case-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .stat-item {
            text-align: center;
            flex: 1;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #3498db;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #7f8c8d;
        }

        .case-link {
            display: inline-block;
            color: #3498db;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(-10px);
        }

        .case-card:hover .case-link {
            opacity: 1;
            transform: translateX(0);
        }

        .case-link:hover {
            color: #2980b9;
            text-decoration: underline;
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .case-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .case-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .case-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .case-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        /* Main Section Styling */
        .tech-stack {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 120px 0;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .tech-stack::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 30%, rgba(52, 152, 219, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(155, 89, 182, 0.03) 0%, transparent 40%);
            animation: float 15s infinite alternate ease-in-out;
        }

        @keyframes float {
            0% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(-20px, -20px);
            }

            100% {
                transform: translate(20px, 20px);
            }
        }

        /* Container for content */
        .section-title,
        .tech-grid-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* Section Title Styling */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .section-title.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title h2 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #2c3e50, #4a6491);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            transition-delay: 0.2s;
        }

        /* Tech Grid Container */
        .tech-grid-container {
            perspective: 1000px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out 0.3s;
        }

        .tech-grid-container.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Technology Grid */
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 30px;
            justify-items: center;
        }

        /* Technology Cards */
        .tech-card {
            background: white;
            width: 100%;
            padding: 35px 20px;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.03);
            opacity: 0;
            transform: translateY(30px) rotateX(15deg);
        }

        .tech-card.animate:hover {
            opacity: 1;
            transform: translateY(0) rotateX(100);
        }



        /* Technology Specific Colors */
        .tech-card.js {
            --primary-color: #f7df1e;
            --secondary-color: #f0b823;
        }

        .tech-card.python {
            --primary-color: #3776ab;
            --secondary-color: #ffd343;
        }

        .tech-card.java {
            --primary-color: #007396;
            --secondary-color: #ea2d2e;
        }

        .tech-card.node {
            --primary-color: #68a063;
            --secondary-color: #3c873a;
        }

        .tech-card.sql {
            --primary-color: #00758f;
            --secondary-color: #f29111;
        }

        .tech-card.react {
            --primary-color: #61dafb;
            --secondary-color: #087ea4;
        }

        .tech-card.angular {
            --primary-color: #dd0031;
            --secondary-color: #c3002f;
        }

        .tech-card.aws {
            --primary-color: #ff9900;
            --secondary-color: #232f3e;
        }

        .tech-card.dotnet {
            --primary-color: #512bd4;
            --secondary-color: #68217a;
        }

        .tech-card.docker {
            --primary-color: #2496ed;
            --secondary-color: #1d63ed;
        }

        /* Card hover background */
        .tech-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .tech-card:hover::after {
            opacity: 1;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .tech-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .tech-stack {
                padding: 80px 0;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .tech-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 20px;
            }

            .tech-card {
                padding: 25px 15px;
            }

            .tech-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }
        }

        /* Process Section */
        .process {
            background: var(--dark);
            color: white;
            padding: 50px 0px;
        }

        .process h2:after {
            background: var(--accent);
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 3rem;
            position: relative;
        }

        .process-steps:before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 1;
            flex: 1;
            padding: 0 1rem;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            border: 5px solid var(--dark);
        }

        .step h3 {
            color: var(--accent);
        }
  