        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --secondary: #ec4899;
            --accent: #10b981;
            --dark: #1e1b4b;
            --light: #f8fafc;
            --gray: #64748b;
            --card-bg: #ffffff;
            --shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
            --gradient: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
            --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f0f4ff 0%, #fdf2f8 50%, #ecfdf5 100%);
            min-height: 100vh;
            color: var(--dark);
        }

        /* Navbar */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            -webkit-text-fill-color: white;
        }

         .navbar .nav-links {
            display: flex;
            list-style: none;
        }

        .navbar .nav-links li a {
            color: var(--dark-color);
            text-decoration: none;
            padding: 0.75rem 1rem;
            margin: 0 0.25rem;
            border-radius: 5px;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .navbar .nav-links li a:hover {
            color: var(--secondary);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--dark-color);
        }

        .nav-tabs {
            display: flex;
            gap: 10px;
            list-style: none;
        }

        .nav-tab {
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-tab:hover {
            background: linear-gradient(135deg, #eef2ff 0%, #fdf2f8 100%);
        }

        .nav-tab.active {
            background: var(--gradient);
            color: white;
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
        }

        .nav-tab.active-green {
            background: var(--gradient-green);
            color: white;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
        }

        /* Main Container */
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 20px;
        }

        .hero-text {
            text-align: center;
            margin-bottom: 40px;
        }

        .hero-text h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text.green h1 {
            background: var(--gradient-green);
            -webkit-background-clip: text;
            background-clip: text;
        }

        .hero-text p {
            color: var(--gray);
            font-size: 1.1rem;
        }

        /* Page Sections */
        .page-section {
            display: none;
        }

        .page-section.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        /* Editor Layout */
        .editor-wrapper {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 30px;
        }

        /* Canvas Area */
        .canvas-section {
            background: var(--card-bg);
            border-radius: 24px;
            box-shadow: var(--shadow);
            padding: 25px;
            min-height: 600px;
        }

        .canvas-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .canvas-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark);
        }

        .canvas-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 10px 20px;
            border: none;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        }

        .btn-secondary {
            background: var(--light);
            color: var(--dark);
            border: 2px solid #e2e8f0;
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .btn-success {
            background: var(--gradient-green);
            color: white;
        }

        .btn-success:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
        }

        .btn-large {
            padding: 15px 40px;
            font-size: 1.1rem;
        }

        .btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none !important;
        }

        /* Upload Area */
        .upload-area {
            border: 3px dashed #cbd5e1;
            border-radius: 20px;
            padding: 60px 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .upload-area:hover, .upload-area.dragover {
            border-color: var(--primary);
            background: linear-gradient(135deg, #eef2ff 0%, #fdf2f8 100%);
        }

        .upload-area.green:hover, .upload-area.green.dragover {
            border-color: var(--accent);
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
        }

        .upload-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }

        .upload-icon.green {
            background: var(--gradient-green);
        }

        .upload-area h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .upload-area p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .upload-btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--gradient);
            color: white;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
        }

        .upload-btn.green {
            background: var(--gradient-green);
        }

        /* Canvas Container */
        .canvas-container {
            position: relative;
            display: none;
            background: #f1f5f9;
            border-radius: 16px;
            overflow: hidden;
            min-height: 400px;
        }

        #imageCanvas {
            max-width: 100%;
            display: block;
            margin: 0 auto;
        }

        /* Text Overlay */
        .text-overlay {
            position: absolute;
            cursor: move;
            user-select: none;
            padding: 10px 15px;
            border: 2px dashed transparent;
            border-radius: 8px;
            transition: border-color 0.3s;
            white-space: nowrap;
        }

        .text-overlay:hover, .text-overlay.active {
            border-color: var(--primary);
        }

        .text-overlay .delete-btn {
            position: absolute;
            top: -12px;
            right: -12px;
            width: 24px;
            height: 24px;
            background: #ef4444;
            color: white;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            cursor: pointer;
            border: none;
        }

        .text-overlay.active .delete-btn {
            display: flex;
        }

        /* Controls Panel */
        .controls-panel {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .control-card {
            background: var(--card-bg);
            border-radius: 20px;
            box-shadow: var(--shadow);
            padding: 20px;
        }

        .control-card h3 {
            font-size: 1rem;
            margin-bottom: 15px;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .control-card h3 span {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #eef2ff 0%, #fdf2f8 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .control-group {
            margin-bottom: 15px;
        }

        .control-group:last-child {
            margin-bottom: 0;
        }

        .control-group label {
            display: block;
            font-size: 0.85rem;
            color: var(--gray);
            margin-bottom: 8px;
            font-weight: 500;
        }

        .control-group input[type="text"],
        .control-group select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            transition: border-color 0.3s;
            background: var(--light);
        }

        .control-group input[type="text"]:focus,
        .control-group select:focus {
            outline: none;
            border-color: var(--primary);
        }

        .control-group input[type="range"] {
            width: 100%;
            height: 8px;
            border-radius: 4px;
            background: #e2e8f0;
            appearance: none;
            cursor: pointer;
        }

        .control-group input[type="range"]::-webkit-slider-thumb {
            appearance: none;
            width: 20px;
            height: 20px;
            background: var(--gradient);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(99, 102, 241, 0.4);
        }

        .control-group input[type="color"] {
            width: 100%;
            height: 45px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            padding: 5px;
            background: var(--light);
        }

        .range-value {
            display: inline-block;
            background: var(--light);
            padding: 5px 12px;
            border-radius: 8px;
            font-size: 0.85rem;
            color: var(--primary);
            font-weight: 600;
            margin-left: 10px;
        }

        .btn-block {
            width: 100%;
            justify-content: center;
        }

        /* Download Options */
        .download-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 15px;
        }

        .download-btn {
            padding: 12px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            background: white;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            font-family: 'Poppins', sans-serif;
        }

        .download-btn:hover {
            border-color: var(--primary);
            background: linear-gradient(135deg, #eef2ff 0%, #fdf2f8 100%);
        }

        .download-btn.active {
            border-color: var(--primary);
            background: var(--gradient);
            color: white;
        }

        .download-btn span {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .download-btn small {
            font-size: 0.75rem;
            opacity: 0.8;
        }

        /* Quality Indicator */
        .quality-indicator {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: var(--gray);
            margin-top: 5px;
        }

        /* Image Info */
        .image-info {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            padding: 15px;
            background: linear-gradient(135deg, #eef2ff 0%, #fdf2f8 100%);
            border-radius: 12px;
            margin-top: 15px;
        }

        .info-item {
            font-size: 0.85rem;
        }

        .info-item strong {
            color: var(--primary);
        }

        /* ===================== */
        /* BACKGROUND REMOVER SECTION */
        /* ===================== */
        .bg-remover-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .bg-upload-section {
            background: var(--card-bg);
            border-radius: 24px;
            box-shadow: var(--shadow);
            padding: 30px;
            display: flex;
            flex-direction: column;
        }

        .bg-upload-section h2 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .bg-upload-area {
            flex: 1;
            border: 3px dashed #cbd5e1;
            border-radius: 20px;
            padding: 40px 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 350px;
        }

        .bg-upload-area:hover, .bg-upload-area.dragover {
            border-color: var(--accent);
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
        }

        .bg-upload-area.has-image {
            padding: 20px;
        }

        .bg-upload-area img {
            max-width: 100%;
            max-height: 300px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .bg-button-group {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .bg-result-section {
            background: var(--card-bg);
            border-radius: 24px;
            box-shadow: var(--shadow);
            padding: 30px;
            display: flex;
            flex-direction: column;
        }

        .bg-result-section h2 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--accent);
        }

        .bg-result-area {
            flex: 1;
            border-radius: 20px;
            background: repeating-conic-gradient(#e2e8f0 0% 25%, white 0% 50%) 50% / 20px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 350px;
            position: relative;
            overflow: hidden;
        }

        .bg-result-area img {
            max-width: 100%;
            max-height: 350px;
            border-radius: 12px;
        }

        .bg-placeholder {
            text-align: center;
            color: var(--gray);
        }

        .bg-placeholder-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 2rem;
        }

        .bg-download-options {
            display: flex;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        /* Processing Overlay */
        .processing-overlay {
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.95);
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            z-index: 10;
        }

        .processing-overlay.active {
            display: flex;
        }

        .spinner {
            width: 60px;
            height: 60px;
            border: 4px solid #e2e8f0;
            border-top-color: var(--accent);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 15px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .processing-text {
            font-weight: 600;
            color: var(--dark);
        }

        /* Toast Notification */
        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            padding: 15px 25px;
            background: var(--dark);
            color: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 2000;
        }

        .toast.show {
            transform: translateY(0);
            opacity: 1;
        }

        .toast.success {
            background: var(--gradient-green);
        }

        .toast.error {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .control-card {
            animation: fadeIn 0.5s ease forwards;
        }

        .control-card:nth-child(2) { animation-delay: 0.1s; }
        .control-card:nth-child(3) { animation-delay: 0.2s; }
        .control-card:nth-child(4) { animation-delay: 0.3s; }

        /* Responsive */
        @media (max-width: 1024px) {
            .editor-wrapper {
                grid-template-columns: 1fr;
            }

            .controls-panel {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
            }

            .bg-remover-wrapper {
                grid-template-columns: 1fr;
            }
        }



        @media (max-width: 768px) {
            .navbar .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #ffffff;
                flex-direction: column;
                align-items: center;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease-out;
            }

            .navbar .logo {
                font-size: 1.25rem;
            }

            .navbar .nav-links.nav-active {
                max-height: 380px; /* Adjust based on content */
            }
            
            .navbar .nav-links li {
                width: 100%;
                text-align: center;
            }

            .navbar .nav-links li a {
                display: block;
                padding: 1rem;
                margin: 0;
                border-radius: 0;
                transition: background 0.3s ease;
            }
            .navbar .nav-links li a:hover {
                background: var(--secondary-color);
            }

            .hamburger {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .nav-tabs {
                gap: 5px;
            }

            .nav-tab {
                padding: 10px 16px;
                font-size: 0.85rem;
            }

            .nav-tab span.tab-text {
                display: none;
            }

            .hero-text h1 {
                font-size: 1.8rem;
            }

            .controls-panel {
                grid-template-columns: 1fr;
            }

            .canvas-actions {
                width: 100%;
                justify-content: center;
            }

            .download-options {
                grid-template-columns: 1fr;
            }

            .bg-button-group {
                flex-direction: column;
            }

            .bg-download-options {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 1.4rem;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
            }

            .upload-area {
                padding: 40px 15px;
            }

            .btn {
                padding: 10px 15px;
                font-size: 0.85rem;
            }

            .nav-tab {
                padding: 8px 12px;
            }
        }

        /* File Input Hidden */
        .file-input {
            display: none;
        }

        /* Comparison Slider */
        .comparison-container {
            display: none;
            margin-top: 20px;
        }

        .comparison-container.active {
            display: block;
        }

        /* Background Color Options */
        .bg-color-options {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .bg-color-btn {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: 3px solid #e2e8f0;
            cursor: pointer;
            transition: all 0.3s;
        }

        .bg-color-btn:hover {
            transform: scale(1.1);
        }

        .bg-color-btn.active {
            border-color: var(--accent);
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
        }

        .bg-color-btn.transparent {
            background: repeating-conic-gradient(#e2e8f0 0% 25%, white 0% 50%) 50% / 10px 10px;
        }


        .contact-us-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .contact-header h1 {
            font-size: 2.5rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }

        .contact-header p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .contact-form-section {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .contact-form-section h2 {
            color: var(--dark);
            margin-bottom: 10px;
            font-size: 1.8rem;
        }

        .contact-form-section .subtitle {
            color: var(--gray);
            margin-bottom: 30px;
            font-size: 0.95rem;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
            background: var(--light);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .contact-info-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .info-card {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(99, 102, 241, 0.2);
        }

        .info-card-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .info-card h3 {
            color: var(--dark);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .info-card p {
            color: var(--gray);
            line-height: 1.8;
        }

        .info-card a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-card a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        .social-links {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .social-links h2 {
            color: var(--dark);
            margin-bottom: 25px;
            font-size: 1.8rem;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
        }

        .social-icon:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
        }

        .social-icon.twitter {
            background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
        }

        .social-icon.facebook {
            background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
        }

        .social-icon.instagram {
            background: linear-gradient(135deg, #e1306c 0%, #c13584 100%);
        }

        .social-icon.linkedin {
            background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
        }

        .social-icon.github {
            background: linear-gradient(135deg, #333 0%, #181818 100%);
        }

        /* Success Message */
        .success-message {
            background: var(--gradient-green);
            color: white;
            padding: 15px 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            display: none;
            animation: slideDown 0.3s ease;
        }

        .success-message.show {
            display: block;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
            }

            .contact-header h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 640px) {
            .contact-header {
                margin-bottom: 40px;
            }

            .contact-header h1 {
                font-size: 1.75rem;
            }

            .contact-header p {
                font-size: 1rem;
            }

            .contact-form-section,
            .social-links {
                padding: 25px;
            }

            .info-card {
                padding: 25px;
            }

            .contact-form-section h2,
            .social-links h2 {
                font-size: 1.5rem;
            }

            .form-group input,
            .form-group textarea,
            .form-group select {
                padding: 12px 15px;
            }

            .submit-btn {
                padding: 14px;
                font-size: 1rem;
            }

            .social-icons {
                gap: 15px;
            }

            .social-icon {
                width: 55px;
                height: 55px;
            }
        }




        .how-it-works-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            background: white;
            border-radius: 30px;
            box-shadow: var(--shadow);
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-badge {
            display: inline-block;
            background: var(--gradient);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 20px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-header .gradient-text {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Steps Container */
        .steps-container {
            position: relative;
            padding: 40px 0;
        }

        /* Connection Line */
        .connection-line {
            position: absolute;
            left: 50%;
            top: 140px;
            bottom: 140px;
            width: 3px;
            background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
            transform: translateX(-50%);
            opacity: 0.3;
        }

        /* Step Card */
        .step-card {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 40px;
            align-items: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .step-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .step-card:last-child {
            margin-bottom: 0;
        }

        /* Step Content (Text) */
        .step-content {
            text-align: right;
            padding: 30px;
            background: var(--light);
            border-radius: 20px;
            transition: all 0.4s ease;
        }

        .step-card:nth-child(even) .step-content {
            text-align: left;
            order: 3;
        }

        .step-content:hover {
            transform: translateX(-10px);
            background: white;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
        }

        .step-card:nth-child(even) .step-content:hover {
            transform: translateX(10px);
        }

        .step-number-label {
            display: inline-block;
            color: var(--primary);
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .step-content h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 12px;
        }

        .step-content p {
            color: var(--gray);
            font-size: 1.05rem;
            line-height: 1.8;
        }

        /* Step Icon (Center) */
        .step-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
            transition: all 0.4s ease;
        }

        .step-card:hover .step-icon {
            transform: scale(1.15) rotate(360deg);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
        }

        .step-icon::before {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            border: 2px dashed var(--primary);
            border-radius: 50%;
            opacity: 0.3;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Step Visual (Image/Demo) */
        .step-visual {
            padding: 30px;
            background: var(--light);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 200px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .step-card:nth-child(even) .step-visual {
            order: 1;
        }

        .step-visual:hover {
            transform: translateX(10px);
            background: white;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
        }

        .step-card:nth-child(even) .step-visual:hover {
            transform: translateX(-10px);
        }

        .step-visual::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: var(--gradient);
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(20px, -20px); }
        }

        .visual-demo {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .demo-icon {
            font-size: 4rem;
            margin-bottom: 15px;
            display: inline-block;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .demo-label {
            color: var(--gray);
            font-size: 0.95rem;
            font-weight: 600;
        }

        /* CTA Section */
        .cta-box {
            margin-top: 60px;
            padding: 50px;
            background: var(--gradient);
            border-radius: 25px;
            text-align: center;
            color: white;
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
            opacity: 0;
            transform: scale(0.95);
        }

        .cta-box.animate {
            opacity: 1;
            transform: scale(1);
            transition: all 0.8s ease 0.3s;
        }

        .cta-box h3 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .cta-box p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: var(--primary);
            padding: 16px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .step-card {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .connection-line {
                display: none;
            }

            .step-content,
            .step-card:nth-child(even) .step-content {
                text-align: center;
                order: 2;
            }

            .step-content:hover,
            .step-card:nth-child(even) .step-content:hover {
                transform: translateY(-5px);
            }

            .step-icon {
                order: 1;
                margin: 0 auto;
            }

            .step-visual,
            .step-card:nth-child(even) .step-visual {
                order: 3;
            }

            .step-visual:hover,
            .step-card:nth-child(even) .step-visual:hover {
                transform: translateY(-5px);
            }

            .section-header h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 640px) {
            .how-it-works-section {
                padding: 50px 20px;
            }

            .section-header {
                margin-bottom: 50px;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .step-card {
                margin-bottom: 40px;
            }

            .step-content,
            .step-visual {
                padding: 20px;
            }

            .step-content h3 {
                font-size: 1.4rem;
            }

            .step-content p {
                font-size: 1rem;
            }

            .step-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }

            .step-icon::before {
                width: 100px;
                height: 100px;
            }

            .demo-icon {
                font-size: 3rem;
            }

            .cta-box {
                padding: 40px 25px;
            }

            .cta-box h3 {
                font-size: 1.6rem;
            }

            .cta-box p {
                font-size: 1rem;
            }

            .cta-button {
                padding: 14px 35px;
                font-size: 1rem;
            }
        }


        .adsense-box {
    width: 100%;
    margin: 30px auto;
    text-align: center;
    overflow: hidden;
}


@media (max-width: 768px) {
    .adsense-box {
        margin: 20px 0;
    }
}





 .faq-section {
            max-width: 1000px;
            margin: 20px auto;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-badge {
            display: inline-block;
            background: var(--gradient);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 20px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-header .gradient-text {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Search Box */
        .faq-search {
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 0.2s;
        }

        .search-container {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .search-input {
            width: 100%;
            padding: 18px 55px 18px 25px;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            font-size: 1rem;
            background: white;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.2);
        }

        .search-icon {
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.3rem;
            color: var(--gray);
        }

        /* Categories */
        .faq-categories {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 0.4s;
        }

        .category-btn {
            padding: 12px 25px;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--gray);
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(99, 102, 241, 0.05);
        }

        .category-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
        }

        .category-btn.active {
            background: var(--gradient);
            color: white;
            border-color: transparent;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
        }

        /* FAQ Container */
        .faq-container {
            background: white;
            border-radius: 25px;
            padding: 40px;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 0.6s;
        }

        /* FAQ Item */
        .faq-item {
            margin-bottom: 20px;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .faq-item:last-child {
            margin-bottom: 0;
        }

        .faq-item.active {
            border-color: var(--primary);
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
        }

        /* FAQ Question */
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 30px;
            background: var(--light);
            cursor: pointer;
            transition: all 0.3s ease;
            user-select: none;
        }

        .faq-item.active .faq-question {
            background: white;
        }

        .faq-question:hover {
            background: white;
        }

        .question-text {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--dark);
            padding-right: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .question-icon {
            font-size: 1.5rem;
            color: var(--primary);
        }

        .toggle-icon {
            width: 35px;
            height: 35px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            font-weight: bold;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .toggle-icon {
            transform: rotate(45deg);
        }

        /* FAQ Answer */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: white;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 30px 25px 30px;
        }

        .answer-content {
            color: var(--gray);
            font-size: 1.05rem;
            line-height: 1.8;
            padding-left: 45px;
        }

        .answer-content p {
            margin-bottom: 15px;
        }

        .answer-content p:last-child {
            margin-bottom: 0;
        }

        .answer-content ul {
            margin: 15px 0;
            padding-left: 20px;
        }

        .answer-content li {
            margin-bottom: 8px;
        }

        .answer-content strong {
            color: var(--dark);
            font-weight: 600;
        }

        /* No Results */
        .no-results {
            text-align: center;
            padding: 60px 20px;
            display: none;
        }

        .no-results.show {
            display: block;
        }

        .no-results-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .no-results h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .no-results p {
            color: var(--gray);
            font-size: 1.05rem;
        }

        /* Contact Box */
        .contact-box {
            margin-top: 50px;
            padding: 40px;
            background: var(--gradient);
            border-radius: 20px;
            text-align: center;
            color: white;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
        }

        .contact-box h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .contact-box p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            opacity: 0.95;
        }

        .contact-btn {
            display: inline-block;
            background: white;
            color: var(--primary);
            padding: 14px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {

            .section-header h2 {
                font-size: 2.2rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .faq-container {
                padding: 25px 20px;
            }

            .faq-question {
                padding: 20px;
            }

            .question-text {
                font-size: 1rem;
            }

            .question-icon {
                font-size: 1.2rem;
            }

            .toggle-icon {
                width: 30px;
                height: 30px;
                font-size: 1.1rem;
            }

            .faq-item.active .faq-answer {
                padding: 0 20px 20px 20px;
            }

            .answer-content {
                font-size: 1rem;
                padding-left: 0;
            }

            .category-btn {
                font-size: 0.85rem;
                padding: 10px 20px;
            }

            .search-input {
                padding: 15px 50px 15px 20px;
                font-size: 0.95rem;
            }

            .contact-box {
                padding: 30px 20px;
            }

            .contact-box h3 {
                font-size: 1.5rem;
            }

            .contact-box p {
                font-size: 1rem;
            }
        }