Changed around line 1
+ :root {
+ --primary: #3a86ff;
+ --primary-dark: #2667cc;
+ --secondary: #8338ec;
+ --dark: #212529;
+ --light: #f8f9fa;
+ --gray: #6c757d;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ background-color: var(--light);
+ overflow-x: hidden;
+ }
+
+ a {
+ text-decoration: none;
+ color: inherit;
+ transition: var(--transition);
+ }
+
+ img {
+ max-width: 100%;
+ height: auto;
+ display: block;
+ }
+
+ .container {
+ width: 100%;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1.5rem;
+ }
+
+ /* Header & Navigation */
+ header {
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ position: relative;
+ overflow: hidden;
+ }
+
+ header::before {
+ content: '';
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ z-index: -1;
+ clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 2rem 0;
+ }
+
+ .logo {
+ font-size: 1.75rem;
+ font-weight: 700;
+ color: white;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: rgba(255, 255, 255, 0.9);
+ font-weight: 500;
+ }
+
+ .nav-links a:hover {
+ color: white;
+ }
+
+ .hero-content {
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ padding: 4rem 0;
+ color: white;
+ max-width: 600px;
+ }
+
+ .hero-content h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ line-height: 1.2;
+ }
+
+ .hero-content p {
+ font-size: 1.25rem;
+ margin-bottom: 2rem;
+ opacity: 0.9;
+ }
+
+ /* Buttons */
+ .primary-button {
+ display: inline-block;
+ padding: 0.75rem 1.75rem;
+ background-color: white;
+ color: var(--primary);
+ border-radius: 50px;
+ font-weight: 600;
+ transition: var(--transition);
+ align-self: flex-start;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-3px);
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
+ }
+
+ /* Sections */
+ section {
+ padding: 6rem 0;
+ }
+
+ h2 {
+ font-size: 2.5rem;
+ margin-bottom: 3rem;
+ text-align: center;
+ position: relative;
+ }
+
+ h2::after {
+ content: '';
+ display: block;
+ width: 80px;
+ height: 4px;
+ background: linear-gradient(to right, var(--primary), var(--secondary));
+ margin: 1rem auto 0;
+ border-radius: 2px;
+ }
+
+ /* Portfolio */
+ .portfolio-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
+ gap: 2rem;
+ }
+
+ .portfolio-item {
+ background: white;
+ border-radius: 8px;
+ overflow: hidden;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
+ transition: var(--transition);
+ }
+
+ .portfolio-item:hover {
+ transform: translateY(-10px);
+ box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
+ }
+
+ .portfolio-image {
+ height: 250px;
+ overflow: hidden;
+ }
+
+ .portfolio-image img {
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+ transition: transform 0.5s ease;
+ }
+
+ .portfolio-item:hover .portfolio-image img {
+ transform: scale(1.05);
+ }
+
+ .portfolio-item h3 {
+ padding: 1.5rem 1.5rem 0.5rem;
+ font-size: 1.25rem;
+ }
+
+ .portfolio-item p {
+ padding: 0 1.5rem 1.5rem;
+ color: var(--gray);
+ }
+
+ /* About */
+ .about-content {
+ display: flex;
+ align-items: center;
+ gap: 4rem;
+ }
+
+ .about-image {
+ flex: 1;
+ border-radius: 8px;
+ overflow: hidden;
+ box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
+ }
+
+ .about-image img {
+ width: 100%;
+ height: auto;
+ }
+
+ .about-text {
+ flex: 1;
+ }
+
+ .about-text p {
+ margin-bottom: 1.5rem;
+ }
+
+ .skills {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 0.75rem;
+ margin-top: 1.5rem;
+ }
+
+ .skills span {
+ background: rgba(58, 134, 255, 0.1);
+ color: var(--primary);
+ padding: 0.5rem 1rem;
+ border-radius: 50px;
+ font-size: 0.875rem;
+ font-weight: 500;
+ }
+
+ /* Contact */
+ .contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ .form-group label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 500;
+ }
+
+ .form-group input,
+ .form-group textarea {
+ width: 100%;
+ padding: 0.75rem 1rem;
+ border: 1px solid #ddd;
+ border-radius: 4px;
+ font-family: inherit;
+ font-size: 1rem;
+ transition: var(--transition);
+ }
+
+ .form-group textarea {
+ min-height: 150px;
+ resize: vertical;
+ }
+
+ .form-group input:focus,
+ .form-group textarea:focus {
+ outline: none;
+ border-color: var(--primary);
+ box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
+ }
+
+ /* Footer */
+ footer {
+ background-color: var(--dark);
+ color: white;
+ padding: 4rem 0;
+ }
+
+ .footer-content {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: 2rem;
+ text-align: center;
+ }
+
+ .social-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .social-links a {
+ opacity: 0.7;
+ transition: var(--transition);
+ }
+
+ .social-links a:hover {
+ opacity: 1;
+ }
+
+ footer p {
+ opacity: 0.7;
+ font-size: 0.875rem;
+ }
+
+ /* Responsive */
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .about-content {
+ flex-direction: column;
+ }
+
+ .portfolio-grid {
+ grid-template-columns: 1fr;
+ }
+ }
+
+ @media (max-width: 480px) {
+ .nav-links {
+ gap: 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .hero-content p {
+ font-size: 1rem;
+ }
+ }