:root {
            --neon-blue: #00f3ff;
            --neon-purple: #b967ff;
            --neon-pink: #ff2e9a;
            --dark-bg: #0a0a14;
            --dark-card: #151522;
            --dark-border: #2a2a3a;
            --text-light: #f0f0ff;
            --text-gray: #a0a0c0;
            --gradient-1: linear-gradient(135deg, #00f3ff 0%, #b967ff 50%, #ff2e9a 100%);
            --gradient-2: linear-gradient(135deg, #b967ff 0%, #ff2e9a 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-light);
            background-color: var(--dark-bg);
            overflow-x: hidden;
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(185, 103, 255, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0, 243, 255, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 40% 80%, rgba(255, 46, 154, 0.1) 0%, transparent 40%);
            z-index: -1;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        /* Geometric Background Elements */
        .bg-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }
        
        .bg-element {
            position: absolute;
            border-radius: 5px;
            opacity: 0.05;
            animation: float 20s infinite linear;
        }
        
        .bg-element-1 {
            width: 300px;
            height: 300px;
            background: var(--neon-blue);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .bg-element-2 {
            width: 200px;
            height: 200px;
            background: var(--neon-purple);
            top: 60%;
            right: 10%;
            animation-delay: -5s;
            animation-duration: 25s;
        }
        
        .bg-element-3 {
            width: 150px;
            height: 150px;
            background: var(--neon-pink);
            bottom: 20%;
            left: 15%;
            animation-delay: -10s;
            animation-duration: 30s;
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(10, 10, 20, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(42, 42, 58, 0.5);
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .logo-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
            position: relative;
            z-index: 2;
        }
        
        .logo::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }
        
        .logo:hover::before {
            opacity: 0.1;
        }
        
        .logo:hover .logo-text {
            transform: scale(1.05);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin-left: 2rem;
        }
        
        nav a {
            text-decoration: none;
            color: var(--text-light);
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        
        nav a:hover {
            color: var(--neon-blue);
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s ease;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            color: var(--text-light);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .mobile-menu-btn:hover {
            color: var(--neon-blue);
        }
        
        /* Hero Section - Custom Grid Layout */
        .hero {
            padding: 180px 0 150px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-container {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            grid-template-rows: auto auto;
            gap: 40px;
            grid-template-areas: 
                "text shape"
                "stats stats";
        }
        
        .hero-text {
            grid-area: text;
            animation: fadeUp 1s ease-out;
        }
        
        .hero-text h1 {
            font-size: 3.8rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        .hero-text p {
            font-size: 1.3rem;
            color: var(--text-gray);
            margin-bottom: 2.5rem;
            max-width: 700px;
        }
        
        .hero-shape-container {
            grid-area: shape;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        .hero-shape {
            width: 100%;
            max-width: 500px;
            height: 400px;
            background: var(--gradient-1);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation: morph 15s infinite linear;
            opacity: 0.8;
            filter: blur(1px);
            position: relative;
            overflow: hidden;
        }
        
        .hero-shape::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                repeating-linear-gradient(90deg, 
                    transparent, 
                    transparent 20px, 
                    rgba(255, 255, 255, 0.1) 20px, 
                    rgba(255, 255, 255, 0.1) 40px),
                repeating-linear-gradient(0deg, 
                    transparent, 
                    transparent 20px, 
                    rgba(255, 255, 255, 0.05) 20px, 
                    rgba(255, 255, 255, 0.05) 40px);
            opacity: 0.5;
        }
        
        .hero-stats {
            grid-area: stats;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .stat-item {
            background: rgba(21, 21, 34, 0.7);
            border: 1px solid var(--dark-border);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-10px);
            border-color: var(--neon-blue);
            background: rgba(21, 21, 34, 0.9);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }
        
        .stat-label {
            color: var(--text-gray);
            font-size: 1rem;
        }
        
        /* Creative Process Timeline */
        .process-section {
            padding: 100px 0;
            background: rgba(15, 15, 25, 0.5);
            border-top: 1px solid var(--dark-border);
            border-bottom: 1px solid var(--dark-border);
        }
        
        .process-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .process-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .process-title h2 {
            font-size: 2.8rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }
        
        .process-title p {
            color: var(--text-gray);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .process-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .process-line {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(42, 42, 58, 0.5);
            transform: translateY(-50%);
            z-index: 1;
        }
        
        .process-line-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: var(--gradient-1);
            z-index: 2;
            transition: width 1.5s ease-in-out;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 3;
            padding: 30px 0;
        }
        
        .process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            width: 20%;
        }
        
        .process-step-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--dark-card);
            border: 3px solid var(--dark-border);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 4;
            transition: all 0.5s ease;
        }
        
        .process-step-circle.active {
            background: var(--gradient-1);
            border-color: transparent;
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
        }
        
        .process-step-circle.completed {
            background: var(--gradient-1);
            border-color: transparent;
        }
        
        .process-step-circle i {
            font-size: 1.5rem;
            color: var(--text-light);
            transition: color 0.3s ease;
        }
        
        .process-step-circle.active i,
        .process-step-circle.completed i {
            color: var(--dark-bg);
        }
        
        .process-step-content {
            text-align: center;
            opacity: 0.6;
            transition: all 0.5s ease;
            transform: translateY(10px);
        }
        
        .process-step.active .process-step-content {
            opacity: 1;
            transform: translateY(0);
        }
        
        .process-step.completed .process-step-content {
            opacity: 1;
        }
        
        .process-step h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--text-light);
        }
        
        .process-step p {
            color: var(--text-gray);
            font-size: 0.9rem;
            line-height: 1.4;
        }
        
        .process-step-connector {
            position: absolute;
            top: 30px;
            left: 50%;
            width: 100%;
            height: 4px;
            background: transparent;
            z-index: 2;
        }
        
        .process-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }
        
        .process-btn {
            padding: 12px 25px;
            background: rgba(21, 21, 34, 0.7);
            border: 1px solid var(--dark-border);
            color: var(--text-light);
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .process-btn:hover {
            background: rgba(42, 42, 58, 0.7);
            border-color: var(--neon-blue);
        }
        
        .process-btn-primary {
            background: var(--gradient-1);
            border: none;
            box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
        }
        
        .process-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 243, 255, 0.4);
        }
        
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 5px 20px rgba(0, 243, 255, 0.3);
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-2);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 243, 255, 0.4);
        }
        
        .btn:hover::before {
            opacity: 1;
        }
        
        /* Services Section - Custom Asymmetric Grid */
        .section {
            padding: 120px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 3rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-1);
            border-radius: 2px;
        }
        
        .services-container {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--dark-card);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--dark-border);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            height: auto;
            min-height: 340px;
        }
        
        .service-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            border-color: var(--neon-blue);
            box-shadow: 0 15px 40px rgba(0, 243, 255, 0.15);
        }
        
        .service-card:hover::before {
            opacity: 0.05;
        }
        
        /* Services sizing / no clipping */
        .service-icon {
            height: 180px;
            flex: 0 0 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            background: rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .service-icon i {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 2;
        }
        
        .service-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(45deg, 
                    transparent 48%, 
                    rgba(0, 243, 255, 0.1) 50%, 
                    transparent 52%),
                linear-gradient(-45deg, 
                    transparent 48%, 
                    rgba(185, 103, 255, 0.1) 50%, 
                    transparent 52%);
            background-size: 40px 40px;
            opacity: 0.5;
        }
        
        .service-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            color: var(--text-light);
            margin-bottom: 10px;
        }
        
        .service-content p {
            color: var(--text-gray);
            margin-bottom: 15px;
            font-size: 0.95rem;
        
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
                .service-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: nowrap;
            gap: 12px;
        
            margin-top: auto;
            flex-wrap: wrap;
            gap: 14px;
        }
        .service-price .price { white-space: nowrap; }
        .service-price .btn { white-space: nowrap; }

        
        /* Portfolio Showcase Section */
        .portfolio-section {
            padding: 120px 0;
            background: rgba(15, 15, 25, 0.7);
            border-top: 1px solid var(--dark-border);
            border-bottom: 1px solid var(--dark-border);
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
            grid-auto-rows: 300px;
            grid-auto-flow: dense;
        }
        
       
        
        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .portfolio-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: filter 0.4s ease;
        }
        
        .portfolio-item:hover .portfolio-img {
            filter: brightness(1.06);
        }
        
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            color: white;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }
        
        .portfolio-overlay h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        
        .portfolio-overlay p {
            color: #ccc;
            font-size: 0.9rem;
        }
        
        .portfolio-item-large {
            grid-column: span 2;
            grid-row: span 1;
        }
        
        .portfolio-item-tall {
            grid-column: span 1;
            grid-row: span 2;
        }
        
        /* Digital Animation Showcase */
        .animation-section {
            padding: 150px 0;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(10, 10, 20, 0.9) 0%, rgba(21, 21, 34, 0.9) 100%);
        }
        
        .animation-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .animation-canvas {
            position: relative;
            width: 100%;
            height: 600px;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--dark-border);
            background: rgba(10, 10, 20, 0.7);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }
        
        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .particle {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient-1);
            pointer-events: none;
            opacity: 0.7;
            filter: blur(1px);
        }
        
        .animation-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 2;
            width: 100%;
            max-width: 800px;
            padding: 40px;
        }
        
        .animation-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
        }
        
        .animation-subtitle {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .animation-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }
        
        .animation-btn {
            padding: 12px 30px;
            background: rgba(21, 21, 34, 0.7);
            border: 1px solid var(--dark-border);
            color: var(--text-light);
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .animation-btn:hover {
            background: rgba(42, 42, 58, 0.7);
            border-color: var(--neon-blue);
            transform: translateY(-3px);
        }
        
        .animation-btn.active {
            background: var(--gradient-1);
            border-color: transparent;
            box-shadow: 0 5px 20px rgba(0, 243, 255, 0.3);
        }
        
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient-1);
            opacity: 0.1;
            filter: blur(10px);
            animation: floatShape 15s infinite linear;
        }
        
        .shape-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .shape-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 15%;
            animation-delay: -5s;
            animation-duration: 20s;
        }
        
        .shape-3 {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: -10s;
            animation-duration: 25s;
        }
        
        .pulse-ring {
            position: absolute;
            border-radius: 50%;
            border: 2px solid var(--neon-blue);
            opacity: 0;
            animation: pulseRing 3s infinite;
        }
        
        .ring-1 {
            width: 300px;
            height: 300px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 0s;
        }
        
        .ring-2 {
            width: 400px;
            height: 400px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 1s;
        }
        
        .ring-3 {
            width: 500px;
            height: 500px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 2s;
        }
        
        .data-stream {
            position: absolute;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, var(--neon-blue), transparent);
            opacity: 0.3;
            animation: dataStream 10s infinite linear;
        }
        
        .stream-1 {
            left: 20%;
            animation-delay: 0s;
        }
        
        .stream-2 {
            left: 40%;
            animation-delay: -2s;
        }
        
        .stream-3 {
            left: 60%;
            animation-delay: -4s;
        }
        
        .stream-4 {
            left: 80%;
            animation-delay: -6s;
        }
        
        /* Testimonials Section - Wide Layout */
        .testimonials {
            padding: 120px 0;
            background: rgba(10, 10, 20, 0.8);
        }
        
        .testimonials-container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: center;
        }
        
        .testimonials-intro {
            padding-right: 40px;
        }
        
        .testimonials-intro h2 {
            font-size: 2.8rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }
        
        .testimonials-intro p {
            color: var(--text-gray);
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .testimonial-slider-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            border: 1px solid var(--dark-border);
            background: var(--dark-card);
        }
        
        .testimonial-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .testimonial-card {
            min-width: 100%;
            padding: 50px;
            text-align: center;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 5rem;
            font-family: 'Space Grotesk', sans-serif;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.3;
        }
        
        .testimonial-avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            margin: 0 auto 25px;
            overflow: hidden;
            border: 3px solid transparent;
            background: var(--gradient-1);
            padding: 3px;
        }
        
        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        
        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 25px;
            color: var(--text-light);
            line-height: 1.8;
        }
        
        .testimonial-author {
            font-weight: 700;
            color: var(--text-light);
            font-size: 1.3rem;
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .testimonial-role {
            color: var(--neon-blue);
            font-size: 1rem;
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }
        
        .testimonial-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: var(--dark-border);
            margin: 0 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-dot::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .testimonial-dot.active {
            transform: scale(1.2);
        }
        
        .testimonial-dot.active::before {
            opacity: 1;
        }
        
        /* Contact Section - Extended Layout */
        .contact-section {
            padding: 120px 0;
            position: relative;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .contact-card {
            background-color: var(--dark-card);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid var(--dark-border);
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-1);
        }
        
        .contact-card h3 {
            color: var(--text-light);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            font-size: 1.5rem;
        }
        
        .contact-card h3 i {
            margin-right: 15px;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.8rem;
        }
        
        .contact-form {
            background-color: var(--dark-card);
            padding: 50px;
            border-radius: 20px;
            border: 1px solid var(--dark-border);
            position: relative;
        }
        
        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(45deg, 
                    transparent 48%, 
                    rgba(0, 243, 255, 0.05) 50%, 
                    transparent 52%),
                linear-gradient(-45deg, 
                    transparent 48%, 
                    rgba(185, 103, 255, 0.05) 50%, 
                    transparent 52%);
            background-size: 60px 60px;
            opacity: 0.3;
            pointer-events: none;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--text-light);
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 16px 20px;
            background-color: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--dark-border);
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            color: var(--text-light);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--neon-blue);
            box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.1);
        }
        
        textarea.form-control {
            min-height: 160px;
            resize: vertical;
        }
        
        /* Company Info - Extended Layout */
        .company-info {
            margin-top: 100px;
            padding: 60px;
            background-color: var(--dark-card);
            border-radius: 20px;
            border: 1px solid var(--dark-border);
            position: relative;
            overflow: hidden;
        }
        
        .company-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0.03;
        }
        
        .company-info h3 {
            color: var(--text-light);
            margin-bottom: 40px;
            font-size: 2rem;
            position: relative;
            text-align: center;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }
        
        .info-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .info-item i {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .info-item h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--text-light);
        }
        
        .info-item p {
            color: var(--text-gray);
            line-height: 1.6;
        }
        
        /* Footer */
        footer {
            background-color: rgba(5, 5, 10, 0.95);
            color: var(--text-light);
            padding: 80px 0 30px;
            border-top: 1px solid var(--dark-border);
            margin-top: 100px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 25px;
        }
        
        .footer-about {
            max-width: 300px;
        }
        
        .footer-about p {
            color: var(--text-gray);
            margin-bottom: 25px;
            line-height: 1.8;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--dark-card);
            border-radius: 50%;
            color: var(--text-light);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-links a:hover {
            background: var(--gradient-1);
            transform: translateY(-3px);
        }
        
        .footer-links h4, .footer-policies h4, .footer-newsletter h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: var(--text-light);
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .footer-links ul, .footer-policies ul {
            list-style: none;
        }
        
        .footer-links li, .footer-policies li {
            margin-bottom: 12px;
        }
        
        .footer-links a, .footer-policies a {
            color: var(--text-gray);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover, .footer-policies a:hover {
            color: var(--neon-blue);
            padding-left: 5px;
        }
        
        .footer-newsletter p {
            color: var(--text-gray);
            margin-bottom: 20px;
        }
        
        .newsletter-form {
            display: flex;
            gap: 10px;
        }
        
        .newsletter-input {
            flex-grow: 1;
            padding: 12px 15px;
            background-color: var(--dark-card);
            border: 1px solid var(--dark-border);
            border-radius: 8px;
            color: var(--text-light);
        }
        
        .newsletter-input:focus {
            outline: none;
            border-color: var(--neon-blue);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        /* Animations */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(10px, 20px) rotate(90deg);
            }
            50% {
                transform: translate(20px, 10px) rotate(180deg);
            }
            75% {
                transform: translate(10px, 0) rotate(270deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }
        
        @keyframes morph {
            0% {
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            }
            25% {
                border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
            }
            50% {
                border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
            }
            75% {
                border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
            }
            100% {
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            }
        }
        
        @keyframes floatShape {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, -50px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 40px) rotate(240deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }
        
        @keyframes pulseRing {
            0% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 0.8;
            }
            100% {
                transform: translate(-50%, -50%) scale(1.5);
                opacity: 0;
            }
        }
        
        @keyframes dataStream {
            0% {
                transform: translateY(-100%);
            }
            100% {
                transform: translateY(100%);
            }
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(0, 243, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(0, 243, 255, 0);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .container {
                padding: 0 30px;
            }
            
            .services-container {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 300px);
            }
            
            .portfolio-item-large {
                grid-column: span 2;
                grid-row: span 1;
            }
            
            .portfolio-item-tall {
                grid-column: span 1;
                grid-row: span 1;
            }
            
            .testimonials-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .testimonials-intro {
                padding-right: 0;
                text-align: center;
            }
            
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .process-step {
                width: 33%;
                margin-bottom: 30px;
            }
            
            .animation-canvas {
                height: 500px;
            }
            
            .animation-title {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero-container {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto auto;
                grid-template-areas: 
                    "text"
                    "shape"
                    "stats";
            }
            
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(6, 300px);
            }
            
            .portfolio-item-large, .portfolio-item-tall {
                grid-column: span 1;
                grid-row: span 1;
            }
            
            .animation-canvas {
                height: 400px;
            }
            
            .animation-title {
                font-size: 2.2rem;
            }
            
            .animation-subtitle {
                font-size: 1.1rem;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .info-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-step {
                width: 50%;
            }
            
            .process-line {
                display: none;
            }
            
            .process-line-fill {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
            
            .header-container {
                padding: 20px;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 20, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
                border-top: 1px solid var(--dark-border);
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav li {
                margin: 10px 0;
                margin-left: 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-text h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .hero-stats {
                grid-template-columns: 1fr;
            }
            
            .services-container {
                grid-template-columns: 1fr;
            }
            
            .testimonial-card {
                padding: 40px 25px;
            }
            
            .contact-form {
                padding: 40px 25px;
            }
            
            .company-info {
                padding: 40px 25px;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                width: 100%;
            }
            
            .process-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .animation-canvas {
                height: 350px;
            }
            
            .animation-title {
                font-size: 1.8rem;
            }
            
            .animation-subtitle {
                font-size: 1rem;
            }
            
            .animation-controls {
                flex-direction: column;
                align-items: center;
            }
            
            .animation-btn {
                width: 200px;
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 160px 0 100px;
            }
            
            .section, .animation-section {
                padding: 100px 0;
            }
            
            .hero-shape {
                height: 300px;
            }
            
            .service-card {
                margin: 0 auto;
                max-width: 100%;
            }
            
            .animation-canvas {
                height: 300px;
            }
        }


/* === Brand assets (logo + favicon) === */
.logo .brand-logo{
  width: 99px;
  object-fit: contain;
  margin-right: 12px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
  flex: 0 0 auto;
}
@media (max-width: 680px){
  .logo .brand-logo{ width: 36px; height: 36px; margin-right: 10px; }
}

/* Footer logo image + text */
.footer-logo{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer-logo .brand-logo{
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
  flex: 0 0 auto;
}
/* Keep gradient only on footer text */
.footer-logo span{
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ===== Portfolio: container equals image size (no extra height) ===== */

/* сетка */
.portfolio-grid{
  align-items: start; /* важно: не растягивать карточки по высоте */
}

/* карточка */
.portfolio-item,
.portfolio-card{
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  display: block !important;
  padding: 0 !important; /* если у тебя padding даёт "пустое поле" */
  overflow: hidden;       /* скругления/тени */
}

/* обёртка под img, если есть */
.portfolio-image,
.portfolio-thumb,
.portfolio-preview{
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
}

/* сама картинка */
.portfolio-item img,
.portfolio-card img,
.portfolio-image img,
.portfolio-thumb img,
.portfolio-preview img{
  display: block;
  width: 100%;
  height: auto !important;
  object-fit: initial !important; /* убираем contain/cover */
}
.portfolio-grid{
  grid-auto-rows: auto !important;
}
/* ===== Neo Select (custom dropdown) ===== */
.neo-select{ position:relative; width:100%; }

.neo-select__btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;

  padding:14px 16px;
  border-radius:12px;

  background: rgba(15, 18, 35, .65);
  border: 1px solid rgba(140, 90, 255, .35);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.25) inset,
    0 12px 28px rgba(0,0,0,.35);
  color:#fff;
  font-family: inherit;
  font-size: 1rem;
  cursor:pointer;

  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.neo-select__btn:hover{
  border-color: rgba(120, 220, 255, .55);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.25) inset,
    0 18px 40px rgba(0,0,0,.45);
}

.neo-select__btn:focus{
  outline:none;
  border-color: rgba(120, 220, 255, .8);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.25) inset,
    0 0 0 4px rgba(120,220,255,.12),
    0 18px 40px rgba(0,0,0,.45);
}

.neo-select__value{
  display:block;
  text-align:left;
  color:#e9e9ff;
}

.neo-select__value.is-placeholder{
  color: rgba(233,233,255,.65);
}

/* Chevron */
.neo-select__chev{
  width:12px;
  height:12px;
  flex:0 0 12px;
  border-right: 2px solid rgba(120,220,255,.9);
  border-bottom: 2px solid rgba(176, 90, 255, .9);
  transform: rotate(45deg);
  transition: transform .2s ease;
}

/* Panel */
.neo-select__panel{
  position:absolute;
  left:0; right:0;
  top: calc(100% + 10px);
  z-index: 30;

  padding:10px;
  border-radius:14px;

  background: rgba(10, 12, 24, .92);
  border: 1px solid rgba(120,220,255,.22);
  box-shadow:
    0 18px 50px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.03) inset;

  opacity:0;
  transform: translateY(-6px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}

/* Open state */
.neo-select.is-open .neo-select__panel{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}

.neo-select.is-open .neo-select__chev{
  transform: rotate(225deg);
}

/* Options */
.neo-select__option{
  width:100%;
  text-align:left;
  padding:12px 12px;
  border-radius:12px;
  border:0;
  background: transparent;
  color: rgba(233,233,255,.9);
  cursor:pointer;
  font-family: inherit;
  font-size: .98rem;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

.neo-select__option:hover{
  background: rgba(120,220,255,.10);
  color:#fff;
  transform: translateX(2px);
}

.neo-select__option.is-selected{
  background: linear-gradient(90deg, rgba(120,220,255,.18), rgba(176,90,255,.18));
  border: 1px solid rgba(120,220,255,.18);
}

/* Mobile: clamp */
@media (max-width: 680px){
  .neo-select__btn{ padding: 13px 14px; border-radius: 12px; }
  .neo-select__panel{ border-radius: 14px; }
}
/* ===== Portfolio: stable grid, cards = image size ===== */

.portfolio-grid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;

  /* Ключ: не фиксируем ряды и не используем dense-мейсонри */
  grid-auto-rows: auto !important;
  grid-auto-flow: row !important;

  align-items: start !important;
}

@media (max-width: 1024px){
  .portfolio-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 680px){
  .portfolio-grid{ grid-template-columns: 1fr !important; }
}

/* Карточка не должна иметь фиксированной высоты */
.portfolio-item,
.portfolio-card{
  position: relative !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;

  overflow: hidden !important;
  border-radius: 18px; /* под твой стиль */
  
  /* ВАЖНО: никаких трансформов, иначе “наезжает” */
  transform: none !important;
}

/* Если есть обертка для img — тоже без фикс-высоты */
.portfolio-image,
.portfolio-thumb,
.portfolio-preview{
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
}

/* Картинка задает высоту карточки */
.portfolio-item img,
.portfolio-card img{
  display: block;
  width: 100%;
  height: auto !important;

  /* полностью видна */
  object-fit: contain !important;

  /* убираем zoom на hover */
  transform: none !important;
}

/* hover: только тень/свечение, без scale */
.portfolio-item:hover,
.portfolio-card:hover{
  transform: none !important;
}
/* ===== Portfolio card: image must not overlap text ===== */

.portfolio-item,
.portfolio-card{
  position: relative;
  overflow: hidden;      /* чтобы ничего не вылезало за скругления */
}

/* обёртка картинки ДОЛЖНА быть в потоке */
.portfolio-image,
.portfolio-thumb,
.portfolio-preview{
  position: relative !important;
  inset: auto !important;
  width: 100%;
  height: auto !important;
  display: block;
}

/* сама картинка */
.portfolio-item img,
.portfolio-card img{
  position: relative !important;
  display: block;
  width: 100%;
  height: auto !important;
  object-fit: contain;
  transform: none !important;
}
.portfolio-item,
.portfolio-card{
  display: flex;
  flex-direction: column;
}

.portfolio-content,
.portfolio-info{
  padding: 14px 16px;
}
/* ===========================
   PORTFOLIO: NO CROP / NO FIXED HEIGHT
   =========================== */

/* 1) Grid: обычный, без masonry-хаков */
.portfolio-grid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;

  grid-auto-rows: auto !important;
  grid-auto-flow: row !important;

  align-items: start !important;
  justify-items: stretch !important;
}

@media (max-width: 1024px){
  .portfolio-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 680px){
  .portfolio-grid{ grid-template-columns: 1fr !important; }
}

/* 2) Карточка НЕ должна иметь фикс- высоту/ratio */
.portfolio-item,
.portfolio-card{
  position: relative !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;

  aspect-ratio: auto !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden !important; /* скругление/тени */
  transform: none !important;
}

/* 3) Если есть обертка изображения — тоже авто */
.portfolio-image,
.portfolio-thumb,
.portfolio-preview{
  position: relative !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;

  aspect-ratio: auto !important;

  overflow: hidden !important;
}

/* 4) Картинка должна задавать высоту карточки */
.portfolio-item img,
.portfolio-card img{
  display: block !important;

  width: 100% !important;
  height: auto !important;
  max-height: none !important;

  object-fit: contain !important;

  /* отключаем любые zoom/translate которые могут “резать” */
  transform: none !important;
  position: relative !important;
}

/* 5) УБРАТЬ 100% высоты (это главный убийца, из-за него режет) */
.portfolio-image img,
.portfolio-thumb img,
.portfolio-preview img{
  height: auto !important;
}

/* 6) На всякий случай: если кто-то делал абсолютный слой */
.portfolio-image,
.portfolio-thumb,
.portfolio-preview,
.portfolio-item img,
.portfolio-card img{
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  inset: auto !important;
}
/* =========================================================
   PATCH: Portfolio + Services (no crop, no overlap, no cut price)
   Put this block at the VERY END of style.css
   ========================================================= */

/* -------------------------
   PORTFOLIO (no fixed rows, image defines height)
   ------------------------- */
.portfolio-grid{
  /* disable fixed row layout */
  grid-template-rows: none !important;
  grid-auto-rows: auto !important;
  grid-auto-flow: row !important;

  /* stable layout */
  align-items: start !important;
  justify-items: stretch !important;
  gap: 24px !important;
}

/* remove “masonry/tall” tricks that break sizing */
.portfolio-item-tall,
.portfolio-item-large{
  grid-row: auto !important;
}

/* the card must size by its content */
.portfolio-item{
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 0 !important;
  overflow: hidden !important;
  transform: none !important;
  position: relative !important;
}

/* image must be in normal flow */
.portfolio-img{
  width: 100% !important;
  height: auto !important;          /* key */
  max-height: none !important;
  display: block !important;
  object-fit: contain !important;   /* full visibility */
  transform: none !important;
}

/* if you had wrapper blocks for images */
.portfolio-image,
.portfolio-thumb,
.portfolio-preview{
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  position: relative !important;
}

/* stop hover lift from overlapping / weird gaps */
.portfolio-item:hover{
  transform: none !important;
}

/* -------------------------
   SERVICES (no fixed heights, price always visible)
   ------------------------- */

/* remove fixed heights that cut content */
.service-card,
.service-1, .service-2, .service-3, .service-4, .service-5, .service-6{
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

/* switch services to column flow so footer sits correctly */
.service-card{
  display: flex !important;
  flex-direction: column !important;
}

/* stop 60/40 height split (it cuts the price) */
.service-icon{
  height: auto !important;
  flex: 0 0 170px !important;  /* visual header height */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.service-content{
  height: auto !important;
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
}

/* keep price row always visible at the bottom */
.service-price{
  margin-top: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

/* prevent description from pushing price out */
.service-content p{
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
