Changed around line 1
+ :root {
+ --primary: #6C63FF;
+ --secondary: #2A2A2A;
+ --accent: #FF6B6B;
+ --background: #FFFFFF;
+ --text: #333333;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--background);
+ }
+
+ /* Navigation */
+ header {
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ color: var(--primary);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .menu-toggle {
+ display: none;
+ }
+
+ /* Hero Section */
+ .hero {
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero-content {
+ text-align: center;
+ z-index: 1;
+ }
+
+ .hero h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--primary), var(--accent));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .hero-shapes .shape {
+ position: absolute;
+ border-radius: 50%;
+ filter: blur(40px);
+ }
+
+ .shape-1 {
+ width: 300px;
+ height: 300px;
+ background: var(--primary);
+ top: 20%;
+ left: 20%;
+ opacity: 0.1;
+ animation: float 6s ease-in-out infinite;
+ }
+
+ .shape-2 {
+ width: 200px;
+ height: 200px;
+ background: var(--accent);
+ bottom: 20%;
+ right: 20%;
+ opacity: 0.1;
+ animation: float 8s ease-in-out infinite reverse;
+ }
+
+ .shape-3 {
+ width: 150px;
+ height: 150px;
+ background: var(--secondary);
+ top: 50%;
+ left: 50%;
+ opacity: 0.1;
+ animation: float 7s ease-in-out infinite;
+ }
+
+ @keyframes float {
+ 0% { transform: translate(0, 0) rotate(0deg); }
+ 50% { transform: translate(20px, 20px) rotate(180deg); }
+ 100% { transform: translate(0, 0) rotate(360deg); }
+ }
+
+ .cta-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: var(--primary);
+ color: white;
+ text-decoration: none;
+ border-radius: 30px;
+ font-weight: 600;
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
+ }
+
+ /* Services Section */
+ .services {
+ padding: 5rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .services-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .service-card {
+ padding: 2rem;
+ background: white;
+ border-radius: 20px;
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .service-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .service-icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ /* Work Section */
+ .work {
+ padding: 5rem 5%;
+ background: #f8f9fa;
+ }
+
+ .work-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .work-item {
+ background: white;
+ border-radius: 20px;
+ overflow: hidden;
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
+ }
+
+ .work-image {
+ height: 200px;
+ background: var(--primary);
+ opacity: 0.1;
+ }
+
+ /* Contact Section */
+ .contact {
+ padding: 5rem 5%;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ form {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ margin-top: 2rem;
+ }
+
+ input, textarea {
+ padding: 1rem;
+ border: 2px solid #eee;
+ border-radius: 10px;
+ font-family: inherit;
+ }
+
+ textarea {
+ min-height: 150px;
+ }
+
+ button[type="submit"] {
+ padding: 1rem;
+ background: var(--primary);
+ color: white;
+ border: none;
+ border-radius: 10px;
+ cursor: pointer;
+ font-weight: 600;
+ transition: background 0.3s ease;
+ }
+
+ button[type="submit"]:hover {
+ background: var(--accent);
+ }
+
+ /* Footer */
+ footer {
+ background: var(--secondary);
+ color: white;
+ padding: 2rem 5%;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .social-links {
+ display: flex;
+ gap: 1rem;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .social-links a:hover {
+ color: var(--primary);
+ }
+
+ /* Mobile Responsiveness */
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: flex;
+ flex-direction: column;
+ gap: 4px;
+ cursor: pointer;
+ }
+
+ .menu-toggle span {
+ width: 25px;
+ height: 3px;
+ background: var(--text);
+ transition: 0.3s ease;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ background: white;
+ padding: 1rem;
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+ }