Changed around line 1
+ :root {
+ --primary-color: #2d3436;
+ --accent-color: #6c5ce7;
+ --text-color: #2d3436;
+ --light-bg: #f5f6fa;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ .hero {
+ min-height: 100vh;
+ background: linear-gradient(135deg, #a8e6cf 0%, #6c5ce7 100%);
+ color: white;
+ position: relative;
+ overflow: hidden;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 2rem 5%;
+ position: fixed;
+ width: 100%;
+ z-index: 100;
+ background: rgba(255, 255, 255, 0.1);
+ backdrop-filter: blur(10px);
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--accent-color);
+ padding: 0.5rem 1.5rem;
+ border-radius: 25px;
+ font-weight: 600;
+ }
+
+ .hero-content {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ }
+
+ .portfolio-grid {
+ padding: 5rem 5%;
+ }
+
+ .grid-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .portfolio-item {
+ position: relative;
+ overflow: hidden;
+ border-radius: 15px;
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ }
+
+ .portfolio-item img {
+ width: 100%;
+ height: 300px;
+ object-fit: cover;
+ transition: var(--transition);
+ }
+
+ .overlay {
+ position: absolute;
+ bottom: -100%;
+ left: 0;
+ width: 100%;
+ padding: 2rem;
+ background: rgba(0,0,0,0.8);
+ color: white;
+ transition: var(--transition);
+ }
+
+ .portfolio-item:hover .overlay {
+ bottom: 0;
+ }
+
+ .portfolio-item:hover img {
+ transform: scale(1.1);
+ }
+
+ .about-section {
+ padding: 5rem 5%;
+ background: var(--light-bg);
+ }
+
+ .about-content {
+ display: flex;
+ gap: 4rem;
+ align-items: center;
+ margin-top: 2rem;
+ }
+
+ .profile-pic {
+ width: 300px;
+ height: 300px;
+ border-radius: 50%;
+ object-fit: cover;
+ }
+
+ .contact-section {
+ padding: 5rem 5%;
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 2rem auto;
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ input, textarea {
+ width: 100%;
+ padding: 0.8rem;
+ border: 1px solid #ddd;
+ border-radius: 8px;
+ font-size: 1rem;
+ }
+
+ .submit-btn {
+ background: var(--accent-color);
+ color: white;
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 25px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .submit-btn:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 5px 15px rgba(108,92,231,0.3);
+ }
+
+ footer {
+ background: var(--primary-color);
+ color: white;
+ padding: 2rem 5%;
+ text-align: center;
+ }
+
+ .social-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .about-content {
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .profile-pic {
+ width: 200px;
+ height: 200px;
+ }
+ }