
        * {
            margin: 0;
             padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #10b981;
            --dark-green: #059669;
            --light-green: #34d399;
            --bg-dark: #0f141d;
            --bg-light: #1f2937;
            --text-light: #f3f4f6;
            --text-gray: #9ca3af;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            background: linear-gradient(45deg, #111827 0%, #1f2937 100%);
            overflow: hidden;
        }

        .bg-animation::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
            opacity: 0.1;
            animation: pulse 15s ease-in-out infinite;
            top: -25%;
            left: -25%;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(180deg); }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 5%;
            background: rgba(17, 24, 39, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 0.75rem 5%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
        }

        .logo {
			display: flex;
			align-items: center;
			max-width: 120px; /* Constrain container */
			padding: 5px 0; /* Reduced padding for consistency */
			box-sizing: border-box;
		}
		
		.logo img {
			width: clamp(80px, 12vw, 110px); /* Smooth scaling for most devices */
			height: auto;
			transition: transform 0.3s ease;
			image-rendering: crisp-edges; /* Optimize for A55’s 390 PPI */
		}
		
		
		
		
        #contact {
            background: rgba(31, 41, 55, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(16, 185, 129, 0.1);
            width: 100%;
            max-width: 600px;
            transform: translateY(20px);
            opacity: 0;
            animation: slideIn 0.8s ease-out forwards;
        }

        @keyframes slideIn {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--text-light);
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            border-radius: 2px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .form-group {
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid rgba(156, 163, 175, 0.8);
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background: rgba(17, 24, 39, 0.9);
            color: var(--text-light);
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-gray);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-green);
            background: var(--bg-dark);
            box-shadow: 
                0 0 0 3px rgba(16, 185, 129, 0.2),
                0 2px 4px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group.error input,
        .form-group.error textarea {
            border-color: #e74c3c;
            background: #fdf2f2;
        }

        .error-message {
            color: #e74c3c;
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }

        .form-group.error .error-message {
            display: block;
        }

        .submit-btn {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .submit-btn .spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 10px;
        }

        .submit-btn.loading .spinner {
            display: inline-block;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
		
		.navbar {
			display: flex;
			justify-content: space-between;
			align-items: center;
			background: var(--bg-dark);
			padding: 1rem 5%;
			color: var(--text-light);
			position: relative;
		}
		
		.nav-links li a {
			color: var(--text-light);
			text-decoration: none;
			font-weight: 500;
		}

		.nav-links li a:hover {
			color: var(--accent);
		}	

        .status-message {
            padding: 20px;
            border-radius: 12px;
            margin: 25px auto 0;
            font-weight: 500;
            display: none;
            text-align: center;
            max-width: 100%;
            font-size: 1rem;
            line-height: 1.5;
        }

        .status-message.success {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.2));
            color: var(--light-green);
            border: 2px solid var(--primary-green);
            box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
        }

        .status-message.error {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
            color: #fca5a5;
            border: 2px solid #ef4444;
            box-shadow: 0 5px 15px rgba(239, 68, 68, 0.2);
        }

        .status-message.show {
            display: block;
            animation: slideInUp 0.5s ease;
        }

        @keyframes slideInUp {
            from { 
                opacity: 0; 
                transform: translateY(20px) scale(0.95); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0) scale(1); 
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 480px) {
            #contact {
                padding: 25px;
                margin: 10px;
            }

            .section-title {
                font-size: 2rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 12px 15px;
            }

            .submit-btn {
                padding: 14px 25px;
            }
        }

        /* Loading overlay */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .loading-overlay.show {
            display: flex;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
		
		.logo img[alt]:not([src])::before {
			content: attr(alt);
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			display: flex;
			align-items: center;
			justify-content: center;
			background: var(--bg-dark); /* #0f141d */
			color: var(--primary-green); /* #10b981 */
			font-size: 0.85rem;
			font-weight: 600;
			text-align: center;
		}
		
		.logo img:hover {
			transform: scale(1.05);
		}

		/* Tap effect for touch devices (A55) */
		@media (hover: none) {
			.logo img:active {
			transform: scale(1.05);
			filter: brightness(1.1); /* Subtle tap effect */
			}
		}

		/* High DPI displays (A55 and S9) */
		@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
		.logo img {
			image-rendering: -webkit-optimize-contrast;
			image-rendering: crisp-edges;
			}
		}
		
        .logo:hover {
            transform: scale(1.05);
        }
		
		.mobile-menu {
			display: none;
			flex-direction: column;
			gap: 2px;
			cursor: pointer;
		}

        .mobile-menu span {
			width: 25px;
			height: 3px;
			background: var(--text-light);
			transition: all 0.3s ease;
			justify-content: center;
		}

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-green);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }
    
        .about-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
            align-items: start;
            margin-top: 2rem;
        }

        .about-text {
            max-width: none;
        }

        .about-intro h3 {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 0.5rem;
        }

        .intro-subtitle {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .about-story p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .personal-approach {
            margin-top: 3rem;
        }

        .personal-approach h4 {
            font-size: 1.5rem;
            color: var(--primary-green);
            margin-bottom: 1.5rem;
        }

        .approach-points {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .approach-point {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .approach-icon {
            font-size: 1.5rem;
            min-width: 40px;
            height: 40px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 0.2rem;
        }

        .approach-point strong {
            color: var(--primary-green);
            display: block;
            margin-bottom: 0.5rem;
        }

        .approach-point p {
            color: var(--text-gray);
            line-height: 1.6;
            margin: 0;
        }

        /* Process Section */
        .process-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .process-intro {
            text-align: center;
            margin-bottom: 4rem;
        }

        .process-intro p {
            font-size: 1.2rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .process-step {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 2rem;
            align-items: start;
            position: relative;
        }

        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 39px;
            top: 80px;
            bottom: -48px;
            width: 2px;
            background: linear-gradient(to bottom, var(--primary-green), transparent);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
            position: relative;
            z-index: 1;
        }

        .step-content {
            background: var(--bg-light);
            padding: 2rem;
            border-radius: 10px;
            position: relative;
        }

        .step-content::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 30px;
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-right: 10px solid var(--bg-light);
        }

        .step-content h3 {
            color: var(--primary-green);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .step-content > p {
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .step-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .step-features li {
            color: var(--text-gray);
            padding: 0.3rem 0;
            padding-left: 1.5rem;
            position: relative;
            font-size: 0.9rem;
        }

        .step-features li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-green);
        }

        .step-duration {
            display: inline-block;
            background: rgba(16, 185, 129, 0.1);
            color: var(--primary-green);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .process-communication {
            background: var(--bg-light);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
        }

        .process-communication h3 {
            color: var(--primary-green);
            margin-bottom: 2rem;
        }

        .communication-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .comm-point {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            text-align: left;
        }

        .comm-icon {
            font-size: 1.5rem;
            min-width: 40px;
        }

        .comm-point p {
            color: var(--text-gray);
            margin: 0;
            line-height: 1.6;
        }

        .comm-point strong {
            color: var(--primary-green);
        }

        /* Pricing Section */
        .pricing-intro {
            text-align: center;
            margin-bottom: 3rem;
        }

        .pricing-intro p {
            font-size: 1.2rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .pricing-card {
            background: var(--bg-light);
            border-radius: 15px;
            padding: 2rem;
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-green);
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
        }

        .pricing-card.featured {
            border-color: var(--primary-green);
            transform: scale(1.05);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .popular-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(156, 163, 175, 0.2);
        }

        .pricing-header h3 {
            font-size: 1.8rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }

        .price {
            font-size: 3rem;
            font-weight: bold;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }

        .price-subtitle {
            color: var(--text-gray);
            font-size: 1rem;
        }

        .pricing-features ul {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            padding: 0.7rem 0;
            color: var(--text-gray);
            border-bottom: 1px solid rgba(156, 163, 175, 0.1);
            transition: color 0.3s ease;
        }

        .pricing-features li:hover {
            color: var(--text-light);
        }

        .pricing-timeline {
            text-align: center;
            margin-bottom: 2rem;
            padding: 1rem;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 8px;
            color: var(--primary-green);
        }

        .pricing-btn {
            display: block;
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: white;
            text-decoration: none;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .pricing-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        }

        .pricing-addons {
            margin-bottom: 4rem;
        }

        .pricing-addons h3 {
            text-align: center;
            color: var(--primary-green);
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        .addons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
		
		.addons-grid1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
        }

        .addon-item {
            background: var(--bg-light);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }
		
		.addon-item1 {
            background: var(--bg-light);
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .addon-item:hover {
            transform: translateY(-5px);
            background: rgba(16, 185, 129, 0.1);
        }

        .addon-item h4 {
            color: var(--primary-green);
            margin-bottom: 0.5rem;
        }

        .addon-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }

        .addon-item p {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin: 0;
        }

        .pricing-guarantee {
            background: linear-gradient(135deg, var(--bg-light), var(--bg-dark));
            padding: 3rem;
            border-radius: 15px;
            text-align: center;
        }

        .guarantee-content h3 {
            color: var(--primary-green);
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .guarantee-points {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .guarantee-point {
            background: rgba(16, 185, 129, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary-green);
        }

        .guarantee-point strong {
            color: var(--primary-green);
        }

        

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 5%;
            position: relative;
        }

        .hero-content {
            max-width: 90%; 
            padding: 0 5%;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            color: var(--text-gray);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.4s both;
            position: relative;
            overflow: hidden;
        }
		
		.cta-button1 {
            display: inline-block;
            padding: 1rem 4.5rem;
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.4s both;
            overflow: hidden;
			align-items: center;
            justify-content: center;
			text-align: center;
			display: grid;
			place-items: center;
			gap: 1rem;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Sections */
        section {
            padding: 5rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: var(--bg-light);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(16, 185, 129, 0.1));
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .service-card:hover::before {
            transform: translateX(0);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .service-icon img {
            width: 50px;
            height: 50px;
            filter: brightness(0) saturate(100%) invert(68%) sepia(43%) saturate(1283%) hue-rotate(109deg) brightness(96%) contrast(96%);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: rotateY(360deg);
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
        }

        .service-card:hover .service-icon img {
            filter: brightness(0) saturate(100%) invert(100%);
        }

        .service-card h3 {
            margin-bottom: 1rem;
            color: var(--primary-green);
        }

        .service-features {
            list-style: none;
            margin-top: 1rem;
            text-align: left;
        }
		
		.service-features1 {
			list-style: none;
			margin-top: 1rem;
			display: grid;
			place-items: center;
			gap: 1rem;
		}

        .service-features li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-green);
            font-weight: bold;
        }

        /* Why Choose Us Section */
        .why-us {
            background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-dark) 100%);
            padding: 5rem 5%;
            margin: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .why-us::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .why-us-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-gray);
            font-size: 1.1rem;
        }

        .developer-showcase {
            margin-top: 5rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .developer-info h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--primary-green);
        }

        .developer-info p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .skills-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        .skill-tag {
            padding: 0.5rem 1rem;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid var(--primary-green);
            border-radius: 25px;
            font-size: 0.9rem;
            color: var(--primary-green);
            transition: all 0.3s ease;
        }

        .skill-tag:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-2px);
        }

        .developer-visual {
            position: relative;
        }

        .code-window {
            background: var(--bg-dark);
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            font-family: 'Courier New', monospace;
            position: relative;
            overflow: hidden;
        }

        .code-window::before {
            content: '● ● ●';
            position: absolute;
            top: 15px;
            left: 20px;
            color: #ff5f57;
            font-size: 12px;
            letter-spacing: 5px;
        }

        .code-content {
            margin-top: 1.5rem;
            color: var(--primary-green);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .code-content .comment {
            color: var(--text-gray);
        }

        .code-content .keyword {
            color: #ff79c6;
        }

        .code-content .string {
            color: #f1fa8c;
        }

        /* Portfolio */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .portfolio-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 300px;
            cursor: pointer;
            transition: transform 0.3s ease;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .portfolio-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
            transition: opacity 0.3s ease;
        }

        .portfolio-item:hover {
            transform: scale(1.05);
        }

        .portfolio-item:hover::before {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            z-index: 1;
        }

        .portfolio-overlay h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .portfolio-overlay p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
            transform: translateY(20px);
            transition: transform 0.3s ease 0.1s;
        }

        .portfolio-item:hover .portfolio-overlay h3,
        .portfolio-item:hover .portfolio-overlay p {
            transform: translateY(0);
        }

        .portfolio-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 600;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease 0.2s;
        }

        .portfolio-item:hover .portfolio-link {
            transform: translateY(0);
            opacity: 1;
        }

        .portfolio-link:hover {
            color: var(--light-green);
            gap: 1rem;
        }

        /* Portfolio item backgrounds */
        .portfolio-item:nth-child(1) {
            background-image: linear-gradient(135deg, #ff6b6b, #feca57);
        }

        .portfolio-item:nth-child(2) {
            background-image: linear-gradient(135deg, #48dbfb, #0abde3);
        }

        .portfolio-item:nth-child(3) {
            background-image: linear-gradient(135deg, #ff9ff3, #ee5a6f);
        }

        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-gray);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: var(--bg-light);
            border: 1px solid transparent;
            border-radius: 5px;
            color: var(--text-light);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 3rem 5%;
            background: var(--bg-light);
            margin-top: 5rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .social-links a {
            color: var(--text-gray);
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--primary-green);
        }

        /* Mobile Responsive - All Phone Sizes */

/* Small phones (320px - 400px) */
@media (max-width: 400px) {
    .mobile-menu {
        display: flex;
        z-index: 1001; /* Keep it above the menu */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--bg-dark);
        position: absolute;
        top: 100%; /* Below the navbar */
        right: 5%;
        padding: 1rem;
        border-radius: 8px;
        width: 200px;
        gap: 1rem;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }
	
	.logo img {
        max-width: 100px; /* Balanced size for small phones */
        width: 100%;
        height: auto;
    }
	
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .services-grid,
    .portfolio-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-content,
    .developer-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-intro h3 {
        font-size: 1.8rem;
    }
    
    .process-step {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-content {
        padding: 1.2rem;
    }
    
    .step-content::before {
        left: -6px;
        border-right-width: 6px;
    }
    
    .process-step:not(:last-child)::after {
        left: 19px;
    }
    
    .communication-points {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .guarantee-points {
        text-align: left;
    }
    
    .code-window {
        font-size: 0.7rem;
        padding: 1rem;
    }
    
    section {
        padding: 2rem 4%;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .approach-points {
        gap: 1.5rem;
    }
    
    .approach-point {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .portfolio-overlay {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 0 1rem;
    }
}

/* Medium phones (400px - 480px) */
	@media (min-width: 401px) and (max-width: 480px) {
		.logo {
		display: flex;
		align-items: center;
		max-width: 120px; /* Constrain container */
		padding: 5px 0; /* Reduced padding for consistency */
		box-sizing: border-box; /* Normalize box model */
	}

	.logo img {
		width: clamp(80px, 12vw, 110px); /* Smooth scaling */
		height: auto;
		transition: transform 0.3s ease; /* Specific transition */
		image-rendering: crisp-edges; /* Sharp on A55’s 390 PPI */
	}
	
	.mobile-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--bg-dark);
        position: absolute;
        top: 60px;
        right: 5%;
        padding: 1rem;
        border-radius: 8px;
        width: 200px;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }
	
	/* Hover effect */
	.logo img:hover {
		transform: scale(1.05);
	}

	/* Tap effect for touch devices (A55) */
	@media (hover: none) {
		.logo img:active {
			transform: scale(1.05);
			filter: brightness(1.1);
		}
	}

/* High DPI displays (A55 and S9) */
	@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
		.logo img {
			image-rendering: -webkit-optimize-contrast;
			image-rendering: crisp-edges;
		}
	}

/* Fallback for broken image */
	.logo img[alt]:not([src])::before {
		content: attr(alt);
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		background: var(--bg-dark); /* #0f141d */
		color: var(--primary-green); /* #10b981 */
		font-size: 0.85rem;
		font-weight: 600;
		text-align: center;
}

/* Medium phones (481px - 640px) */
@media (min-width: 481px) and (max-width: 640px) {
    .mobile-menu {
        display: flex;
        z-index: 1001; /* Keep it above the menu */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--bg-dark);
        position: absolute;
        top: 100%; /* Below the navbar */
        right: 5%;
        padding: 1rem;
        border-radius: 8px;
        width: 200px;
        gap: 1rem;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }
    
    .nav-container {
        padding: 8px 15px;
    }
    
    .logo {
        max-width: 110px;
        padding: 5px 0;
    }
    
    .logo img {
        width: clamp(80px, 10vw, 100px);
        height: auto;
        transition: transform 0.3s ease;
        image-rendering: crisp-edges;
    }
    
    /* Rest of your existing styles */
    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--bg-dark);
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content,
    .developer-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    section {
        padding: 2.5rem 4%;
    }
}


