        /* Base Styles & Variables */
        :root {
            --primary: #00f7ff;
            --secondary: #7b00ff;
            --accent: #ff00c8;
            --dark: #0a0a16;
            --darker: #050510;
            --light: #f0f8ff;
            --gray: #a0a0c0;
            --transition: all 0.3s ease;
            --glow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary);
            --glow-secondary: 0 0 10px var(--secondary), 0 0 20px var(--secondary);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--darker);
            color: var(--light);
            overflow-x: hidden;
            line-height: 1.6;
            font-family: 'Trocchi', sans-serif;
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            z-index: 1;
        }

        h1 {
            font-size: clamp(2rem, 1.7rem + 1vw, 2.5rem);
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        h2 {
            font-size: clamp(1.75rem, 1.6rem + 0.5vw, 2rem);
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;

        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        h3 {
            font-size: clamp(1.5rem, 1.35rem + 0.5vw, 1.75rem);
        }

        p {
            margin-bottom: 1.5rem;
            color: var(--gray);
            font-size: 1.15rem;
        }

        /* Layout */
        section {
            padding: 80px 0;
            position: relative;
        }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .section-header h2 {
            margin-bottom: 1.5rem;
        }

        .section-header p {
            margin: 0 auto;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }

        .btn:hover {
            color: var(--dark);
            box-shadow: var(--glow);
        }

        .btn:hover::before {
            left: 0;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--dark);
        }

        .btn-primary::before {
            background: var(--light);
        }

        .btn-secondary {
            border-color: var(--secondary);
            color: var(--secondary);
        }

        .btn-secondary::before {
            background: var(--secondary);
        }

        .btn-secondary:hover {
            color: var(--light);
            box-shadow: var(--glow-secondary);
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 0; /* Reduced padding */
            z-index: 1000;
            transition: var(--transition);
            background: rgba(10, 10, 22, 0.98); /* Slightly more opaque */
            backdrop-filter: blur(15px); /* Increased blur */
            -webkit-backdrop-filter: blur(15px); /* Safari support */
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4); /* Softer shadow */
        }

        header.scrolled {
            padding: 10px 0; /* Even more compact when scrolled */
            background: rgba(5, 5, 16, 0.98);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--light);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 45px;  /* Slightly smaller for better proportion */
            width: auto;   /* Maintain aspect ratio */
            transition: var(--transition);
            /* filter: brightness(0) invert(1); Ensure visibility on dark background */
        }
        /* Add to existing logo styles */
        .logo img:hover {
            transform: scale(1.05);
            /* filter: brightness(0) invert(1) drop-shadow(0 0 8px var(--primary)); */
        }

        /* Add loading state for logo */
        .logo img {
            opacity: 0;
            animation: fadeIn 0.5s ease 0.2s forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Fallback if image fails to load */
        .logo:after {
            content: 'Inzadev';
            color: var(--light);
            font-weight: 700;
            display: none;
        }

        .logo img[src=""], 
        .logo img:not([src]) {
            display: none;
        }

        .logo img[src=""] + :after,
        .logo img:not([src]) + :after {
            display: block;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2.5rem;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            font-size: 1.1rem;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-btn {
            display: inline-block;
            padding: 8px 25px;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .nav-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }

        .nav-btn:hover {
            color: var(--dark);
            box-shadow: var(--glow);
        }

        .nav-btn:hover::before {
            left: 0;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--dark);
        }

        .btn-primary::before {
            background: var(--light);
        }

        /* Enhanced Mobile Navigation Styles */
        .hamburger {
            display: none;
            cursor: pointer;
            background: transparent;
            border: none;
            width: 40px;
            height: 40px;
            position: relative;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 30px;
            height: 3px;
            background: var(--light);
            margin: 6px auto;
            transition: var(--transition);
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
            background: var(--primary);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
            background: var(--primary);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: var(--darker);
            z-index: 1000;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
            overflow-y: auto;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-header {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(123, 0, 255, 0.3);
            background: rgba(5, 5, 16, 0.9);
        }

        .mobile-logo {
            display: flex;
            align-items: center;
        }

        .mobile-logo img {
            height: 45px;
            width: auto;
        }

        .mobile-close {
            background: transparent;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .mobile-close:hover {
            background: rgba(123, 0, 255, 0.2);
            color: var(--primary);
        }

        .mobile-nav-links {
            list-style: none;
            padding: 20px 0;
            flex-grow: 1;
        }

        .mobile-nav-links li {
            margin: 0;
        }

        .mobile-nav-links a {
            display: flex;
            align-items: center;
            padding: 18px 25px;
            color: var(--light);
            text-decoration: none;
            font-size: 1.2rem;
            transition: var(--transition);
            border-bottom: 1px solid rgba(123, 0, 255, 0.1);
        }

        .mobile-nav-links a i {
            margin-right: 15px;
            font-size: 1.2rem;
            width: 25px;
            text-align: center;
            color: var(--primary);
        }

        .mobile-nav-links a:hover {
            background: rgba(123, 0, 255, 0.1);
            color: var(--primary);
            padding-left: 30px;
        }

        .mobile-nav-links a.active {
            background: rgba(0, 247, 255, 0.1);
            color: var(--primary);
            border-left: 4px solid var(--primary);
        }

        .mobile-nav-footer {
            padding: 20px;
            background: rgba(5, 5, 16, 0.9);
            border-top: 1px solid rgba(123, 0, 255, 0.3);
        }

        .mobile-social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .mobile-social-link {
            width: 45px;
            height: 45px;
            background: rgba(0, 247, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .mobile-social-link:hover {
            background: var(--primary);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 247, 255, 0.4);
        }

        .mobile-contact-info {
            text-align: center;
            color: var(--gray);
            font-size: 0.9rem;
        }

        .mobile-contact-info p {
            margin-bottom: 8px;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 5, 16, 0.8);
            backdrop-filter: blur(5px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 0 20px;
        }

        /* Particle Storm Container */
        .particle-storm {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .storm-particle {
            position: absolute;
            border-radius: 50%;
            animation: stormMove 15s infinite linear;
            opacity: 0;
        }

        /* Content Styling */
        .content-wrapper {
            text-align: center;
            max-width: 1400px;
            width: 100%;
            z-index: 10;
            position: relative;
        }

        .content-wrapper h1 {
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.2;
            text-transform: none;
            width: 100%;
        }

        /* Enhanced H1 with Flex Layout for Mobile */
        .heading-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 20px;
        }

        .heading-static {
            font-size: clamp(3rem, 1.8rem + 4vw, 5rem);
            font-weight: 700;
            line-height: 1.2;
            color: var(--light);
        }

        .heading-dynamic {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .typing-text {
            color: var(--primary);
            border-right: 3px solid var(--primary);
            animation: blink 1s infinite;
            padding-right: 5px;
            font-size: clamp(1.75rem, 0.4rem + 4.5vw, 4rem);
            font-weight: 700;
            line-height: 1.2;
            min-height: 1.2em;
            display: inline-block;
        }

        .content-wrapper p {
            font-size: 1.15rem;
            color: var(--gray);
            line-height: 1.6;

        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }

        .btn:hover {
            color: var(--dark);
            box-shadow: var(--glow);
        }

        .btn:hover::before {
            left: 0;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--dark);
        }

        .btn-primary::before {
            background: var(--light);
        }

        .btn-secondary {
            border-color: var(--secondary);
            color: var(--secondary);
        }

        .btn-secondary::before {
            background: var(--secondary);
        }

        .btn-secondary:hover {
            color: var(--light);
            box-shadow: var(--glow-secondary);
        }

        /* Floating Tech Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
        }

        .floating-element {
            position: absolute;
            width: 60px;
            height: 60px;
            background: transparent;
            /* background: rgba(0, 247, 255, 0.1); */
            /* border-radius: 50%; */
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 2.5rem;
            animation: float-element 15s infinite ease-in-out;
            /* border: 1px solid rgba(0, 247, 255, 0.3); */
            /* box-shadow: 0 0 20px rgba(0, 247, 255, 0.3); */
            transition: all 0.5s ease;
        }

        .floating-element:hover {
            transform: scale(1.2);
            box-shadow: 0 0 30px var(--primary);
        }

        .floating-element:nth-child(1) {
            top: 15%;
            left: 8%;
            animation-delay: 0s;
            animation-duration: 18s;
        }

        .floating-element:nth-child(2) {
            top: 75%;
            left: 12%;
            animation-delay: 1.5s;
            animation-duration: 22s;
        }

        .floating-element:nth-child(3) {
            top: 35%;
            right: 7%;
            animation-delay: 3s;
            animation-duration: 20s;
        }

        .floating-element:nth-child(4) {
            top: 82%;
            right: 18%;
            animation-delay: 4.5s;
            animation-duration: 25s;
        }

        .floating-element:nth-child(5) {
            top: 12%;
            right: 22%;
            animation-delay: 6s;
            animation-duration: 19s;
        }

        .floating-element:nth-child(6) {
            top: 65%;
            left: 25%;
            animation-delay: 7.5s;
            animation-duration: 21s;
        }

        /* Animations */
        @keyframes stormMove {
            0% {
                transform: translate(0, 0) scale(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translate(calc(100vw * var(--tx)), calc(100vh * var(--ty))) scale(1.5) rotate(360deg);
                opacity: 0;
            }
        }

        @keyframes float-element {
            0%, 100% {
                transform: translateY(0) translateX(0) rotate(0deg) scale(1);
            }
            20% {
                transform: translateY(-40px) translateX(30px) rotate(72deg) scale(1.1);
            }
            40% {
                transform: translateY(-80px) translateX(0) rotate(144deg) scale(1);
            }
            60% {
                transform: translateY(-40px) translateX(-30px) rotate(216deg) scale(0.9);
            }
            80% {
                transform: translateY(0) translateX(0) rotate(288deg) scale(1);
            }
        }

        @keyframes blink {
            0%, 100% {
                border-color: transparent;
            }
            50% {
                border-color: var(--primary);
            }
        }

        /* Particle Pulse Animation */
        @keyframes particle-pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.5);
                opacity: 0.8;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
            
       }

        /* About Section */
        .about {
            background: var(--dark);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            align-items: center;
        }

        .about-text h2 {
            margin-bottom: 1.5rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2.5rem;
        }

        .feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(0, 247, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.8rem;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .feature:hover .feature-icon {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
        }

        .about-image {
            position: relative;
            height: 600px;
            width: 100%;
            background: rgba(10, 10, 22, 0.7);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(123, 0, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* DESIGN: Minimal Cards */
        #design {
            background: var(--darker);
        }

        .design-title {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(123, 0, 255, 0.3);
        }

        .design-title h1 {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .design-title p {
            color: var(--gray);
            margin: 0 auto;
        }

        .trusted-section {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .logos-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .logo-item {
            background: rgba(5, 5, 16, 0.5);
            border-radius: 16px;
            padding: 20px 25px;
            text-align: center;
            flex: 1;
            max-width: 300px;
            width: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(123, 0, 255, 0.2);
        }

        .logo-item img {
            width: 100%;
            height: 50px;
        }

        .logo-item:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 15px 30px rgba(255, 0, 200, 0.2);
        }

        .logo-text {
            font-size: 16px;
            font-weight: 700;
            color: var(--light);
        }

        .designrush-feature {
            background: rgba(5, 5, 16, 0.5);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(123, 0, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .designrush-feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .badge-icon {
            font-size: 64px;
            color: var(--primary);
            text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
        }

        .badge-content h3 {
            font-size: 28px;
            color: var(--light);
        }

        .badge-content p {
            color: var(--gray);
            line-height: 1.6;
            margin-left: auto;
            margin-right: auto;
        }

        .designrush-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            padding: 10px 20px;
            border: 1px solid var(--primary);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .designrush-link:hover {
            background: rgba(0, 247, 255, 0.1);
            box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
                        
            .logos-container {
                gap: 20px;
            }
            
        }

        @media (max-width: 480px) {
            
            .logo-item {
                min-width: 100%;
            }
        }

        /* Services Section */
        .services { 
            background: var(--dark);
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .service-card {
            background: rgba(10, 10, 22, 0.7);
            border-radius: 15px;
            padding: 2.5rem;
            transition: var(--transition);
            border: 1px solid rgba(0, 247, 255, 0.2);
            position: relative;
            overflow: hidden;
            z-index: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, rgba(123, 0, 255, 0.1), rgba(0, 247, 255, 0.1));
            transition: var(--transition);
            z-index: -1;
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            box-shadow: var(--glow);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            margin-bottom: 1rem;
        }

        .service-features {
            margin: 1.5rem 0;
            padding-left: 1.5rem;
        }

        .service-features li {
            margin-bottom: 0.8rem;
            color: var(--gray);
            position: relative;
            list-style: none;
        }

        .service-features li::before {
            content: '✓';
            color: var(--primary);
            position: absolute;
            left: -1.15rem;
        }

        .service-card .btn {
            margin-top: auto;
            align-self: flex-start;
        }

        /* Statistics Section */
        .stats {
            background: var(--darker);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2.5rem;
        }

        .stat-item {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: rgba(10, 10, 22, 0.7);
            border-radius: 15px;
            border: 1px solid rgba(0, 247, 255, 0.1);
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 20px rgba(0, 247, 255, 0.1);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .stat-text {
            font-size: 1.2rem;
            color: var(--gray);
        }

        /* Partners Section */
        .partners {
            background: var(--dark);
            padding: 80px 0;
        }

        .partners-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            overflow: hidden;
        }

        .partners-track {
            display: flex;
            animation: scroll 30s linear infinite;
            gap: 3rem;
            padding: 1rem 0;
        }

        .partner-logo {
            flex: 0 0 auto;
            width: 250px;
            height: 100px;
            background: rgba(10, 10, 22, 0.7);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(123, 0, 255, 0.4);
            transition: var(--transition);
            padding: 1rem;
        }

        .partner-logo:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 20px rgba(0, 247, 255, 0.1);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 60px;
            filter: brightness(0) invert(1);
            opacity: 0.7;
            transition: var(--transition);
        }

        .partner-logo:hover img {
            opacity: 1;
            filter: brightness(0) invert(1) drop-shadow(0 0 5px var(--primary));
        }

        /* Why Choose Us Section */
        .why-us {
            background: var(--darker);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            background: rgba(10, 10, 22, 0.7);
            border-radius: 15px;
            padding: 2.5rem;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(0, 247, 255, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 15px 30px rgba(0, 247, 255, 0.15);
        }

        .feature-icon-large {
            width: 80px;
            height: 80px;
            background: rgba(0, 247, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--primary);
            font-size: 2rem;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon-large {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
        }

        /* Projects Section */
        .projects {
            background: var(--dark);
        }

        .projects-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .filter-btn {
            padding: 10px 20px;
            background: transparent;
            color: var(--gray);
            border: 1px solid var(--gray);
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
        }

        .filter-btn.active, .filter-btn:hover {
            background: var(--primary);
            color: var(--dark);
            border-color: var(--primary);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .project-card {
            background: rgba(10, 10, 22, 0.7);
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(123, 0, 255, 0.1);
        }

        .project-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            box-shadow: var(--glow-secondary);
        }

        .project-img {
            height: 220px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            position: relative;
            overflow: hidden;
        }

        .project-img img {
            height: 100%;
            width: 100%;
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 5, 16, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-content {
            padding: 1.5rem;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
        }

        .project-tag {
            padding: 5px 10px;
            background: rgba(123, 0, 255, 0.2);
            border-radius: 4px;
            font-size: 0.8rem;
            color: var(--secondary);
        }

        .project-links {
            display: flex;
            gap: 1rem;
            width: 100%;
            margin-top: 1.5rem;
        }

        .btn-project {
            width: 50%;
            height: 60px;
            display: flex;
            padding: 5px;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .btn-project::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }

        .btn-project:hover {
            color: var(--dark);
            box-shadow: var(--glow);
        }

        .btn-project:hover::before {
            left: 0;
        }

        .btn-project-secondary {
            width: 50%;
            height: 60px;
            display: flex;
            padding: 5px;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-project-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--secondary);
            transition: var(--transition);
            z-index: -1;
        }

        .btn-project-secondary:hover {
            color: var(--dark);
            box-shadow: var(--glow-secondary);
        }

        .btn-project-secondary:hover::before {
            left: 0;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: var(--darker);
        }

        .section-header h2 {
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }

        .section-header p {
            color: var(--gray);
            max-width: 100%;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Enhanced Carousel Container */
        .testimonial-carousel {
            background: rgba(10, 10, 22, 0.9);
            border-radius: 25px;
            padding: 30px 20px;
            border: 1px solid rgba(0, 247, 255, 0.2);
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }
        .testimonial-carousel::before{
            content: 'Real Experience';
            position: absolute;
            top: 75px;
            right: -75px;
            background: var(--primary);
            color: var(--dark);
            padding: 5px 50px;
            transform: rotate(45deg);
            text-align: center;
            font-size: 2rem;
            font-weight: bold;
        }
        .carousel-track {
            display: flex;
            transition: transform 0.6s ease;
        }

        .carousel-slide {
            min-width: 100%;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .client-avatar-large {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            border: 4px solid var(--primary);
            margin-bottom: 10px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 247, 255, 0.3);
        }

        .client-avatar-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .client-avatar-large:hover img {
            transform: scale(1.1);
        }

        .client-avatar-large::before {
            content: '';
            position: absolute;
            top: -6px;
            left: -6px;
            right: -6px;
            bottom: -6px;
            background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
            border-radius: 50%;
            z-index: -1;
            opacity: 0.7;
            animation: avatarGlow 3s infinite alternate;
        }

        .testimonial-quote {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--light);
            margin-bottom: 15px;
            font-style: italic;
            position: relative;
            padding: 0 15px;
        }

        .testimonial-quote::before,
        .testimonial-quote::after {
            content: '"';
            font-size: 5rem;
            color: var(--primary);
            opacity: 0.3;
            position: absolute;
            line-height: 1;
        }

        .testimonial-quote::before {
            top: -30px;
            left: -10px;
        }

        .testimonial-quote::after {
            bottom: -50px;
            right: -10px;
        }

        .client-info-large {
            margin-bottom: 20px;
        }

        .client-info-large h4 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--light);
            margin-bottom: 8px;
        }

        .client-info-large p {
            color: var(--gray);
            font-size: 1.15rem;
        }

        .client-company {
            color: var(--primary) !important;
            font-weight: 500;
        }

        .rating {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 15px;
        }

        .star {
            color: var(--primary);
            font-size: 1.3rem;
            animation: starTwinkle 2s infinite;
        }

        .star:nth-child(2) { animation-delay: 0.2s; }
        .star:nth-child(3) { animation-delay: 0.4s; }
        .star:nth-child(4) { animation-delay: 0.6s; }
        .star:nth-child(5) { animation-delay: 0.8s; }

        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin-top: 30px;
        }

        .carousel-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .carousel-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 247, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .carousel-btn:hover {
            background: var(--primary);
            color: var(--dark);
            transform: scale(1.1);
            box-shadow: 0 0 25px rgba(0, 247, 255, 0.6);
        }

        .carousel-btn:hover::before {
            left: 100%;
        }

        .carousel-dots {
            display: flex;
            gap: 12px;
        }

        .carousel-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--gray);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .carousel-dot::before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border-radius: 50%;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: var(--primary);
            transform: scale(1.2);
            box-shadow: 0 0 15px var(--primary);
        }

        .carousel-dot.active::before {
            border-color: var(--primary);
        }

        /* Animations */
        @keyframes badgePulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 5px 15px rgba(0, 247, 255, 0.4);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 8px 25px rgba(0, 247, 255, 0.6);
            }
        }

        @keyframes starSpin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes avatarGlow {
            0% {
                opacity: 0.5;
                transform: scale(1);
            }
            100% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }

        @keyframes starTwinkle {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.1);
            }
        }

        /* Progress Bar */
        .carousel-progress {
            width: 100%;
            height: 4px;
            background: rgba(0, 247, 255, 0.2);
            border-radius: 2px;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            width: 0%;
            transition: width 5s linear;
            border-radius: 2px;
        }

        .progress-bar.active {
            width: 100%;
        }

        /* Contact Hero Section */
        #contact-form {
            background: var(--dark);
        }
        
        .contact-hero {
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(123, 0, 255, 0.2), transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(0, 247, 255, 0.15), transparent 40%),
                radial-gradient(circle at 40% 80%, rgba(255, 0, 200, 0.1), transparent 40%);
            z-index: -1;
        }

        .contact-hero-content {
            width: 100%;
            text-align: center;
            margin: 0 auto;
        }

        .contact-hero-content h1 {
            margin-bottom: .5rem;
            font-weight: bolder;
            animation: fadeInUp 1s ease;
        }

        .contact-hero-content p {
            margin-bottom: 10px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        /* Contact Content Section */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: start;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: rgba(0, 247, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.5rem;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .contact-item:hover .contact-icon {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
        }

        .contact-details h3 {
            margin-bottom: 0.5rem;
        }

        .contact-details p {
            margin-bottom: 0;
            color: var(--gray);
        }

        .contact-form {
            background: rgba(10, 10, 22, 0.7);
            padding: 3rem;
            border-radius: 15px;
            border: 1px solid rgba(123, 0, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            background: rgba(5, 5, 16, 0.7);
            border: 1px solid rgba(123, 0, 255, 0.3);
            border-radius: 8px;
            color: var(--light);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 247, 255, 0.2);
        }

        textarea.form-control {
            min-height: 180px;
            resize: vertical;
        }

        /* Custom Select */
        .select-wrapper {
            position: relative;
            width: 100%;
        }
        
        .select-button {
            width: 100%;
            padding: 15px 20px;
            background: rgba(10, 10, 22, 0.7);
            border: 1px solid rgba(0, 247, 255, 0.2);
            border-radius: 10px;
            color: var(--gray);
            font-size: 16px;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }
        
        .select-button:hover {
            border-color: rgba(0, 247, 255, 0.4);
        }
        
        .select-button.active {
            border-color: var(--primary);
            box-shadow: 0 0 15px rgba(0, 247, 255, 0.2);
            color: var(--light);
        }
        
        .select-button .chevron {
            transition: transform 0.3s;
        }
        
        .select-button.active .chevron {
            transform: rotate(180deg);
        }
        
        .select-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(10, 10, 22, 0.95);
            border: 1px solid rgba(0, 247, 255, 0.3);
            border-radius: 10px;
            margin-top: 5px;
            overflow: hidden;
            z-index: 100;
            display: none;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .select-dropdown.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        .select-option {
            padding: 15px 20px;
            cursor: pointer;
            transition: all 0.2s;
            border-bottom: 1px solid rgba(0, 247, 255, 0.1);
        }
        
        .select-option:last-child {
            border-bottom: none;
        }
        
        .select-option:hover {
            background: rgba(0, 247, 255, 0.1);
            color: var(--primary);
        }
        
        .select-option.selected {
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            color: var(--light);
        }
        
        .form-message {
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-weight: 500;
            display: none;
            margin-top: 15px;
        }
        
        .form-message.success {
            background: rgba(0, 255, 0, 0.1);
            color: #00ff00;
            border: 1px solid rgba(0, 255, 0, 0.3);
            display: block;
        }
        
        .form-message.error {
            background: rgba(255, 0, 0, 0.1);
            color: #ff4444;
            border: 1px solid rgba(255, 0, 0, 0.3);
            display: block;
        }
        
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: var(--light);
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .whatsapp-success-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
            padding: 10px 20px;
            background: #25D366;
            color: white;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .whatsapp-success-btn:hover {
            background: #128C7E;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: var(--darker);
            padding: 1.5rem 0;
            border-top: 1px solid rgba(123, 0, 255, 0.4);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .footer-logo img {
            height: 60px;
            width: auto;
            max-width: 180px;
            transition: var(--transition);
        }

        .footer-logo img:hover {
            transform: scale(1.05);
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 2rem;
        }

        .footer-column:first-child {
            flex: 2;
            min-width: 300px;
            max-width: 600px;
        }

        .footer-column h3 {
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 35px;
            height: 3px;
            background: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            margin-right: 10px;
            font-size: 0.8rem;
            color: var(--primary);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(0, 247, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: var(--primary);
            color: var(--dark);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 247, 255, 0.4);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid rgba(123, 0, 255, 0.3);
            color: var(--gray);
            font-size: 1rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes typeLine {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-180px * 6 - 4rem * 6));
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Responsive Design */

        @media (max-width: 992px) {

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }
            
            
            .nav-links {
                display: none;
            }
            
            .nav-btn {
                display: none;
            }

            .hamburger {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                position: relative;
            }

            section {
                padding: 60px 0;
            } 

            .hero-btns {
                justify-content: center;
                flex-direction: column;
                align-items: center;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }

            .partners-track {
                animation: scroll 20s linear infinite;
            }

            .footer-content {
                flex-direction: column;
                gap: 0;
            }
            
            .footer-column:first-child {
                max-width: 100%;
            }
        }

        @media (max-width: 576px) {
            
            section {
                padding: 40px 0;
            }
            .about-image {
                height: 350px;
            }
            
            .btn {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }
            .services-grid {
                grid-template-columns: repeat(1, 1fr);
            }
            
            .service-card, .feature-card, .contact-form {
                padding: 2rem;
            }
            
            .testimonial-carousel::before{
            top: 42px;
            right: -65px;
            padding: 5px 50px;
            transform: rotate(45deg);
            text-align: center;
            font-size: 1.15rem;
            font-weight: bold;
            }

        }