* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #1f242d;
  color: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}


header {
  background: #1f242d;
  padding: 20px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
}


.profile-circle img {
  width:295px;
  height: 295px;
 
  gap: 50px;
  border-radius: 50%;
       
}


nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-size: 15px;
}

nav a.active,
nav a:hover {
  color: #2ecc71;
}


.home {
  padding: 80px 0;
}

.home-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.home h1 {
  font-size: 48px;
}

.home h2 {
  margin: 10px 0;
  font-size: 28px;
}

.home h2 span {
  color: #2ecc71;
}

.home p {
  max-width: 500px;
  margin: 20px 0;
}

.btn {
  display: inline-block;
  background: #2ecc71;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}


.profile-circle {
  width: 300px;
  height: 300px;
  border: 3px solid #2ecc71;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2ecc71;
  font-size: 18px;
}


section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #2ecc71;
}

.section-text {
  max-width: 700px;
  margin: auto;
  text-align: center;
  
}


.skills-grid {
  display: table-column;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.skills {
  background: #2a2f3a;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
}
.row{
  margin: 2px solid;
  padding: 30px;
  display: row;

}


.projects-grid {
  display: row;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.project-card {
  background: #2a2f3a;
  padding: 40px;
  border-radius: 8px;
}


.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  outline: none;
  border-radius: 5px;
}

.contact-form button {
  background: #2ecc71;
  border: none;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 30px;
}


footer {
  text-align: center;
  padding: 20px;
  background: #1a1f26;
}
