
        .hero-image-wrap {
            position: relative;
            z-index: 1;
            background: transparent !important;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            scroll-behavior: smooth;
        }

        /* Background gradients */
        .bg-gradient {
            background: linear-gradient(135deg, #581c87 0%, #1e40af 50%, #2563eb 100%);
            min-height: 100vh;
            color: white;
            overflow-x: hidden;
            position: relative;
        }

        /* Navigation styles */
        .nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 20;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .nav-logo {
            width: 2.5rem;
            height: 2.5rem;
            background: linear-gradient(to right, #22d3ee, #3b82f6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .nav-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1f2937;
        }

        .nav-links {
            display: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #374151;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #2563eb;
        }

        .nav-contact {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .nav-phone {
            display: none;
            align-items: center;
            gap: 0.5rem;
            color: #374151;
            font-size: 0.875rem;
        }

        .nav-email {
            background: #2563eb;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            text-decoration: none;
            border: 1px solid #2563eb;
            transition: all 0.3s;
        }

        .nav-email:hover {
            background: #1d4ed8;
        }

        /* Hero section */
        .hero {
            position: relative;
            z-index: 10;
            display: flex;
            align-items: center;
            min-height: 100vh;
            padding: 5rem 1rem;
        }

        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .welcome-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }

        .welcome-icon {
            width: 3rem;
            height: 3rem;
            background: linear-gradient(to right, #22d3ee, #3b82f6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            animation: pulse 2s infinite;
        }

        .welcome-text {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .welcome-text span {
            color: #1f2937;
            font-weight: 600;
            font-size: 1.125rem;
        }

        .main-heading {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            padding: 2rem;
            border-radius: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .main-heading h1 {
            font-size: 3rem;
            font-weight: bold;
            background: linear-gradient(to right, #2563eb, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-button {
            background: linear-gradient(to right, #22d3ee, #3b82f6);
            color: white;
            padding: 1rem 2rem;
            border-radius: 9999px;
            font-size: 1.125rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background: linear-gradient(to right, #0891b2, #1d4ed8);
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
        }

        .subtitle {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(8px);
            padding: 1.5rem;
            border-radius: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .subtitle p {
            color: #374151;
            font-size: 1.125rem;
            line-height: 1.75;
        }

        /* Microprocessor animation container */
        .processor-container {
            display: flex;
            justify-content: center;
            position: relative;
        }

        .processor-wrapper {
            position: relative;
        }

        .processor-bg {
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            border-radius: 1.5rem;
            transform: rotate(3deg);
        }

        .processor-main {
            position: relative;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            padding: 2rem;
            border-radius: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        /* Microprocessor animation */
        .microprocessor {
            position: relative;
            width: 20rem;
            height: 20rem;
            margin: 0 auto;
        }

        .chip {
            position: absolute;
            top: 1rem;
            left: 1rem;
            right: 1rem;
            bottom: 1rem;
            background: linear-gradient(135deg, #1e293b, #374151, #111827);
            border-radius: 1rem;
            border: 4px solid #64748b;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transition: all 1s;
        }

        .chip.active {
            border-color: #22d3ee;
            box-shadow: 0 0 50px rgba(34, 211, 238, 0.5);
        }

        .circuit-grid {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            right: 0.75rem;
            bottom: 0.75rem;
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            grid-template-rows: repeat(8, 1fr);
            gap: 0.25rem;
        }

        .circuit-cell {
            background: #64748b;
            border-radius: 0.125rem;
            transition: all 0.5s;
        }

        .circuit-cell.active {
            background: linear-gradient(to right, #22d3ee, #3b82f6);
            box-shadow: 0 0 10px rgba(34, 211, 238, 0.4);
        }

        .core {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 6rem;
            height: 6rem;
            border-radius: 0.75rem;
            background: linear-gradient(to right, #64748b, #374151);
            transition: all 1s;
        }

        .core.active {
            background: linear-gradient(to right, #22d3ee, #3b82f6, #7c3aed);
            box-shadow: 0 0 50px rgba(34, 211, 238, 0.75);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .core-inner {
            position: absolute;
            top: 0.5rem;
            left: 0.5rem;
            right: 0.5rem;
            bottom: 0.5rem;
            background: rgba(15, 23, 42, 0.9);
            border-radius: 0.5rem;
            backdrop-filter: blur(4px);
        }

        .core-center {
            position: absolute;
            top: 1rem;
            left: 1rem;
            right: 1rem;
            bottom: 1rem;
            border-radius: 0.5rem;
            background: #64748b;
            transition: all 1s;
        }

        .core-center.active {
            background: linear-gradient(to right, #a5f3fc, #60a5fa);
            animation: pulse 1s;
        }

        .core-indicators {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            right: 1.5rem;
            bottom: 1.5rem;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 0.25rem;
        }

        .core-indicator {
            border-radius: 0.125rem;
            background: #374151;
            transition: all 0.3s;
        }

        .core-indicator.active {
            background: white;
            animation: ping 1s;
        }

        /* Connection pins */
        .corner-pin {
            position: absolute;
            width: 1.5rem;
            height: 1.5rem;
            background: linear-gradient(135deg, #fbbf24, #f97316);
            border-radius: 50%;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .corner-pin:nth-child(1) { top: -0.25rem; left: -0.25rem; }
        .corner-pin:nth-child(2) { top: -0.25rem; right: -0.25rem; }
        .corner-pin:nth-child(3) { bottom: -0.25rem; left: -0.25rem; }
        .corner-pin:nth-child(4) { bottom: -0.25rem; right: -0.25rem; }

        .external-pin {
            position: absolute;
            width: 0.75rem;
            height: 2rem;
            border-radius: 0.125rem;
            background: linear-gradient(to bottom, #9ca3af, #6b7280);
            transform-origin: center;
            transition: all 0.3s;
        }

        .external-pin.active {
            background: linear-gradient(to bottom, #22d3ee, #3b82f6);
        }

        /* Data flow lines */
        .data-flow {
            position: absolute;
            left: 15%;
            right: 15%;
            height: 2px;
            background: linear-gradient(to right, transparent, #22d3ee, transparent);
            opacity: 0.8;
            box-shadow: 0 0 4px rgba(34, 211, 238, 0.5);
            animation: dataFlow 2.5s linear infinite;
        }

        /* Orbital electrons */
        .electron {
            position: absolute;
            width: 0.5rem;
            height: 0.5rem;
            background: linear-gradient(to right, #22d3ee, #3b82f6);
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
            animation: orbit linear infinite;
            transform-origin: 50% 50%;
        }

        /* Background particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: #a5f3fc;
            border-radius: 50%;
            animation: float ease-in-out infinite;
        }

        /* Background shapes */
        .bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
        }

        .bg-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(3rem);
            animation: pulse 3s infinite;
        }

        .bg-shape:nth-child(1) {
            top: 5rem;
            left: 2.5rem;
            width: 24rem;
            height: 24rem;
            background: rgba(59, 130, 246, 0.2);
        }

        .bg-shape:nth-child(2) {
            bottom: 5rem;
            right: 2.5rem;
            width: 20rem;
            height: 20rem;
            background: rgba(124, 58, 237, 0.2);
            animation-delay: 1s;
        }

        .bg-shape:nth-child(3) {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 37.5rem;
            height: 25rem;
            background: rgba(34, 211, 238, 0.1);
            animation-delay: 0.5s;
        }

        /* Sections */
        .section {
            position: relative;
            z-index: 10;
            padding: 6rem 1rem;
        }

        .section-container {
            max-width: 1152px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.25rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 4rem;
            color: white;
        }

        .about-content {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            padding: 2rem;
            border-radius: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            max-width: 64rem;
            margin: 0 auto;
        }

        .about-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .about-text {
            color: #374151;
            font-size: 1.125rem;
            line-height: 1.75;
            margin-bottom: 1rem;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            padding: 2rem;
            border-radius: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transition: all 0.3s;
        }

        .service-card:hover {
            background: white;
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 4rem;
            height: 4rem;
            background: linear-gradient(to right, #22d3ee, #3b82f6);
            border-radius: 1rem;
            margin-bottom: 1.5rem;
            color: white;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #1f2937;
        }

        .service-description {
            color: #4b5563;
            font-size: 1.125rem;
            line-height: 1.75;
            margin-bottom: 1.5rem;
        }

        .service-button {
            border: 1px solid #3b82f6;
            color: #2563eb;
            background: transparent;
            padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .service-button:hover {
            background: #eff6ff;
        }

        /* Contact */
        .contact-content {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            padding: 2rem;
            border-radius: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            max-width: 64rem;
            margin: 0 auto;
            text-align: center;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            color: #1f2937;
        }

        .contact-item h4 {
            font-weight: bold;
            font-size: 1.125rem;
            margin-bottom: 0.5rem;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-25px); }
        }

        @keyframes dataFlow {
            0% { transform: translateX(-100%); opacity: 0; }
            20% { opacity: 1; }
            80% { opacity: 1; }
            100% { transform: translateX(100%); opacity: 0; }
        }

        @keyframes orbit {
            0% { transform: rotate(0deg) translateX(150px) rotate(0deg); }
            100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }

        @keyframes ping {
            75%, 100% { transform: scale(2); opacity: 0; }
        }

        /* Responsive design */
        @media (min-width: 768px) {
            .nav-links { display: flex; }
            .nav-phone { display: flex; }
            .hero-container { grid-template-columns: 1fr 1fr; }
            .main-heading h1 { font-size: 4rem; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (min-width: 1024px) {
            .main-heading h1 { font-size: 5rem; }
        }
        .nav-logo {
        display: flex;
        align-items: center;   /* vertical centering */
        gap: 8px;              /* spacing between logo and text */
        }

        .logo-icon {
        width: 40px;           /* adjust as needed */
        height: auto;
        display: block;
        }

