* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #0a0b0d;
  color: white;
  overflow-x: hidden;
}

header {
  background: #121212;
  padding: 20px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ff5757;
}

.hero {
  height: 100vh;
  background: url('hero-background.jpg') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 120px;
  opacity: 0;
  transition: opacity 2s ease;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(255, 87, 87, 0.6);
}

.hero p {
  font-size: 20px;
  font-style: italic;
  color: #fff;
  margin: 20px 0;
}

.hero .cta {
  background-color: #ff5757;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 5px;
}

section {
  padding: 60px 20px;
  text-align: center;
}

h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #ff5757;
}

.skills-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.skill {
  width: 200px;
  margin: 20px;
  text-align: center;
}

.skill h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.progress-bar {
  background: #ff5757;
  height: 8px;
  border-radius: 5px;
  margin-top: 10px;
}

.project {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  margin: 20px;
}

.project h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.project p {
  font-size: 16px;
}

footer {
  background: #121212;
  color: #fff;
  text-align: center;
  padding: 20px;
}

footer p {
  font-size: 14px;
}

.social-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.social-item {
  list-style: none;
}

.social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #121212;
  border-radius: 50%;
  text-align: center;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link ion-icon {
  font-size: 24px;
  color: white;
}

.social-link svg {
  width: 24px;
  height: 24px;
}
.img-circle {
  width: 150px;  /* Set the width of the image */
  height: 150px;  /* Set the height of the image */
  border-radius: 50%;  /* Make the image circular */
  object-fit: cover;  /* Ensure the image covers the circle */
  display: block;  /* Make the image behave like a block element */
  margin: 0 auto;  /* Center the image horizontally */
}
.project-link {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background-color: #007bff; /* Blue shade */
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-link:hover {
  background-color: #0056b3; /* Darker blue */
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.project-link:active {
  transform: translateY(1px);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

