Changed around line 1
+ :root {
+ --space-dark: #0B0D17;
+ --space-blue: #D0D6F9;
+ --space-white: #FFFFFF;
+ --star-glow: rgba(255, 255, 255, 0.8);
+ --nebula-purple: #6B37BF;
+ --nebula-pink: #D53A9D;
+ }
+
+ body {
+ background-color: var(--space-dark);
+ color: var(--space-white);
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ line-height: 1.6;
+ margin: 0;
+ padding: 0;
+ background-image:
+ radial-gradient(circle at 20% 30%, var(--nebula-purple) 0%, transparent 20%),
+ radial-gradient(circle at 80% 70%, var(--nebula-pink) 0%, transparent 20%);
+ background-attachment: fixed;
+ }
+
+ .cosmic-header {
+ padding: 1.5rem 5%;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ position: relative;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: 700;
+ background: linear-gradient(90deg, var(--space-blue), var(--space-white));
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ position: relative;
+ }
+
+ .logo::after {
+ content: '';
+ position: absolute;
+ width: 100%;
+ height: 2px;
+ bottom: -5px;
+ left: 0;
+ background: linear-gradient(90deg, var(--space-blue), var(--space-white));
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--space-blue);
+ text-decoration: none;
+ transition: all 0.3s ease;
+ position: relative;
+ }
+
+ .nav-links a:hover {
+ color: var(--space-white);
+ }
+
+ .nav-links a::after {
+ content: '';
+ position: absolute;
+ width: 0;
+ height: 2px;
+ bottom: -5px;
+ left: 0;
+ background-color: var(--space-white);
+ transition: width 0.3s ease;
+ }
+
+ .nav-links a:hover::after {
+ width: 100%;
+ }
+
+ .cta-button {
+ background: transparent;
+ color: var(--space-white);
+ border: 1px solid var(--space-white);
+ padding: 0.5rem 1.5rem;
+ border-radius: 50px;
+ transition: all 0.3s ease;
+ }
+
+ .cta-button:hover {
+ background: var(--space-white);
+ color: var(--space-dark);
+ }
+
+ .hero-section {
+ text-align: center;
+ padding: 8rem 5% 10rem;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero-section h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1.5rem;
+ background: linear-gradient(90deg, var(--space-blue), var(--space-white));
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ }
+
+ .hero-section p {
+ font-size: 1.2rem;
+ max-width: 700px;
+ margin: 0 auto 2.5rem;
+ color: var(--space-blue);
+ }
+
+ .primary-button {
+ background: var(--space-white);
+ color: var(--space-dark);
+ padding: 0.8rem 2rem;
+ border-radius: 50px;
+ text-decoration: none;
+ font-weight: 600;
+ transition: all 0.3s ease;
+ display: inline-block;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-3px);
+ box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
+ }
+
+ section {
+ padding: 5rem 5%;
+ }
+
+ h2 {
+ font-size: 2.5rem;
+ margin-bottom: 3rem;
+ text-align: center;
+ color: var(--space-white);
+ position: relative;
+ }
+
+ h2::after {
+ content: '';
+ display: block;
+ width: 100px;
+ height: 3px;
+ background: linear-gradient(90deg, var(--nebula-purple), var(--nebula-pink));
+ margin: 1rem auto 0;
+ }
+
+ .about-content {
+ max-width: 800px;
+ margin: 0 auto;
+ text-align: center;
+ font-size: 1.1rem;
+ line-height: 1.8;
+ }
+
+ .project-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .project-card {
+ background: rgba(13, 17, 33, 0.7);
+ border-radius: 15px;
+ padding: 2rem;
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
+ backdrop-filter: blur(10px);
+ border: 1px solid rgba(208, 214, 249, 0.1);
+ }
+
+ .project-card:hover {
+ transform: translateY(-10px);
+ box-shadow: 0 15px 30px rgba(107, 55, 191, 0.2);
+ }
+
+ .project-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1.5rem;
+ }
+
+ .skills-chart {
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .skill {
+ margin-bottom: 1.5rem;
+ }
+
+ .skill-level {
+ height: 10px;
+ background: linear-gradient(90deg, var(--nebula-purple), var(--nebula-pink));
+ border-radius: 5px;
+ margin-top: 0.5rem;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .skill-level::after {
+ content: '';
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background: linear-gradient(
+ 90deg,
+ transparent,
+ rgba(255, 255, 255, 0.3),
+ transparent
+ );
+ animation: shine 2s infinite;
+ }
+
+ @keyframes shine {
+ 0% {
+ transform: translateX(-100%);
+ }
+ 100% {
+ transform: translateX(100%);
+ }
+ }
+
+ .contact-form {
+ max-width: 500px;
+ margin: 0 auto;
+ display: grid;
+ gap: 1.5rem;
+ }
+
+ .contact-form input,
+ .contact-form textarea {
+ background: rgba(13, 17, 33, 0.7);
+ border: 1px solid rgba(208, 214, 249, 0.2);
+ padding: 1rem;
+ border-radius: 8px;
+ color: var(--space-white);
+ font-family: inherit;
+ backdrop-filter: blur(5px);
+ }
+
+ .contact-form textarea {
+ min-height: 150px;
+ resize: vertical;
+ }
+
+ .submit-button {
+ background: linear-gradient(90deg, var(--nebula-purple), var(--nebula-pink));
+ color: white;
+ border: none;
+ padding: 1rem;
+ border-radius: 50px;
+ font-weight: 600;
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ .submit-button:hover {
+ transform: translateY(-3px);
+ }
+
+ .cosmic-footer {
+ text-align: center;
+ padding: 2rem;
+ color: var(--space-blue);
+ font-size: 0.9rem;
+ }
+
+ /* Stars background animation */
+ body::before {
+ content: '';
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background:
+ radial-gradient(circle at 20% 30%, transparent 40%, var(--star-glow) 70%),
+ radial-gradient(circle at 80% 50%, transparent 40%, var(--star-glow) 70%),
+ radial-gradient(circle at 50% 80%, transparent 40%, var(--star-glow) 70%);
+ pointer-events: none;
+ z-index: -1;
+ animation: twinkle 8s infinite alternate;
+ }
+
+ @keyframes twinkle {
+ 0% {
+ opacity: 0.3;
+ }
+ 100% {
+ opacity: 0.8;
+ }
+ }
+
+ /* Responsive styles */
+ @media (max-width: 768px) {
+ .cosmic-header {
+ flex-direction: column;
+ gap: 1.5rem;
+ }
+
+ .nav-links {
+ flex-direction: column;
+ gap: 1rem;
+ align-items: center;
+ }
+
+ .hero-section h1 {
+ font-size: 2.5rem;
+ }
+
+ section {
+ padding: 3rem 5%;
+ }
+ }