body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: black;
  color: white;
}

#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#cursor {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: cyan;
  position: absolute;
  pointer-events: none;
  
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px cyan;
}

.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50vh;
  padding: 5% 10%;
  padding-top: 0%;
}

.about-left {
  flex: 1;
  padding-right: 2rem;
}

.about-left h2 {
  font-size: 5rem;
  margin-bottom: 1rem;
  color: cyan;
}

.about-left p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ddd;
  position: relative;
}

.about-left p::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  background: cyan;
  margin-left: 5px;
  vertical-align: middle;
  animation: blinkCursor 1s steps(1) infinite;
}

@keyframes blinkCursor {
  0%, 90% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.about-right img {
  max-width: 300px;
  /* border-radius: 10px; */
  border-top-left-radius: 500%;
  border-top-right-radius: 90%;
  border-bottom-left-radius: 257%;
  border-bottom-right-radius: 510%;
  border: 3px solid cyan;
  /* border-radius: 50%; */
  filter: drop-shadow(0 0 20px cyan);
  transition: transform 0.3s ease;
  animation: fadeInLeft 1s ease-out;
  -webkit-animation: fadeInLeft 1s ease-out;
  margin-top: 90px;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
  


.about-right img:hover {
  transform: scale(1.05);
}

.buttons {
  margin-top: -5.65%;
  margin-left: 15%;
  display: flex;
  justify-content:start;
  gap: 120px;
  animation: fadeInUp 1s ease-out;
  -webkit-animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
.buttons .btn {
  padding: 15px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #00f6ff;
  border-radius: 8px;
  color: #00f6ff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.6s;
  backdrop-filter: blur(5px);
}

.buttons .btn:hover {
  background: #00f6ff;
  color: #0a0a0a;
  box-shadow: 0 0 15px #00f6ff, 0 0 30px #00f6ff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
    padding: 50px 5%;
  }

  .about-right img {
    margin-top: 30px;
    max-width: 80%;
  }

  .btn {
    padding: 12px 19px;
    font-size: 0.65rem;
  }
}

/* Glassmorphism Navbar */
.glass-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  padding: 4px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.glass-nav .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
}

.glass-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.glass-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.glass-nav ul li a:hover {
  color: #00f6ff;
  text-shadow: 0 0 10px #00f6ff;
}
.glass-nav ul li a.active {
  color: #00f6ff;
  font-weight: bold;
  text-shadow: 0 0 15px #00f6ff, 0 0 30px #00f6ff;
  border-bottom: 2px solid #00f6ff;
  padding-bottom: 3px;
}
/* Responsive */
@media (max-width: 768px) {
  .glass-nav {
    width: 98%;
    padding: 4px 8px;
    margin: 0 auto;
    border-radius: 12px;
    font-size: 0.95rem;
    flex-direction: column
  }
}
@media (max-width: 480px) {
  body {
    padding: 0 2vw;
  }
  .about {
    padding: 30px 0;
    min-height: unset;
    width: 100vw;
    box-sizing: border-box;
  }
  .about-left {
    padding-right: 0;
    width: 100%;
  }
  .about-right img {
    margin-top: 20px;
    max-width: 90vw;
  }
  .buttons {
    margin-left: 0;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .glass-nav {
    left: 0;
    transform: none;
    width: 100vw;
    border-radius: 30px;
    padding: 4px 0;
  }
}


/* Contact Section */
.contact-section {
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}



.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
  background: linear-gradient(90deg, #ff00cc, #3333ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.contact-section h2:hover {
  transform: scale(1.08);
  
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Social Links */
.social-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-links a {
  font-size: 1.8rem;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.4);
  color: #00f5d4;
}