Changed around line 1
+ :root {
+ --primary-color: #2a6df4;
+ --secondary-color: #1d4ed8;
+ --text-color: #333;
+ --light-bg: #f8fafc;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ /* Header & Navigation */
+ header {
+ position: fixed;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem;
+ 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;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ font-weight: 500;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .menu-toggle {
+ display: none;
+ }
+
+ /* Hero Section */
+ .hero {
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ background: linear-gradient(135deg, #f6f8ff 0%, #ffffff 100%);
+ padding: 2rem;
+ }
+
+ .hero-content {
+ text-align: center;
+ max-width: 800px;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ color: transparent;
+ }
+
+ .cta-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: var(--primary-color);
+ color: white;
+ text-decoration: none;
+ border-radius: 30px;
+ transition: var(--transition);
+ margin-top: 2rem;
+ }
+
+ .cta-button:hover {
+ background: var(--secondary-color);
+ transform: translateY(-2px);
+ }
+
+ /* About Section */
+ .about {
+ padding: 6rem 2rem;
+ background: var(--light-bg);
+ }
+
+ .about h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ }
+
+ .about-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .about-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ transition: var(--transition);
+ }
+
+ .about-card:hover {
+ transform: translateY(-5px);
+ }
+
+ /* Work Section */
+ .work {
+ padding: 6rem 2rem;
+ }
+
+ .work h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ }
+
+ .work-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .work-item {
+ background: white;
+ border-radius: 10px;
+ overflow: hidden;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ transition: var(--transition);
+ }
+
+ .work-image {
+ height: 200px;
+ background: var(--primary-color);
+ opacity: 0.9;
+ }
+
+ .work-item h3,
+ .work-item p {
+ padding: 1rem;
+ }
+
+ /* Contact Section */
+ .contact {
+ padding: 6rem 2rem;
+ background: var(--light-bg);
+ }
+
+ .contact h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ }
+
+ #contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ label {
+ display: block;
+ margin-bottom: 0.5rem;
+ }
+
+ input,
+ textarea {
+ width: 100%;
+ padding: 0.8rem;
+ border: 2px solid #ddd;
+ border-radius: 5px;
+ transition: var(--transition);
+ }
+
+ input:focus,
+ textarea:focus {
+ border-color: var(--primary-color);
+ outline: none;
+ }
+
+ textarea {
+ height: 150px;
+ resize: vertical;
+ }
+
+ .submit-button {
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 30px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .submit-button:hover {
+ background: var(--secondary-color);
+ }
+
+ /* Footer */
+ footer {
+ background: #333;
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .social-links {
+ margin-bottom: 1rem;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ margin: 0 1rem;
+ transition: var(--transition);
+ }
+
+ .social-links a:hover {
+ color: var(--primary-color);
+ }
+
+ /* Mobile Responsive */
+ @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 {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: white;
+ flex-direction: column;
+ padding: 1rem;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+ }