:root {
  --bg: #f9f9f9;
  --text: #222;
  --primary: #0077ff;
  --card-bg: #fff;
  --shadow: 0 4px 20px rgba(0,0,0,0.05);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

.navbar {
  background: var(--card-bg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.nav-links a {
  text-decoration: none;
  margin-left: 1.5rem;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  padding: 4rem 1rem;
  flex-wrap: wrap;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text span {
  color: var(--primary);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: var(--primary);
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #005ecc;
}

.hero-img {
  max-width: 250px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.section {
  max-width: 1100px;
  margin: auto;
  padding: 3rem 1rem;
}

.skills-container,
.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.skill,
.project-card {
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill:hover,
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.skill img {
  max-width: 60px;
  margin-bottom: 1rem;
}

.project-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.about {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.about img {
  max-width: 250px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  margin: auto;
}

.form input,
.form textarea {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

.form button:hover {
  background: #005ecc;
}


footer{
 margin-top: 110px;
}

.icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.logo{
  width: 75px;
}
