        :root {
            --primary: #2563EB;
            --primary-dark: #1E40AF;
            --primary-light: #DBEAFE;
             --text-primary: #1E293B;
             --text-secondary: #475569;
            --accent: #10B981;
            --accent-dark: #059669;
            --dark: #0F172A;
            --gray-900: #1E293B;
            --gray-700: #334155;
            --gray-500: #64748B;
            --gray-300: #CBD5E1;
            --gray-100: #F1F5F9;
            --white: #FFFFFF;
            --bg-primary: #FFFFFF;
            --bg-secondary: #F8FAFC;
            --border: #E2E8F0;
            --border-color: #E2E8F0;
            --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
            --shadow: 0 4px 6px rgba(15, 23, 42, 0.07);
            --shadow-lg: 0 10px 25px rgba(15, 23, 42, 0.1);
            --shadow-xl: 0 20px 40px rgba(15, 23, 42, 0.12);
            --font-display: 'Outfit', system-ui, sans-serif;
            --font-body: 'DM Sans', system-ui, sans-serif;
            --font-primary: 'Inter', sans-serif;
            --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
        }

        /* ===== Reset & Base Styles ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            /* ensure in-page anchors account for fixed navbar */
            scroll-padding-top: 140px;
        }

        body {
            font-family: var(--font-primary);
            background-color: var(--light-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            margin-top: 140px;
        }

        /* ===== Navigation ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.25rem 5%; /* slightly larger to fit wider logo */
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition-smooth);
            min-height: 120px; /* ensures the navbar has room for the logo */
        }

        .navbar.scrolled {
            padding: 1rem 5%;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-soft);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-icon { display: none; }

        .logo-img {
            width: 230px;
            height: 100px;
            border-radius: 14px;
            display: inline-block;
            object-fit: cover;
            padding: 8px 10px; /* keep rectangular padding */
        }

        /* hide textual logo in navbar */
        .logo-text { display: none; }

        .logo-text {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .logo-text span {
            color: var(--primary-color);
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition-smooth);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: var(--transition-smooth);
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-primary);
            color: white !important;
            padding: 0.75rem 1.75rem;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
            transition: var(--transition-smooth);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(0, 102, 255, 0.5);
        }

        .nav-cta::after {
            display: none !important;
        }

        .logout-btn {
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, #EF4444, #DC2626);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logout-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 2px;
            background: var(--text-primary);
            transition: var(--transition-smooth);
        }

        /* ========== HERO SECTION ========== */
        .hero {
            padding: 140px 5% 80px;
            background-image: url(/project.jpeg);
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.4;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 5px black;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.25rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.25rem;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.7;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 800;
            display: block;
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        /* ========== PROCESS SECTION ========== */
        .process-section {
            padding: 5rem 5%;
            background: var(--bg-primary);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 1rem;
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--gray-500);
        }

        .process-steps {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .process-step {
            background: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .process-step:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
        }

        .step-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--gray-900);
        }

        .step-description {
            color: var(--gray-500);
            line-height: 1.6;
        }

        /* ========== PROJECT FORM SECTION ========== */
        .project-section {
            padding: 5rem 5%;
            background: var(--bg-secondary);
        }

        .project-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 3rem;
            align-items: start;
        }

        /* Project Info Sidebar */
        .project-info {
            position: sticky;
            top: 120px;
        }

        .info-card {
            background: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            margin-bottom: 2rem;
        }

        .info-card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--gray-900);
        }

        .info-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .info-list li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .info-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 10px;
            flex-shrink: 0;
        }

        .info-text {
            flex: 1;
        }

        .info-text strong {
            display: block;
            font-weight: 700;
            margin-bottom: 0.25rem;
            color: var(--gray-900);
        }

        .info-text span {
            font-size: 0.95rem;
            color: var(--gray-500);
        }

        .contact-card {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            padding: 2rem;
            border-radius: 16px;
        }

        .contact-card h4 {
            font-family: var(--font-display);
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-item:last-child {
            border-bottom: none;
        }

        .contact-item i {
            opacity: 0.9;
        }

        .contact-item a {
            color: var(--white);
            text-decoration: none;
            transition: opacity 0.2s ease;
        }

        .contact-item a:hover {
            opacity: 0.8;
        }

        /* Project Form */
        .project-form-card {
            background: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: var(--shadow-lg);
        }

        .form-header {
            margin-bottom: 2.5rem;
        }

        .form-title {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 0.75rem;
        }

        .form-description {
            color: var(--gray-500);
            font-size: 1.05rem;
        }

        .form-section {
            margin-bottom: 2rem;
        }

        .section-label {
            font-family: var(--font-display);
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .section-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 8px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--gray-900);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .required {
            color: #EF4444;
        }

        .form-input,
        .form-select,
        .form-textarea {
            padding: 0.875rem 1.125rem;
            border: 1.5px solid var(--border);
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: var(--font-body);
            color: var(--gray-900);
            background: var(--bg-primary);
            transition: all 0.2s ease;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-light);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-hint {
            font-size: 0.875rem;
            color: var(--gray-500);
        }

        /* File Upload */
        .file-upload {
            position: relative;
            border: 2px dashed var(--border);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .file-upload:hover {
            border-color: var(--primary);
            background: var(--primary-light);
        }

        .file-upload input[type="file"] {
            position: absolute;
            opacity: 0;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            cursor: pointer;
        }

        .file-upload-content {
            pointer-events: none;
        }

        .file-upload-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
        }

        /* Submit Button */
        .submit-section {
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }

        .btn-submit {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            width: 100%;
            padding: 1.125rem 2rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
        }

        .submit-note {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.875rem;
            color: var(--gray-500);
        }

        /* Success Message */
        .success-message {
            display: none;
            text-align: center;
            padding: 3rem;
        }

        .success-message.active {
            display: block;
        }

        .success-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin: 0 auto 2rem;
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        }

        .success-title {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 1rem;
        }

        .success-text {
            font-size: 1.125rem;
            color: var(--gray-500);
            margin-bottom: 2rem;
        }

        /* ===== Footer ===== */
        .footer {
            background: linear-gradient(135deg, #0A0E27 0%, #1E293B 100%);
            color: #E2E8F0;
            padding: 4rem 5% 2rem;
            position: relative;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .footer-logo-icon { display: none; }

        .footer-logo-img {
            width: 120px;
            height: 72px;
            border-radius: 14px;
            display: inline-block;
            object-fit: cover;
            padding: 8px 10px;
        }

        .footer-logo-text {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 700;
            color: white;
        }

        .footer-logo-text span {
            color: var(--primary-light);
        }

        .footer-description {
            font-size: 0.9375rem;
            line-height: 1.8;
            color: #94A3B8;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
        }

        .footer-social-link {
            width: 45px;
            height: 45px;
            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: #94A3B8;
            font-size: 1.125rem;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .footer-social-link:hover {
            background: var(--gradient-primary);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-column h4 {
            font-family: var(--font-display);
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: #94A3B8;
            text-decoration: none;
            font-size: 0.9375rem;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--primary-light);
            transform: translateX(5px);
        }

        .footer-links a i {
            font-size: 0.75rem;
            opacity: 0;
            transition: var(--transition-smooth);
        }

        .footer-links a:hover i {
            opacity: 1;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-copyright {
            font-size: 0.875rem;
            color: #94A3B8;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .footer-bottom-links a {
            color: #94A3B8;
            text-decoration: none;
            font-size: 0.875rem;
            transition: var(--transition-smooth);
        }

        .footer-bottom-links a:hover {
            color: var(--primary-light);
        }



           @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                background: rgba(255, 255, 255, 0.98);
                padding: 2rem;
                gap: 1.5rem;
                border-bottom: 1px solid var(--border-color);
                box-shadow: var(--shadow-medium);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero {
                padding: 100px 5% 60px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
                align-items: center;
            }

            .stat-item {
                text-align: center;
            }

            .hero-image-container {
                max-width: 350px;
                margin-bottom: 1rem;
            }

            .floating-cards-wrapper {
                position: relative;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.75rem;
                margin-top: 1.5rem;
            }

            .floating-card {
                position: relative;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                bottom: auto !important;
                animation: none;
                flex-shrink: 0;
            }

            .hero-visual {
                flex-direction: column;
            }

            .btn {
                padding: 0.875rem 1.5rem;
                font-size: 0.9rem;
            }
        }


        /* Responsive Contact & Footer */
        @media (max-width: 1024px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 60px 5%;
            }

            .contact-form-wrapper {
                padding: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer {
                padding: 3rem 5% 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 0.75rem;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .project-container {
                grid-template-columns: 1fr;
            }

            .project-info {
                position: relative;
                top: 0;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 120px 5% 60px;
            }

            .hero-title {
                font-size: 2.25rem;
            }

            .hero-subtitle {
                font-size: 1.05rem;
            }

            .hero-stats {
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .project-form-card {
                padding: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }
        }

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --bg:         #f0f4ff;
    --surface:    #ffffff;
    --surface-2:  #e8eeff;
    --glow:       #2d4df7;
    --glow-2:     #5b4cdb;
    --glow-lt:    rgba(45,77,247,0.08);
    --green:      #0fa96b;
    --green-lt:   rgba(15,169,107,0.10);
    --line:       rgba(45,77,247,0.10);
    --line-md:    rgba(45,77,247,0.18);
    --text:       #0f172a;
    --text-soft:  #475569;
    --text-faint: #94a3b8;
    --radius:     18px;
    --shadow-sm:  0 2px 10px rgba(45,77,247,0.07);
    --shadow-md:  0 8px 32px rgba(45,77,247,0.12);
    --shadow-lg:  0 20px 60px rgba(45,77,247,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.proj-page {
    font-family: 'Manrope', sans-serif;
    background: var(--bg); color: var(--text); min-height: 100vh;
}

/* ══ HERO ══ */
.ph {
    padding: 140px 5% 80px;
    background-image: url(/project.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.ph-bg { position: absolute; inset: 0; pointer-events: none; }
.ph-bg::before {
    content: ''; position: absolute; top: -20%; left: -10%;
    width: 60%; height: 60%; border-radius: 50%;
    background: radial-gradient(circle, rgba(45,77,247,0.10) 0%, transparent 65%);
    animation: drift 12s ease-in-out infinite alternate;
}
.ph-bg::after {
    content: ''; position: absolute; bottom: -15%; right: -10%;
    width: 55%; height: 55%; border-radius: 50%;
    background: radial-gradient(circle, rgba(91,76,219,0.08) 0%, transparent 65%);
    animation: drift2 14s ease-in-out infinite alternate;
}
@keyframes drift  { from{transform:translate(0,0)} to{transform:translate(5%,7%)} }
@keyframes drift2 { from{transform:translate(0,0)} to{transform:translate(-5%,-5%)} }

.ph-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(45,77,247,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45,77,247,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
    pointer-events: none;
}
.ph-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.ph-eyebrow {
    display: inline-flex; align-items: center; gap: 0.55rem;
    background: rgba(45,77,247,0.08); border: 1px solid rgba(45,77,247,0.2);
    color: var(--glow); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.45rem 1.1rem; border-radius: 100px; margin-bottom: 1.75rem;
}
.ph-dot { width: 6px; height: 6px; background: var(--glow); border-radius: 50%; animation: blink 2s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.ph-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 9vw, 7rem);
    line-height: 0.95; letter-spacing: -0.01em;
    color: var(--text); margin-bottom: 1.5rem;
}
.ph-title .accent {
    background: linear-gradient(90deg, var(--glow), var(--glow-2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ph-sub { font-size: 1.0625rem; line-height: 1.75; color: var(--text-soft); max-width: 580px; margin: 0 auto 2.5rem; }
.ph-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }

.btn-blue {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.9rem 2rem; background: linear-gradient(135deg, var(--glow), var(--glow-2));
    color: white; border: none; border-radius: 100px;
    font-family: 'Manrope', sans-serif; font-size: 0.9375rem; font-weight: 700;
    cursor: pointer; text-decoration: none;
    box-shadow: 0 6px 24px rgba(45,77,247,0.35); transition: all 0.25s;
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(45,77,247,0.45); color: white; text-decoration: none; }

.btn-white {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.9rem 2rem; background: white; color: var(--text);
    border: 1.5px solid var(--line-md); border-radius: 100px;
    font-family: 'Manrope', sans-serif; font-size: 0.9375rem; font-weight: 600;
    cursor: pointer; text-decoration: none;
    box-shadow: var(--shadow-sm); transition: all 0.25s;
}
.btn-white:hover { border-color: var(--glow); color: var(--glow); background: var(--glow-lt); text-decoration: none; }

.ph-stats {
    display: inline-flex; gap: 0;
    border: 1px solid var(--line-md); border-radius: 18px; overflow: hidden;
    background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm);
}
.ph-stat { padding: 1.25rem 2rem; border-right: 1px solid var(--line-md); }
.ph-stat:last-child { border-right: none; }
.ph-stat-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
    background: linear-gradient(135deg, var(--text), var(--glow));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; margin-bottom: 0.2rem;
}
.ph-stat-lbl { font-size: 0.72rem; color: var(--text-faint); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* ══ MARKETPLACE ══ */
.market-section { max-width: 1280px; margin: 0 auto; padding: 5rem 2rem; }
.sec-top { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1.5rem; }
.sec-eyebrow {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--glow); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem;
}
.sec-eyebrow::before { content:''; width: 18px; height: 2px; background: var(--glow); border-radius: 2px; }
.sec-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--text); letter-spacing: -0.01em; line-height: 1;
}

.mkt-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.mkt-tab {
    padding: 0.45rem 1.1rem; background: white; border: 1.5px solid var(--line-md);
    border-radius: 100px; color: var(--text-soft);
    font-family: 'Manrope', sans-serif; font-size: 0.8rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s; box-shadow: var(--shadow-sm);
}
.mkt-tab:hover { border-color: var(--glow); color: var(--glow); }
.mkt-tab.active { background: var(--glow); border-color: var(--glow); color: white; box-shadow: 0 4px 14px rgba(45,77,247,0.28); }

.mkt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.proj-card {
    background: white; border: 1px solid var(--line); border-radius: 20px;
    overflow: hidden; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(45,77,247,0.25); }

.proj-img { position: relative; height: 200px; overflow: hidden; background: var(--surface-2); }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.proj-card:hover .proj-img img { transform: scale(1.05); }
.proj-img-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem; background: linear-gradient(135deg, #eef2ff, #dde8ff);
}
.proj-cat-badge {
    position: absolute; top: 0.875rem; left: 0.875rem;
    background: rgba(255,255,255,0.93); border: 1px solid var(--line-md);
    border-radius: 100px; color: var(--glow); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; padding: 0.28rem 0.7rem;
}
.proj-price-badge {
    position: absolute; top: 0.875rem; right: 0.875rem;
    background: linear-gradient(135deg, var(--glow), var(--glow-2));
    color: white; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem;
    padding: 0.3rem 0.85rem; border-radius: 100px; box-shadow: 0 4px 14px rgba(45,77,247,0.35);
}
.proj-overlay {
    position: absolute; inset: 0; background: rgba(15,23,42,0.55);
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    opacity: 0; transition: opacity 0.3s;
}
.proj-card:hover .proj-overlay { opacity: 1; }
.overlay-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.6rem 1.25rem; border-radius: 100px; font-size: 0.8rem; font-weight: 700;
    text-decoration: none; transition: all 0.2s; border: none; cursor: pointer;
    font-family: 'Manrope', sans-serif;
}
.overlay-btn.demo { background: white; color: var(--text); }
.overlay-btn.demo:hover { background: var(--surface-2); color: var(--glow); text-decoration: none; }
.overlay-btn.buy  { background: linear-gradient(135deg, var(--glow), var(--glow-2)); color: white; }
.overlay-btn.buy:hover { transform: scale(1.04); color: white; text-decoration: none; }

.proj-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.proj-name { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1rem; color: var(--text); margin-bottom: 0.5rem; line-height: 1.3; }
.proj-desc { font-size: 0.8125rem; line-height: 1.65; color: var(--text-soft); margin-bottom: 1rem; flex: 1; }
.proj-stack { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.stack-tag {
    font-size: 0.67rem; font-weight: 600; padding: 0.2rem 0.6rem;
    background: var(--surface-2); border: 1px solid var(--line); border-radius: 6px; color: var(--text-soft);
}
.proj-meta {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1rem; border-top: 1px solid var(--line); margin-bottom: 1rem;
}
.proj-delivery { font-size: 0.78rem; color: var(--text-soft); display: flex; align-items: center; gap: 0.4rem; }
.proj-delivery i { color: var(--green); }
.proj-price-main { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; color: var(--glow); }
.proj-actions { display: flex; gap: 0.75rem; }
.btn-proj-cart {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.7rem 1rem; background: linear-gradient(135deg, var(--glow), var(--glow-2));
    color: white; border: none; border-radius: 12px;
    font-family: 'Manrope', sans-serif; font-size: 0.85rem; font-weight: 700;
    cursor: pointer; transition: all 0.25s; box-shadow: 0 4px 16px rgba(45,77,247,0.25);
}
.btn-proj-cart:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,77,247,0.38); }
.btn-proj-cart.added { background: linear-gradient(135deg, var(--green), #07875a); }
.btn-proj-demo {
    padding: 0.7rem 1rem; background: white; color: var(--glow);
    border: 1.5px solid var(--line-md); border-radius: 12px;
    font-family: 'Manrope', sans-serif; font-size: 0.85rem; font-weight: 700;
    cursor: pointer; text-decoration: none; display: flex; align-items: center; gap: 0.4rem;
    transition: all 0.2s; box-shadow: var(--shadow-sm);
}
.btn-proj-demo:hover { border-color: var(--glow); background: var(--glow-lt); text-decoration: none; }

.mkt-empty { grid-column: 1/-1; text-align: center; padding: 4rem 2rem; display: none; }
.mkt-empty.show { display: block; }
.mkt-empty i { font-size: 2.5rem; color: var(--text-faint); margin-bottom: 1rem; display: block; }
.mkt-empty p { color: var(--text-soft); font-size: 0.9375rem; }

/* ══ DIVIDER BANNER ══ */
.divider-section {
    padding: 140px 5% 80px;
    background-image: url(/project.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.divider-section::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 28px 28px; pointer-events: none;
}
.div-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.div-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
    color: white; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.25rem;
}
.div-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 5vw, 3.5rem); color: white; line-height: 1; margin-bottom: 1rem; }
.div-sub { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 2rem; }
.btn-div {
    display: inline-flex; align-items: center; gap: 0.65rem;
    padding: 1rem 2.25rem; background: white; color: var(--glow);
    border-radius: 100px; font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 800;
    text-decoration: none; box-shadow: 0 8px 28px rgba(0,0,0,0.2); transition: all 0.25s;
}
.btn-div:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.28); color: var(--glow); text-decoration: none; }

/* ══ CUSTOM ORDER FORM ══ */
.order-section { max-width: 1280px; margin: 0 auto; padding: 5rem 2rem 6rem; }
.order-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.order-sidebar { position: sticky; top: 2rem; }
.sidebar-intro p { font-size: 1rem; line-height: 1.75; color: var(--text-soft); margin-top: 0.75rem; }
.order-steps { display: flex; flex-direction: column; margin-top: 2rem; }
.o-step { display: flex; gap: 1.1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.o-step:last-child { border-bottom: none; }
.o-step-num {
    width: 34px; height: 34px; flex-shrink: 0; border-radius: 10px;
    background: var(--glow-lt); border: 1px solid var(--line-md);
    color: var(--glow); font-size: 0.8rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.o-step-body strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--text); margin-bottom: 0.15rem; }
.o-step-body span { font-size: 0.78rem; color: var(--text-soft); line-height: 1.5; }
.order-contact {
    margin-top: 2rem; padding: 1.25rem;
    background: var(--surface-2); border: 1px solid var(--line-md);
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.order-contact h4 { font-size: 0.85rem; font-weight: 800; color: var(--text); margin-bottom: 0.875rem; }
.oc-item { display: flex; align-items: center; gap: 0.65rem; padding: 0.5rem 0; border-bottom: 1px solid var(--line); font-size: 0.8rem; }
.oc-item:last-child { border-bottom: none; }
.oc-item i { width: 16px; color: var(--glow); }
.oc-item a { color: var(--text-soft); text-decoration: none; transition: color 0.2s; }
.oc-item a:hover { color: var(--glow); }

.order-card { background: white; border: 1px solid var(--line-md); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); }
.order-card-header { padding: 2.25rem 2.5rem 1.75rem; background: linear-gradient(135deg, #eef2ff, #f5f8ff); border-bottom: 1px solid var(--line); }
.order-card-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--text); margin-bottom: 0.35rem; }
.order-card-header p { font-size: 0.875rem; color: var(--text-soft); }
.order-body { padding: 2.25rem 2.5rem; }

.fsec { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.fsec:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.fsec-title {
    display: flex; align-items: center; gap: 0.65rem;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
    color: var(--glow); margin-bottom: 1.25rem;
}
.fsec-title i {
    width: 28px; height: 28px; background: var(--glow-lt); border: 1px solid var(--line-md);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; color: var(--glow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grp { display: flex; flex-direction: column; gap: 0.45rem; }
.form-grp.full { grid-column: 1/-1; }
.form-lbl { font-size: 0.78rem; font-weight: 700; color: var(--text); }
.form-lbl .req { color: #ef233c; }
.form-inp, .form-sel, .form-ta {
    width: 100%; background: #f8faff; border: 1.5px solid var(--line-md); border-radius: 11px;
    padding: 0.75rem 1rem; color: var(--text); font-family: 'Manrope', sans-serif; font-size: 0.875rem;
    outline: none; transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-inp::placeholder, .form-ta::placeholder { color: var(--text-faint); }
.form-inp:focus, .form-sel:focus, .form-ta:focus { border-color: rgba(45,77,247,0.5); background: #f0f5ff; box-shadow: 0 0 0 3px rgba(45,77,247,0.10); }
.form-sel {
    appearance: none; cursor: pointer; background-color: #f8faff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 16px; padding-right: 2.5rem;
}
.form-sel option { background: white; color: var(--text); }
.form-ta { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-hint { font-size: 0.72rem; color: var(--text-faint); }

.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.65rem; }
.type-card { position: relative; }
.type-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.type-card label {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    padding: 1rem 0.65rem; background: #f8faff; border: 1.5px solid var(--line-md);
    border-radius: 14px; cursor: pointer; transition: all 0.2s; text-align: center;
}
.type-card label:hover { border-color: var(--glow); background: var(--glow-lt); }
.type-card input:checked + label { border-color: var(--glow); background: var(--glow-lt); box-shadow: 0 0 0 1px rgba(45,77,247,0.2); }
.type-icon { font-size: 1.3rem; }
.type-name { font-size: 0.72rem; font-weight: 700; color: var(--text); }
.type-desc { font-size: 0.63rem; color: var(--text-faint); line-height: 1.3; }

.budget-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.55rem; }
.budget-opt { position: relative; }
.budget-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.budget-opt label { display: block; padding: 0.7rem 0.75rem; background: #f8faff; border: 1.5px solid var(--line-md); border-radius: 10px; cursor: pointer; transition: all 0.2s; text-align: center; }
.budget-opt label:hover { border-color: var(--glow); background: var(--glow-lt); }
.budget-opt input:checked + label { border-color: var(--glow); background: var(--glow-lt); box-shadow: 0 0 0 1px rgba(45,77,247,0.2); }
.budget-opt label strong { display: block; font-size: 0.78rem; font-weight: 700; color: var(--text); margin-bottom: 0.1rem; }
.budget-opt input:checked + label strong { color: var(--glow); }
.budget-opt label span { font-size: 0.64rem; color: var(--text-faint); }

.file-drop {
    border: 2px dashed var(--line-md); border-radius: 14px;
    padding: 2rem; text-align: center; transition: all 0.2s; cursor: pointer; position: relative; background: #f8faff;
}
.file-drop:hover, .file-drop.dragover { border-color: var(--glow); background: var(--glow-lt); }
.file-drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.file-drop-icon { font-size: 1.75rem; color: var(--glow); margin-bottom: 0.6rem; }
.file-drop p { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 0.2rem; }
.file-drop small { font-size: 0.72rem; color: var(--text-faint); }
#fileNames { margin-top: 0.75rem; font-size: 0.75rem; color: var(--glow); font-weight: 600; }

.btn-submit {
    width: 100%; padding: 1rem;
    background: linear-gradient(135deg, var(--glow), var(--glow-2));
    color: white; border: none; border-radius: 13px;
    font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 800;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.65rem;
    box-shadow: 0 8px 28px rgba(45,77,247,0.32); transition: all 0.25s; margin-top: 1.75rem;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(45,77,247,0.42); }
.submit-note { text-align: center; font-size: 0.75rem; color: var(--text-faint); margin-top: 0.875rem; }

.success-state { display: none; text-align: center; padding: 3.5rem 2rem; }
.success-state.show { display: block; }
.success-anim {
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, var(--glow), #0099cc);
    display: flex; align-items: center; justify-content: center; font-size: 1.75rem;
    color: white; margin: 0 auto 1.25rem;
    animation: popIn 0.5s cubic-bezier(.22,1,.36,1);
    box-shadow: 0 0 36px rgba(45,77,247,0.3);
}
@keyframes popIn { from{transform:scale(0.5);opacity:0} to{transform:scale(1);opacity:1} }
.success-state h3 { font-family:'Bebas Neue',sans-serif; font-size:2.2rem; color:var(--text); margin-bottom:0.75rem; }
.success-state p { font-size:0.9375rem; color:var(--text-soft); max-width:400px; margin:0 auto 1.75rem; line-height:1.7; }

/* Cart toast */
.cart-toast {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
    background: white; border: 1px solid var(--line-md); border-radius: 16px;
    padding: 1rem 1.5rem; display: flex; align-items: center; gap: 0.875rem;
    box-shadow: var(--shadow-lg); transform: translateY(100px); opacity: 0;
    transition: all 0.35s cubic-bezier(.22,1,.36,1); max-width: 340px;
}
.cart-toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--green-lt); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.toast-text strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--text); margin-bottom: 0.1rem; }
.toast-text span { font-size: 0.78rem; color: var(--text-soft); }
.toast-close { margin-left: auto; background: none; border: none; color: var(--text-faint); cursor: pointer; font-size: 0.875rem; padding: 0.25rem; }

/* Responsive */
@media (max-width: 1024px) { .mkt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .order-layout { grid-template-columns: 1fr; } .order-sidebar { position: static; } }
@media (max-width: 640px) {
    .mkt-grid { grid-template-columns: 1fr; }
    .type-grid { grid-template-columns: repeat(2, 1fr); }
    .budget-row { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .ph-stats { flex-direction: column; border-radius: 14px; }
    .ph-stat { border-right: none; border-bottom: 1px solid var(--line-md); }
    .ph-stat:last-child { border-bottom: none; }
    .ph-btns { flex-direction: column; align-items: center; }
    .order-body, .order-card-header { padding: 1.5rem; }
}