/* Medium phones (481px - 640px) */
@media (min-width: 481px) and (max-width: 640px) {
    
    .mobile-menu {
        display: flex;
        z-index: 1001; /* Keep it above the menu */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--bg-dark);
        position: absolute;
        top: 100%; /* Below the navbar */
        right: 5%;
        padding: 1rem;
        border-radius: 8px;
        width: 200px;
        gap: 1rem;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }
    
    .nav-container {
        padding: 8px 15px;
    }
    
    .logo {
        max-width: 110px;
        padding: 5px 0;
    }
    
    .logo img {
        width: clamp(80px, 10vw, 100px);
        height: auto;
        transition: transform 0.3s ease;
        image-rendering: crisp-edges;
    }
    
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content,
    .developer-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    section {
        padding: 2.5rem 4%;
    }
	

}

/* Large phones/Small tablets (641px - 768px) */
@media (min-width: 641px) and (max-width: 768px) {
    
	
	.mobile-menu {
        display: flex;
        z-index: 1001; /* Keep it above the menu */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--bg-dark);
        position: absolute;
        top: 100%; /* Below the navbar */
        right: 5%;
        padding: 1rem;
        border-radius: 8px;
        width: 200px;
        gap: 1rem;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }
    
    .logo {
        display: flex;
        align-items: center;
        max-width: 100%;
    }

    .logo img {
        width: clamp(90px, 12vw, 110px);
        height: auto;
        transition: transform 0.3s ease;
        image-rendering: crisp-edges;
    }

    .logo img:hover {
        transform: scale(1.05);
    }

    @media (hover: none) {
        .logo img:active {
            transform: scale(1.05);
            filter: brightness(1.1);
        }
    }

    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .logo img {
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }
    }

    .logo img[alt]:not([src])::before {
        content: attr(alt);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-dark);
        color: var(--primary-green);
        font-size: 0.9rem;
        font-weight: 600;
        text-align: center;
    }
    
    /* Rest of your existing styles for this breakpoint */
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content,
    .developer-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .addons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .code-window {
        font-size: 0.8rem;
    }
    
    section {
        padding: 3rem 5%;
    }
}

/* Landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 70vh;
        padding: 2rem 5%;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
	
	.logo img {
        max-width: 110px; /* Slightly smaller for landscape to fit nav */
        width: 100%;
        height: auto;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    section {
        padding: 2rem 5%;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(17, 24, 39, 0.95);
        position: absolute;
        top: 60px; /* below navbar */
        right: 5%;
        padding: 1rem;
        border-radius: 8px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
}
@media (max-width: 768px) {
    .personal-approach {
        margin-top: 2rem;
    }
    
    .approach-points {
        gap: 2rem;
    }
    
	
    .approach-point {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
        background: rgba(16, 185, 129, 0.05);
        border-radius: 15px;
        border: 1px solid rgba(16, 185, 129, 0.1);
    }
    
    .approach-icon {
        font-size: 2rem;
        min-width: 60px;
        height: 60px;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        border: 2px solid rgba(16, 185, 129, 0.3);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
    }
    
    .approach-point div {
        width: 100%;
        max-width: 280px;
    }
    
    .approach-point strong {
        color: var(--primary-green);
        display: block;
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .approach-point p {
        color: var(--text-gray);
        line-height: 1.6;
        margin: 0;
        font-size: 0.95rem;
    }
}

/* Extra small phones */
@media (max-width: 399px) {
    .approach-point {
        padding: 1.2rem;
        margin: 0 0.5rem;
    }
    
    .approach-icon {
        font-size: 1.8rem;
        min-width: 55px;
        height: 55px;
    }
    
    .approach-point strong {
        font-size: 1rem;
    }
    
    .approach-point p {
        font-size: 0.9rem;
    }
	
	.logo img {
        width: clamp(70px, 10vw, 100px); /* Adjusted for smaller screens */
    }
	
	.mobile-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--bg-dark);
        position: absolute;
        top: 60px;
        right: 5%;
        padding: 1rem;
        border-radius: 8px;
        width: 200px;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }
}

/* Very small phones (max-width: 320px) */
@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .service-card,
    .pricing-card {
        padding: 1rem;
    }
    
    .step-content {
        padding: 1rem;
    }
    
    .code-window {
        font-size: 0.6rem;
        padding: 0.8rem;
    }
    
    section {
        padding: 1.5rem 3%;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
	
	.logo img {
        width: clamp(70px, 10vw, 100px); /* Adjusted for smaller screens */
    }
	
	.nav-links {
        display: none;
        flex-direction: column;
        background: rgba(17, 24, 39, 0.95);
        position: absolute;
        top: 60px; /* below navbar */
        right: 5%;
        padding: 1rem;
        border-radius: 8px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
}

/* High DPI/Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero h1,
    .section-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

        /* Scroll Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
		.logo img {
        image-rendering: -webkit-optimize-contrast; /* Improves sharpness */
        image-rendering: crisp-edges;
    }
}