/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #0f172a;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #38bdf8;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 50px;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url("https://source.unsplash.com/1600x900/?technology,computer") no-repeat center/cover;
}

.hero-content {
  flex: 1 1 500px;
  max-width: 700px;
  animation: fadeInLeft 1.2s ease;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content h1 span {
  color: #38bdf8;
}

.hero-content h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #a3a3a3;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  background: #38bdf8;
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #0ea5e9;
}

.btn-alt {
  background: transparent;
  border: 2px solid #38bdf8;
}

.btn-alt:hover {
  background: #38bdf8;
  color: #fff;
}

/* Hero Image */
.hero-image {
  flex: 10;
  text-align: center;
  position: relative;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 260px;
  border-radius: 90%;
  border: 4px solid #00bfff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Keep name directly under the image */
.image-name {
  margin-top: 12px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  padding: 6px 14px;
  border-radius: 25px;
  display: inline-block;
  text-shadow: 2px 2px 6px rgba(0, 191, 255, 0.8);
  font-family: 'Poppins', sans-serif;
}
.hero-image img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: rgba(0,0,0,0.8);
  color: #a3a3a3;
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
/* Social Media Icons */
.social-links {
  margin-top: 30px;
  display: flex;
  justify-content:baseline;
  gap: 20px;
  margin-bottom: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1e293b;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Hover Effects */
.social-links a:hover {
  transform: translateY(-5px);
}

.social-links a:nth-child(1):hover { background: #1877f2; }  /* Facebook */
.social-links a:nth-child(2):hover { background: #e4405f; }  /* Instagram */
.social-links a:nth-child(3):hover { background: #0a66c2; }  /* LinkedIn */
.social-links a:nth-child(4):hover { background: #333; }     /* GitHub */
.social-links a:nth-child(5):hover { background: #1da1f2; }  /* Twitter */
