Changed around line 1
+ :root {
+ --primary-color: #2d3436;
+ --accent-color: #0984e3;
+ --text-color: #2d3436;
+ --background-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);
+ background-color: var(--background-color);
+ }
+
+ 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 ul {
+ display: flex;
+ justify-content: center;
+ list-style: none;
+ padding: 1rem;
+ }
+
+ nav li {
+ margin: 0 1.5rem;
+ }
+
+ nav a {
+ text-decoration: none;
+ color: var(--text-color);
+ font-weight: 500;
+ transition: var(--transition);
+ }
+
+ nav a:hover {
+ color: var(--accent-color);
+ }
+
+ section {
+ padding: 5rem 2rem;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ }
+
+ .hero {
+ text-align: center;
+ background: linear-gradient(135deg, #f6f6f6 0%, #ffffff 100%);
+ }
+
+ h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .highlight {
+ color: var(--accent-color);
+ }
+
+ .tagline {
+ font-size: 1.5rem;
+ margin-bottom: 2rem;
+ }
+
+ .button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background-color: var(--accent-color);
+ color: white;
+ text-decoration: none;
+ border-radius: 50px;
+ transition: var(--transition);
+ }
+
+ .button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 5px 15px rgba(9, 132, 227, 0.3);
+ }
+
+ .project-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 2rem 0;
+ }
+
+ .project-card {
+ background: white;
+ border-radius: 15px;
+ overflow: hidden;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
+ transition: var(--transition);
+ }
+
+ .project-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
+ }
+
+ .project-image {
+ height: 200px;
+ background-color: #f0f0f0;
+ }
+
+ .project-card h3 {
+ padding: 1rem;
+ margin: 0;
+ }
+
+ .project-card p {
+ padding: 0 1rem 1rem;
+ color: #666;
+ }
+
+ 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 #eee;
+ border-radius: 8px;
+ transition: var(--transition);
+ }
+
+ input:focus,
+ textarea:focus {
+ outline: none;
+ border-color: var(--accent-color);
+ }
+
+ textarea {
+ height: 150px;
+ resize: vertical;
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ background-color: var(--primary-color);
+ color: white;
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ nav ul {
+ flex-direction: column;
+ text-align: center;
+ }
+
+ nav li {
+ margin: 0.5rem 0;
+ }
+
+ section {
+ padding: 3rem 1rem;
+ }
+ }