Changed around line 1
+ :root {
+ --primary-color: #2d3436;
+ --secondary-color: #0984e3;
+ --bg-color: #ffffff;
+ --text-color: #2d3436;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--bg-color);
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 20px;
+ }
+
+ /* Header */
+ .header {
+ position: fixed;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ z-index: 1000;
+ }
+
+ nav ul {
+ display: flex;
+ justify-content: center;
+ list-style: none;
+ padding: 20px 0;
+ }
+
+ nav ul li {
+ margin: 0 20px;
+ }
+
+ nav ul li a {
+ text-decoration: none;
+ color: var(--text-color);
+ font-weight: 500;
+ transition: var(--transition);
+ }
+
+ nav ul li a:hover {
+ color: var(--secondary-color);
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ background: linear-gradient(135deg, #74b9ff, #0984e3);
+ color: white;
+ text-align: center;
+ }
+
+ .hero h1 {
+ font-size: 4rem;
+ margin-bottom: 20px;
+ animation: fadeInUp 1s ease;
+ }
+
+ .hero h2 {
+ font-size: 2rem;
+ font-weight: 300;
+ margin-bottom: 30px;
+ animation: fadeInUp 1s ease 0.2s;
+ animation-fill-mode: both;
+ }
+
+ /* Sections */
+ section {
+ padding: 100px 0;
+ }
+
+ section h2 {
+ text-align: center;
+ margin-bottom: 50px;
+ font-size: 2.5rem;
+ color: var(--primary-color);
+ }
+
+ /* Timeline */
+ .timeline {
+ position: relative;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .timeline-item {
+ display: flex;
+ margin-bottom: 50px;
+ position: relative;
+ }
+
+ .timeline-item::before {
+ content: '';
+ position: absolute;
+ left: 120px;
+ height: 100%;
+ width: 2px;
+ background: var(--secondary-color);
+ }
+
+ .year {
+ width: 120px;
+ font-weight: bold;
+ color: var(--secondary-color);
+ }
+
+ .content {
+ padding-left: 40px;
+ }
+
+ /* Skills */
+ .skills-grid {
+ display: grid;
+ gap: 20px;
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .skill-item {
+ background: #f5f6fa;
+ padding: 20px;
+ border-radius: 10px;
+ }
+
+ .skill-bar {
+ height: 10px;
+ background: #dfe6e9;
+ border-radius: 5px;
+ margin-top: 10px;
+ }
+
+ .skill-level {
+ height: 100%;
+ background: var(--secondary-color);
+ border-radius: 5px;
+ transition: width 1s ease-in-out;
+ }
+
+ /* Contact */
+ .contact-info {
+ display: flex;
+ justify-content: center;
+ gap: 40px;
+ flex-wrap: wrap;
+ }
+
+ .contact-item {
+ display: flex;
+ align-items: center;
+ gap: 10px;
+ }
+
+ /* Animations */
+ @keyframes fadeInUp {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ /* Responsive Design */
+ @media (max-width: 768px) {
+ nav ul {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ nav ul li {
+ margin: 10px 0;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero h2 {
+ font-size: 1.5rem;
+ }
+
+ .timeline-item {
+ flex-direction: column;
+ }
+
+ .timeline-item::before {
+ left: 0;
+ }
+
+ .year {
+ width: auto;
+ margin-bottom: 10px;
+ }
+
+ .content {
+ padding-left: 20px;
+ }
+ }