Changed around line 1
+ :root {
+ --primary-color: #2d3436;
+ --accent-color: #0984e3;
+ --text-color: #2d3436;
+ --light-bg: #f5f6fa;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 20px;
+ }
+
+ /* Header */
+ .header {
+ position: fixed;
+ top: 0;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ box-shadow: 0 2px 20px rgba(0,0,0,0.1);
+ }
+
+ 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(--accent-color);
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ background: linear-gradient(135deg, #fff 0%, var(--light-bg) 100%);
+ text-align: center;
+ }
+
+ .hero h1 {
+ font-size: 4rem;
+ margin-bottom: 20px;
+ opacity: 0;
+ transform: translateY(20px);
+ animation: fadeInUp 0.8s forwards;
+ }
+
+ .hero h2 {
+ font-size: 2rem;
+ color: var(--accent-color);
+ margin-bottom: 20px;
+ }
+
+ .subtitle {
+ font-size: 1.2rem;
+ color: #666;
+ }
+
+ /* Sections */
+ section {
+ padding: 100px 0;
+ }
+
+ section h2 {
+ text-align: center;
+ margin-bottom: 50px;
+ font-size: 2.5rem;
+ }
+
+ /* Timeline */
+ .timeline {
+ position: relative;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .timeline::before {
+ content: '';
+ position: absolute;
+ left: 50%;
+ transform: translateX(-50%);
+ width: 2px;
+ height: 100%;
+ background: var(--accent-color);
+ }
+
+ .timeline-item {
+ display: flex;
+ justify-content: space-between;
+ margin-bottom: 50px;
+ }
+
+ .timeline-item:nth-child(odd) .content {
+ margin-left: auto;
+ }
+
+ .year {
+ min-width: 150px;
+ padding: 10px;
+ background: var(--accent-color);
+ color: white;
+ border-radius: 5px;
+ text-align: center;
+ }
+
+ .content {
+ width: 45%;
+ padding: 20px;
+ background: white;
+ border-radius: 5px;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ }
+
+ /* Skills */
+ .skill-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
+ gap: 20px;
+ margin-top: 40px;
+ }
+
+ .skill-item {
+ background: white;
+ padding: 20px;
+ border-radius: 5px;
+ text-align: center;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ transition: var(--transition);
+ }
+
+ .skill-item:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 8px 25px rgba(0,0,0,0.2);
+ }
+
+ /* Contact Form */
+ .form-group {
+ margin-bottom: 20px;
+ }
+
+ input, textarea {
+ width: 100%;
+ padding: 15px;
+ border: 2px solid #eee;
+ border-radius: 5px;
+ font-size: 1rem;
+ transition: var(--transition);
+ }
+
+ input:focus, textarea:focus {
+ outline: none;
+ border-color: var(--accent-color);
+ }
+
+ textarea {
+ height: 150px;
+ resize: vertical;
+ }
+
+ button {
+ background: var(--accent-color);
+ color: white;
+ padding: 15px 30px;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ font-size: 1rem;
+ transition: var(--transition);
+ }
+
+ button:hover {
+ background: #0773c5;
+ transform: translateY(-2px);
+ }
+
+ /* Animations */
+ @keyframes fadeInUp {
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ /* Mobile Responsive */
+ @media (max-width: 768px) {
+ nav ul {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ nav ul li {
+ margin: 10px 0;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .timeline::before {
+ left: 0;
+ }
+
+ .timeline-item {
+ flex-direction: column;
+ }
+
+ .year, .content {
+ width: 100%;
+ margin: 10px 0;
+ }
+
+ .skill-grid {
+ grid-template-columns: repeat(2, 1fr);
+ }
+ }