:root {
  --neon-blue: #00ffff; /* Neon blue */
  --neon-blue-dark: #007777; /* Darker neon blue */
  --background-color: #000000; /* Black background */
  --text-color: #ffffff; /* White text */
  --header-gradient: linear-gradient(
    45deg,
    var(--neon-blue),
    var(--neon-blue-dark)
  );
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  cursor: none; /* Hide default cursor */
}

#custom-cursor {
  position: fixed;
  width: 8px; /* Small dot size */
  height: 8px; /* Small dot size */
  background: #fff; /* White color */
  border-radius: 50%; /* Circular shape */
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff; /* Luminous glow */
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
}

#custom-cursor.active {
  transform: translate(-50%, -50%) scale(1.5); /* Slightly enlarge on click */
  box-shadow: 0 0 15px #fff, 0 0 30px #fff, 0 0 45px #fff; /* Brighter glow on click */
}

#night-sky {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--background-color);
  z-index: -1;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  animation: fall linear infinite;
}

@keyframes fall {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(100vh);
  }
}

#landing {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

#landing-name {
  font-size: 4rem;
  margin: 0;
  background: var(--header-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: fadeIn 2s ease-in-out;
}

#landing-tagline {
  font-size: 1.5rem;
  color: var(--neon-blue);
  margin-top: 10px;
  animation: fadeIn 2.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.section {
  padding: 100px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content {
  max-width: 1200px;
  width: 100%;
}

h2 {
  font-size: 2.5rem;
  color: var(--neon-blue);
  margin-bottom: 20px;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-color);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.skill {
  background: rgba(0, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 10px var(--neon-blue));
  transition: transform 0.3s ease-out, filter 0.3s ease-out;
}

.skill:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 20px var(--neon-blue));
}

#experiences .coming-soon {
  font-size: 2rem;
  color: var(--neon-blue);
  animation: glow 1.5s infinite alternate;
}

#projects .coming-soon {
  font-size: 2rem;
  color: var(--neon-blue);
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  0% {
    opacity: 0.5;
    text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue);
  }
}

#connect p {
  font-size: 1.5rem;
  color: var(--neon-blue);
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  0% {
    opacity: 0.5;
    text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue);
  }
}
.connect-button {
  background: var(--header-gradient);
  color: var(--background-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.connect-button:hover {
  background: var(--background-color);
  color: var(--neon-blue);
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--neon-blue);
}

/* Footer */
footer {
  padding: 20px;
  background: var(--background-color);
  text-align: center;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.experience-item {
  background: #00ffff1a;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--neon-blue);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.experience-item:hover {
  background: rgba(0, 255, 255, 0.2);
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue);
  border-color: var(--neon-blue-dark);
}

.experience-item h3 {
  font-size: 1.5rem;
  color: var(--neon-blue);
  margin-bottom: 10px;
}

.experience-item .company {
  font-size: 1.1rem;
  color: var(--neon-blue-dark);
  margin-bottom: 10px;
}

.experience-item .duration,
.experience-item .location {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 10px;
}

.experience-item .description {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
}

.coming-soon {
  font-size: 2rem;
  color: var(--neon-blue);
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  0% {
    opacity: 0.5;
    text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue);
  }
}
:root {
  --neon-blue: #00ffff;
  --neon-blue-dark: #007777;
  --background-color: #000000;
  --text-color: #ffffff;
}

footer {
  padding: 20px;
  background: #000000b3;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer p {
  margin: 5px 0;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  right: 20px;
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  right: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
  overflow: hidden;
  position: relative;
  padding: 5px;
}

.social-link img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease-out;
}

.social-link span {
  position: absolute;
  left: 100%;
  white-space: nowrap;
  transition: left 0.3s ease-out;
  margin-left: 10px;
  color: var(--neon-blue);
  opacity: 0;
}

.social-link:hover img {
  transform: translateX(-100%);
}

.social-link:hover span {
  left: 40px;
  opacity: 1;
}

footer p {
  margin: 0;
  padding: 5px;
}





.Name {
  font-size: 24px;
  font-weight: bold;
  color: var(--neon-blue);
  text-decoration: none;
}
.Name:hover {
  color: orange;
}
.numberEspaniol {
  font-size: 10px;
  color: var(--neon-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}


.edname {
  font-size: 24px;
  font-weight: bold;
  color: var(--neon-purple);
  text-decoration: none;
}
.edname:hover {
  color: rgba(198, 95, 11, 0.76);
}
.edname {
  text-decoration: none;
  color: var(--neon-blue);
}
.adnan{
  text-decoration: none;
  color:white
}

/* skjfgjkj */

/* sodjg */
.adnan:hover{
  color: rgb(8, 185, 67);
  font-weight: bold;
}
.etename {
  font-size: 24px;
  font-weight: bold;
  color: var(--neon-purple);
  text-decoration: none;
}
.etename:hover {
  color: rgba(122, 246, 44, 0.835);
}
.etename{
  text-decoration: none;
  color: var(--neon-blue);
}
