body {
  background:white ;
  margin: 0;
  font-family: Arial, sans-serif;
}

/* HERO SECTION (image + spacing) */
.hero {
  display: flex;
  justify-content: center;
  padding: 60px;
}

/* PROFILE IMAGE (circle + crop + zoom) */
.hero img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(1.4); /* zoom crop effect */
}

/* TEXT SECTION */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  max-width: 500px;
  padding: 60px;
}

/* TEXT STYLING */
.container p {
  margin: 0;
  font-size: 18px;
}

.container h1 {
  margin: 0;
  font-size: 40px;
}

.container h2 {
  margin: 0;
  font-size: 24px;
  font-weight: normal;
}

/* BUTTON */
button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background-color: #0096FF;
  transform: translateY(-2px);
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  min-height: 80vh;
}

/* NAVBAR */
nav {
  padding: 20px 40px;
  background: cyan;
}

nav ul {
  list-style: none;

  display: flex;
  justify-content: space-between;
  align-items: center;

  margin: 0;
  padding: 0;
}

/* RIGHT SIDE LINKS */
.nav-links {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

/* Social Icons */
.socials {
  margin-top: 10px;

  display: flex;
  gap: 20px;
}

.socials a {
  font-size: 32px;

  color: black;

  transition: 0.3s ease;
}

/* GITHUB */
.socials a:nth-child(1):hover {
  color: #222;
  transform: translateY(-4px);
}


/* YOUTUBE */
.socials a:nth-child(2):hover {
  color: red;
  transform: translateY(-4px);
}

/* LINKEDIN */
.socials a:nth-child(3):hover {
  color: #0077B5;
  transform: translateY(-4px);
}

.socials a:nth-child(4):hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transform: translateY(-4px);
}
.hero img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;

  transition: 0.4s ease;
  transform: scale(1.3);
}

.hero img:hover {
  transform: scale(2.5);
}