/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #333333, #1c1c1c);
  color: #f4f4f4;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
}

a {
  color: #00e5ff;
  text-decoration: none;
}

a:hover {
  color: #00d2ff;
}

section {
  padding: 60px 20px;
  margin: auto;
  max-width: 1100px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #444444, #222222);
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar {
  display: flex;
  justify-content: center;
}

.navbar a {
  margin: 0 15px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #00ffcc;
}

/* Animation for Sections */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: 80px 20px;
  margin-top: 60px;
}

h1 {
  font-size: 48px;
  text-align: center;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
  color: #00ff6c;
}

h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-style: italic;
  color: #00e5ff;
}

p {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
}

/* Bold and Italic Text */
.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

/* Resume Button */
.resume-download a {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  background-color: #00ff6c;
  color: #121212;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 25px;
  transition: all 0.3s;
}

.resume-download a:hover {
  background-color: #00e5ff;
  color: #ffffff;
}

/* Image Hover Effect */
a img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

a img:hover {
  transform: scale(1.05);
}

/* Instagram Icon */
.instagram-link {
  display: inline-block;
  margin-top: 10px;
}

.instagram-link img {
  width: 40px;
  transition: transform 0.3s ease;
}

.instagram-link img:hover {
  transform: scale(1.2);
}
