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

        :root {
            /* Primary Colors - Matching Reference */
            --navy-dark: #0a1628;
            --navy-medium: #132847;
            --navy-light: #1e3a5f;
            --blue-primary: #2563eb;
            --blue-accent: #3b82f6;
            
            /* Orange Accent - Matching Reference */
            --orange-primary: #ff6b35;
            --orange-hover: #ff8255;
            
            /* Additional Colors */
            --teal-accent: #22d3ee;
            --green-accent: #10b981;
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            
            /* Icon Colors */
            --icon-blue: #3b82f6;
            --icon-orange: #ff6b35;
            --icon-teal: #06b6d4;
            --icon-green: #22c55e;
            --icon-purple: #a855f7;
            --icon-pink: #ec4899;
        }

        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--navy-dark);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Animated Background Grid */
        .bg-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 0;
            pointer-events: none;
        }

        .bg-gradient {
            position: fixed;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
            z-index: 0;
            animation: float 20s ease-in-out infinite;
        }

        .bg-gradient-2 {
            position: fixed;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
            z-index: 0;
            animation: float 15s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(50px, 50px) scale(1.1); }
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 24px 0;
            background: rgba(10, 22, 40, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 16px 0;
            background: rgba(10, 22, 40, 0.95);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1002;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--text-primary);
            text-decoration: none;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--blue-primary), var(--orange-primary));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            font-weight: 800;
            font-size: 20px;
            color: white;
            letter-spacing: -0.05em;
        }

        .logo-icon::before {
            content: 'S';
            position: relative;
            z-index: 1;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 48px;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--orange-primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .btn-primary {
            background: var(--orange-primary);
            color: white !important;
            padding: 12px 28px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--orange-hover);
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            padding: 12px 28px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            border: 1.5px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary:hover {
            border-color: var(--blue-primary);
            background: rgba(37, 99, 235, 0.1);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            position: relative;
            z-index: 1003;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 8px;
        }

        .menu-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 0 80px;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-left h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 64px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -0.03em;
        }

        .hero-left p {
            font-size: 18px;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 540px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .play-icon {
            width: 20px;
            height: 20px;
            border-left: 12px solid currentColor;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            margin-left: 2px;
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            height: 500px;
            perspective: 1500px;
        }

        .hero-main-image {
            width: 100%;
            height: 100%;
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 107, 53, 0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            transform: rotateY(-5deg) rotateX(2deg);
            transform-style: preserve-3d;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.5),
                0 40px 80px rgba(37, 99, 235, 0.2),
                -20px 20px 60px rgba(255, 107, 53, 0.15);
            transition: transform 0.6s ease, box-shadow 0.6s ease;
            animation: floatHero 6s ease-in-out infinite;
        }

        .hero-main-image:hover {
            transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
            box-shadow: 
                0 30px 80px rgba(0, 0, 0, 0.6),
                0 50px 100px rgba(37, 99, 235, 0.3),
                -30px 30px 80px rgba(255, 107, 53, 0.2);
        }

        .hero-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 24px;
            transform: translateZ(20px);
        }

        /* Placeholder for when image isn't loaded */
        .hero-image-placeholder {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 1;
        }

        .placeholder-icon {
            font-size: 120px;
            margin-bottom: 20px;
            filter: drop-shadow(0 20px 40px rgba(37, 99, 235, 0.3));
            animation: floatIcon 6s ease-in-out infinite;
        }

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

        @keyframes floatHero {
            0%, 100% { 
                transform: rotateY(-5deg) rotateX(2deg) translateY(0px);
            }
            50% { 
                transform: rotateY(-5deg) rotateX(2deg) translateY(-15px);
            }
        }

        .hero-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 40%, rgba(37, 99, 235, 0.2) 0%, transparent 60%);
            pointer-events: none;
            transform: translateZ(40px);
        }

        /* Floating Cards - Decorative elements around hero image */
        .floating-card {
            position: absolute;
            background: rgba(19, 40, 71, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            z-index: 10;
        }

        .card-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .card-1 {
            top: 8%;
            left: -8%;
            animation: floatCard1 5s ease-in-out infinite;
        }

        .card-2 {
            top: 45%;
            right: -10%;
            animation: floatCard2 6s ease-in-out infinite;
        }

        .card-3 {
            bottom: 12%;
            left: -5%;
            animation: floatCard3 7s ease-in-out infinite;
        }

        @keyframes floatCard1 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-5px, -10px); }
        }

        @keyframes floatCard2 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(8px, -8px); }
        }

        @keyframes floatCard3 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-6px, -12px); }
        }

        .card-text h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 2px;
            white-space: nowrap;
        }

        .card-text p {
            font-size: 12px;
            color: var(--text-muted);
            white-space: nowrap;
        }

        /* Services Section */
        .services {
            padding: 120px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-label {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            color: var(--orange-primary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
        }

        .section-header h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .section-header p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
        }

        .service-card {
            background: rgba(19, 40, 71, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 0;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(255, 107, 53, 0.03));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

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

        .service-image {
            width: 100%;
            height: 240px;
            border-radius: 16px 16px 0 0;
            margin-bottom: 0;
            position: relative;
            overflow: hidden;
            background: rgba(10, 22, 40, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            box-shadow: none;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 1;
            transition: transform 0.4s ease;
        }

        .service-card:hover .service-image {
            transform: none;
            box-shadow: none;
        }

        .service-card:hover .service-image img {
            transform: scale(1.03);
        }

        .service-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.8) 100%);
            z-index: 1;
        }

        .service-image-icon {
            font-size: 64px;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
        }

        /* Different gradient backgrounds for each service image */
        .service-card:nth-child(1) .service-image {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.15));
        }

        .service-card:nth-child(2) .service-image {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.15));
        }

        .service-card:nth-child(3) .service-image {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(34, 211, 238, 0.15));
        }

        .service-card:nth-child(4) .service-image {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(34, 197, 94, 0.15));
        }

        .service-card:nth-child(5) .service-image {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.15));
        }

        .service-card:nth-child(6) .service-image {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.15));
        }

        .service-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            padding: 24px 24px 0;
            position: relative;
            z-index: 1;
        }

        .service-card p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
            padding: 0 24px 24px;
            position: relative;
            z-index: 1;
        }

        /* Stats Section */
        .stats {
            padding: 100px 0;
            background: rgba(19, 40, 71, 0.2);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 56px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--blue-primary), var(--orange-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 16px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* Portfolio Section */
        .portfolio {
            padding: 120px 0;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .portfolio-card {
            background: rgba(19, 40, 71, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .portfolio-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .portfolio-image {
            height: 240px;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(59, 130, 246, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 64px;
            position: relative;
            overflow: hidden;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .portfolio-image::before {
            content: '';
            position: absolute;
            top: 20%;
            left: 10%;
            width: 60%;
            height: 60%;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
            filter: blur(40px);
        }

        .portfolio-content {
            padding: 32px;
        }

        .portfolio-tag {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(37, 99, 235, 0.15);
            color: var(--blue-accent);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .portfolio-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .portfolio-card p {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .portfolio-meta {
            display: flex;
            gap: 24px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .meta-item span:first-child {
            display: block;
            font-size: 24px;
            font-weight: 700;
            color: var(--orange-primary);
            margin-bottom: 4px;
        }

        .meta-item span:last-child {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* Team Section */
        .team {
            padding: 120px 0;
            background: rgba(19, 40, 71, 0.2);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .team-card {
            background: rgba(19, 40, 71, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .team-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .team-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--blue-primary), var(--blue-accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: 700;
            border: 3px solid rgba(255, 255, 255, 0.1);
        }

        .team-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .team-role {
            color: var(--orange-primary);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .team-card p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonials {
            padding: 120px 0;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .testimonial-card {
            background: rgba(19, 40, 71, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 40px 32px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 24px;
            left: 24px;
            font-size: 80px;
            color: rgba(37, 99, 235, 0.15);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .testimonial-text {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-hover));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }

        .author-info h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .author-info p {
            font-size: 13px;
            color: var(--text-muted);
        }

        .rating {
            display: flex;
            gap: 4px;
            margin-top: 8px;
        }

        .star {
            color: #fbbf24;
            font-size: 14px;
        }

        /* Blog Section */
        .blog {
            padding: 120px 0;
            background: rgba(19, 40, 71, 0.2);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .blog-card {
            background: rgba(19, 40, 71, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .blog-image {
            height: 220px;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(255, 107, 53, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 56px;
            position: relative;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .blog-image::before {
            content: '';
            position: absolute;
            top: 30%;
            left: 20%;
            width: 50%;
            height: 50%;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
            filter: blur(40px);
        }

        .blog-content {
            padding: 32px;
        }

        .blog-meta {
            display: flex;
            gap: 16px;
            margin-bottom: 16px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .blog-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .blog-card p {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .read-more {
            color: var(--orange-primary);
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
        }

        .read-more:hover {
            gap: 12px;
        }

        /* CTA Section */
        .cta {
            padding: 120px 0;
        }

        .cta-box {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(255, 107, 53, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 32px;
            padding: 80px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(60px);
        }

        .cta-box h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .cta-box p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        /* Contact Form Styles */
        .contact-form {
            max-width: 800px;
            margin: 40px auto 0;
            text-align: left;
            position: relative;
            z-index: 1;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            background: rgba(30, 41, 59, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 15px;
            font-family: 'DM Sans', sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--blue-primary);
            background: rgba(30, 41, 59, 0.8);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-submit {
            text-align: center;
            margin-top: 32px;
        }

        .form-submit button {
            min-width: 200px;
        }

        .form-note {
            margin-top: 12px;
            font-size: 14px;
            color: var(--text-muted);
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .cta-box {
                padding: 60px 30px;
            }

            .contact-form {
                margin-top: 30px;
            }
        }

        /* Blog Pages */
        .blog-hero {
            padding: 140px 0 70px;
            text-align: center;
        }

        .blog-hero h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 48px;
            font-weight: 700;
            margin: 16px 0 12px;
            color: white;
        }

        .blog-hero p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 720px;
            margin: 0 auto;
        }

        .blog-hero-actions {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .blog-section {
            padding: 0 0 120px;
        }

        .blog-grid-modern {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }

        .blog-card-modern {
            background: rgba(30, 41, 59, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            position: relative;
        }

        .blog-card-modern:hover {
            border-color: rgba(255, 107, 53, 0.5);
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
        }

        .blog-image-wrap {
            display: block;
            position: relative;
            overflow: hidden;
        }

        .blog-image-wrap img {
            width: 100%;
            height: 210px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .blog-image-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 22, 40, 0) 0%, rgba(10, 22, 40, 0.6) 100%);
        }

        .blog-card-modern:hover .blog-image-wrap img {
            transform: scale(1.04);
        }

        .blog-card-body {
            padding: 24px 26px 28px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .blog-meta-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 12px;
        }

        .blog-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 20px;
            color: white;
            margin-bottom: 12px;
            line-height: 1.35;
        }

        .blog-excerpt {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .blog-pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .blog-pagination a,
        .blog-pagination span {
            display: inline-block;
            padding: 10px 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            text-decoration: none;
            color: #cbd5e1;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .blog-pagination a:hover {
            border-color: #ff6b35;
            color: #ff6b35;
        }

        .blog-pagination .active {
            background: #ff6b35;
            border-color: #ff6b35;
            color: white;
        }

        .blog-empty {
            text-align: center;
            padding: 80px 20px;
            color: var(--text-secondary);
        }

        .blog-empty h2 {
            font-size: 26px;
            color: white;
            margin-bottom: 10px;
        }

        .post-hero {
            padding: 140px 0 60px;
        }

        .post-breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .post-breadcrumb:hover {
            color: white;
            border-color: #ff6b35;
            background: rgba(255, 107, 53, 0.1);
        }

        .post-hero h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 48px;
            margin: 20px 0 16px;
            color: white;
            line-height: 1.2;
        }

        .post-meta {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            color: var(--text-muted);
            font-size: 14px;
        }

        .post-section {
            padding-bottom: 120px;
        }

        .post-content {
            background: rgba(30, 41, 59, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 40px;
            line-height: 1.8;
        }

        .post-featured-image {
            width: 100%;
            max-height: 440px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 28px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .post-content h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 28px;
            margin: 30px 0 16px;
            color: white;
        }

        .post-content h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 22px;
            margin: 26px 0 12px;
            color: white;
        }

        .post-content p {
            margin-bottom: 16px;
            color: #cbd5e1;
        }

        .post-content ul,
        .post-content ol {
            margin-left: 20px;
            margin-bottom: 16px;
            color: #cbd5e1;
        }

        .post-content li {
            margin-bottom: 8px;
        }

        .post-content img {
            max-width: 100%;
            border-radius: 12px;
            margin: 16px 0;
        }

        .post-content blockquote {
            border-left: 3px solid #ff6b35;
            padding-left: 20px;
            margin: 20px 0;
            color: #cbd5e1;
            font-style: italic;
        }

        .post-content code {
            background: rgba(0, 0, 0, 0.3);
            padding: 3px 6px;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
            color: #fde047;
            font-size: 13px;
        }

        .post-content pre {
            background: rgba(0, 0, 0, 0.5);
            padding: 15px;
            border-radius: 10px;
            overflow-x: auto;
            margin: 16px 0;
            border-left: 3px solid #ff6b35;
        }

        .post-content pre code {
            background: none;
            padding: 0;
            border-radius: 0;
        }

        .related-posts-section {
            padding-bottom: 120px;
        }

        .related-posts-section h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 28px;
            margin-bottom: 30px;
            color: white;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }

        .related-card-modern {
            background: rgba(30, 41, 59, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 22px;
            transition: all 0.3s ease;
        }

        .related-card-modern:hover {
            border-color: rgba(255, 107, 53, 0.5);
            transform: translateY(-4px);
        }

        .related-card-modern .date {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .related-card-modern h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 18px;
            margin-bottom: 10px;
            color: white;
            line-height: 1.35;
        }

        .related-card-modern p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .related-card-modern a {
            color: #ff6b35;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
        }

        @media (max-width: 768px) {
            .blog-hero {
                padding: 120px 0 50px;
            }

            .blog-hero h1,
            .post-hero h1 {
                font-size: 34px;
            }

            .post-content {
                padding: 26px;
            }
        }

        /* Footer */
        .footer {
            background: rgba(10, 22, 40, 0.6);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 80px 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-brand p {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--orange-primary);
            border-color: var(--orange-primary);
            color: white;
            transform: translateY(-3px);
        }

        .footer-section h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--orange-primary);
        }

        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: var(--text-muted);
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--text-primary);
        }

        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 50px;
            height: 50px;
            background: var(--orange-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .container, .nav-container {
                padding: 0 32px;
            }

            .hero-content {
                gap: 60px;
            }

            .services-grid,
            .portfolio-grid,
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(10, 22, 40, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 40px;
                gap: 24px;
                transition: left 0.3s ease;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                z-index: 999;
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
                z-index: 1001;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }

            .nav-links .btn-primary {
                display: block;
                width: 100%;
                text-align: center;
                padding: 14px 28px;
                margin-top: 16px;
                background: var(--orange-primary);
                color: white;
            }

            .nav-links .btn-primary:hover {
                background: var(--orange-hover);
            }

            .hero {
                padding: 120px 0 60px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .hero-left h1 {
                font-size: 42px;
            }

            .hero-visual {
                height: 400px;
            }

            .hero-main-image {
                height: 350px;
            }

            .placeholder-icon {
                font-size: 80px;
            }

            .floating-card {
                padding: 12px 16px;
            }

            .card-icon {
                width: 36px;
                height: 36px;
                font-size: 18px;
            }

            .card-text h4 {
                font-size: 13px;
            }

            .card-text p {
                font-size: 11px;
            }

            .card-1 {
                left: -2%;
                top: 5%;
            }

            .card-2 {
                right: -2%;
                top: 40%;
            }

            .card-3 {
                left: 0%;
                bottom: 8%;
            }

            .services-grid,
            .portfolio-grid,
            .team-grid,
            .testimonials-grid,
            .blog-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .section-header h2 {
                font-size: 36px;
            }

            .cta-box {
                padding: 60px 32px;
            }

            .cta-box h2 {
                font-size: 36px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 20px;
            right: 20px;
            background-color: #25d366;
            border-radius: 50%;
            box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .whatsapp-icon {
            width: 36px;
            height: 36px;
            object-fit: contain;
        }

        .whatsapp-float:hover {
            background-color: #20b358;
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
            }

            .whatsapp-float svg {
                width: 28px;
                height: 28px;
            }

        }