Changed around line 1
+ :root {
+ --primary-color: #2d3436;
+ --accent-color: #6c5ce7;
+ --text-color: #2d3436;
+ --light-color: #ffffff;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ .header {
+ position: fixed;
+ width: 100%;
+ padding: 1rem;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ color: var(--primary-color);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--accent-color);
+ }
+
+ .menu-toggle {
+ display: none;
+ }
+
+ .hero {
+ 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: 3.5rem;
+ margin-bottom: 1rem;
+ animation: fadeInUp 1s ease;
+ }
+
+ .hero p {
+ font-size: 1.2rem;
+ margin-bottom: 2rem;
+ animation: fadeInUp 1s ease 0.2s;
+ }
+
+ .hero-shape {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ background: linear-gradient(45deg, var(--accent-color), #a29bfe);
+ clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
+ z-index: -1;
+ }
+
+ .cta-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: var(--accent-color);
+ color: var(--light-color);
+ text-decoration: none;
+ border-radius: 30px;
+ transition: var(--transition);
+ animation: fadeInUp 1s ease 0.4s;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-3px);
+ box-shadow: 0 10px 20px rgba(108, 92, 231, 0.2);
+ }
+
+ .services {
+ padding: 5rem 2rem;
+ background: #f5f6fa;
+ }
+
+ .services h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ }
+
+ .services-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .service-card {
+ background: var(--light-color);
+ padding: 2rem;
+ border-radius: 10px;
+ text-align: center;
+ transition: var(--transition);
+ }
+
+ .service-card:hover {
+ transform: translateY(-10px);
+ box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
+ }
+
+ .icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .portfolio {
+ padding: 5rem 2rem;
+ }
+
+ .portfolio h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ }
+
+ .portfolio-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .portfolio-item {
+ position: relative;
+ height: 300px;
+ border-radius: 10px;
+ overflow: hidden;
+ background: var(--accent-color);
+ }
+
+ .portfolio-content {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ padding: 2rem;
+ background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
+ color: var(--light-color);
+ transform: translateY(100%);
+ transition: var(--transition);
+ }
+
+ .portfolio-item:hover .portfolio-content {
+ transform: translateY(0);
+ }
+
+ .contact {
+ padding: 5rem 2rem;
+ background: #f5f6fa;
+ }
+
+ .contact h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ }
+
+ #contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .form-group {
+ position: relative;
+ margin-bottom: 2rem;
+ }
+
+ .form-group input,
+ .form-group textarea {
+ width: 100%;
+ padding: 1rem;
+ border: 2px solid #ddd;
+ border-radius: 5px;
+ background: transparent;
+ transition: var(--transition);
+ }
+
+ .form-group label {
+ position: absolute;
+ left: 1rem;
+ top: 1rem;
+ transition: var(--transition);
+ pointer-events: none;
+ }
+
+ .form-group input:focus,
+ .form-group textarea:focus {
+ border-color: var(--accent-color);
+ outline: none;
+ }
+
+ .form-group input:focus + label,
+ .form-group textarea:focus + label,
+ .form-group input:valid + label,
+ .form-group textarea:valid + label {
+ transform: translateY(-1.5rem);
+ font-size: 0.8rem;
+ color: var(--accent-color);
+ }
+
+ .submit-button {
+ display: block;
+ width: 100%;
+ padding: 1rem;
+ background: var(--accent-color);
+ color: var(--light-color);
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .submit-button:hover {
+ background: #5849c4;
+ }
+
+ footer {
+ background: var(--primary-color);
+ color: var(--light-color);
+ padding: 3rem 2rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ flex-wrap: wrap;
+ gap: 2rem;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 1rem;
+ }
+
+ .footer-links a {
+ color: var(--light-color);
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .footer-links a:hover {
+ color: var(--accent-color);
+ }
+
+ @keyframes fadeInUp {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: block;
+ background: none;
+ border: none;
+ cursor: pointer;
+ padding: 0.5rem;
+ }
+
+ .menu-toggle span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: var(--text-color);
+ margin: 5px 0;
+ transition: var(--transition);
+ }
+
+ .nav-links {
+ position: fixed;
+ top: 70px;
+ left: 0;
+ right: 0;
+ background: rgba(255, 255, 255, 0.95);
+ flex-direction: column;
+ align-items: center;
+ padding: 2rem;
+ clip-path: circle(0% at top right);
+ transition: var(--transition);
+ }
+
+ .nav-links.active {
+ clip-path: circle(150% at top right);
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+ }