Changed around line 1
+ :root {
+ --primary: #2563eb;
+ --primary-dark: #1d4ed8;
+ --text: #1e293b;
+ --text-light: #64748b;
+ --background: #f8fafc;
+ --white: #ffffff;
+ --gray: #e2e8f0;
+ --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background-color: var(--background);
+ }
+
+ header {
+ background: linear-gradient(135deg, var(--primary), var(--primary-dark));
+ color: var(--white);
+ padding: 1rem 0;
+ position: fixed;
+ width: 100%;
+ z-index: 100;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 2rem;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--white);
+ text-decoration: none;
+ transition: opacity 0.2s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .cta-button {
+ background-color: var(--white);
+ color: var(--primary);
+ padding: 0.5rem 1rem;
+ border-radius: 0.25rem;
+ font-weight: 600;
+ }
+
+ .hero-content {
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 0 2rem;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ }
+
+ .hero-content p {
+ font-size: 1.5rem;
+ margin-bottom: 2rem;
+ max-width: 600px;
+ }
+
+ .primary-button {
+ background-color: var(--white);
+ color: var(--primary);
+ padding: 0.75rem 1.5rem;
+ border-radius: 0.25rem;
+ font-weight: 600;
+ text-decoration: none;
+ transition: transform 0.2s;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ }
+
+ section {
+ padding: 6rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ h2 {
+ font-size: 2.5rem;
+ margin-bottom: 3rem;
+ text-align: center;
+ position: relative;
+ }
+
+ h2::after {
+ content: '';
+ position: absolute;
+ bottom: -1rem;
+ left: 50%;
+ transform: translateX(-50%);
+ width: 80px;
+ height: 4px;
+ background-color: var(--primary);
+ }
+
+ .about-container {
+ display: flex;
+ gap: 4rem;
+ align-items: center;
+ }
+
+ .about-image {
+ width: 300px;
+ height: 300px;
+ border-radius: 50%;
+ background-color: var(--gray);
+ flex-shrink: 0;
+ }
+
+ .about-text {
+ flex: 1;
+ }
+
+ .skills-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ }
+
+ .skill-card {
+ background-color: var(--white);
+ padding: 2rem;
+ border-radius: 0.5rem;
+ box-shadow: var(--shadow);
+ text-align: center;
+ transition: transform 0.2s;
+ }
+
+ .skill-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .skill-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .project-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ }
+
+ .project-card {
+ background-color: var(--white);
+ border-radius: 0.5rem;
+ overflow: hidden;
+ box-shadow: var(--shadow);
+ transition: transform 0.2s;
+ }
+
+ .project-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .project-image {
+ height: 200px;
+ background-color: var(--gray);
+ }
+
+ .project-card h3 {
+ padding: 1rem 1rem 0;
+ }
+
+ .project-card p {
+ padding: 0 1rem 1rem;
+ color: var(--text-light);
+ }
+
+ .project-link {
+ display: block;
+ padding: 1rem;
+ text-align: center;
+ background-color: var(--primary);
+ color: var(--white);
+ text-decoration: none;
+ font-weight: 600;
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ background-color: var(--white);
+ padding: 2rem;
+ border-radius: 0.5rem;
+ box-shadow: var(--shadow);
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ .form-group label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 600;
+ }
+
+ .form-group input,
+ .form-group textarea {
+ width: 100%;
+ padding: 0.75rem;
+ border: 1px solid var(--gray);
+ border-radius: 0.25rem;
+ font-family: inherit;
+ }
+
+ .form-group textarea {
+ min-height: 150px;
+ }
+
+ .submit-button {
+ background-color: var(--primary);
+ color: var(--white);
+ padding: 0.75rem 1.5rem;
+ border: none;
+ border-radius: 0.25rem;
+ font-weight: 600;
+ cursor: pointer;
+ transition: background-color 0.2s;
+ }
+
+ .submit-button:hover {
+ background-color: var(--primary-dark);
+ }
+
+ footer {
+ background-color: var(--text);
+ color: var(--white);
+ padding: 3rem 2rem;
+ text-align: center;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .social-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 2rem;
+ }
+
+ .social-links a {
+ color: var(--white);
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .about-container {
+ flex-direction: column;
+ }
+
+ .about-image {
+ margin-bottom: 2rem;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ }
+
+ .hero-content p {
+ font-size: 1.25rem;
+ }
+ }
+
+ @media (max-width: 480px) {
+ .nav-links {
+ gap: 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+ }