/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}



/* ===== LOGO STYLE ===== */
.logo img {
  height: 48px;
  width: auto;
  cursor: pointer;
  margin-left: 0%;
}

/* ===== LOGO ANIMATION ===== */
.logo-animate {
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 6px #00F5FF);
}

/* FLOAT EFFECT */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

/* GLOW ON HOVER */
.logo-animate:hover {
  filter: drop-shadow(0 0 15px #00F5FF);
  transform: scale(1.1);
}

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}
 
/* MOBILE */
@media (max-width: 600px) {
  .logo img {
    height: 36px;
  }
} 

body {
  background: #0A192F;
  color: #ffffff;
  line-height: 1.6;
}

.hero-image {
  position: relative;
  display: inline-block;
}

.hero-image img {
  width: 320px;
  filter: drop-shadow(0 15px 35px rgba(0, 245, 255, 0.35));
  transition: 0.4s ease;
}

/* Soft glow background */
.hero-image::before {
  content: "";
  position: absolute;
  inset: -25px;
  background: radial-gradient(circle, rgba(0,245,255,0.35), transparent 70%);
  z-index: -1;
}

/* Hover effect */
.hero-image img:hover {
  transform: translateY(-8px) scale(1.03);
  filter: drop-shadow(0 25px 50px rgba(0,245,255,0.6));
}

.hero-image:@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-image img {
  animation: float 4s ease-in-out infinite;
}

.hero-image::after {
  content: "Explore my UX portfolio to see user-centered design in action";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(0,245,255,0.4);
}


/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 80px;
  border-bottom: 1px solid #eee;
  /* margin-left: 24px; */ 
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
}

.logo {
  font-weight: 700;
  font-size: 20px;
}


.navbar a {
  margin-left: 24px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
}  

.nav-links :hover {
  color:#00F5FF; 
}

/* ===== HERO ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px;
  gap: 60px;
}

.hero-text {
  max-width: 520px;
}

.hero-text h1 {
  font-size: 52px;
  margin-bottom: 16px;
}

.hero-text span {
  color: #00F5FF;
}

.hero-text p {
  color: #ffffff;
  margin-bottom: 32px;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 16px;
   flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  align-items: center;
  justify-content: center;
}

.primary {
  background: #00F5FF;
  color: #000000;
  border-radius: 25px;
  box-shadow: 0 4px 16px
   transition: all 0.3s ease;
}

.buttons :hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 25px #ffffff;
}

.secondary {
  border: 1px solid #ccc;
  color: #ffffff;
  border-radius: 25px;
}

/* Hero Image */
.hero-image img {
  width: 320px;
  border-radius: 16px;
}

/* ===== PROJECTS ===== */
.projects {
  padding: 80px;
  background: #0A192F;
}

.projects h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.project-card{
    background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  padding: 24px;
  color: #ffffff;
}

.project-card {
  transition: 0.35s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.project-card h3 {
  margin-bottom: 12px;
}


.project-card a {
  text-decoration: none;
  font-weight: 500;
   transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(145, 144, 144, 0.35);
  display: inline-block;
  padding: 14px 34px;
  background: linear-gradient(135deg, #00F5FF);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 34px;
  color: #000000;
  border-radius: 25px;
  transition: 0.3s;
}

.project-card a:hover{
  background: #00F5FF; 
  color: #000000;
  box-shadow: 0 0 25px #ffffff;
}

.cta-wrap {
  margin-top: 16px;
}

/* ===== ABOUT ===== */
.about {
  padding: 80px;
  text-align: center;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.about p {
  max-width: 700px;
  margin: auto;
  color: #ffffff;
}

/* ===== CONTACT ===== */
/* .contact {
  padding: 60px;
  background: #0A192F;
  color: #fff;
  text-align: center;
}

.contact a {
  color: #00F5FF;
  text-decoration: none;
}
*/ 
.contact {
  .contact {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #06162e, #0a192f);
  color: #fff;
}

.contact h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.contact p {
  font-size: 16px;
  margin-bottom: 28px;
}

.contact a {
  color: #00f5ff;
  text-decoration: none;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.icon img {
  width: 22px;
  filter: invert(1);
}

.icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px #00f5ff;
}

}
/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .navbar {
    padding: 24px;
  }

  .hero,
  .projects,
  .about {
    padding: 60px 24px;
  }
}
