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

body {
  font-family: 'Inter', sans-serif;
  background-color: #111317;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background-color: #1a1d22;
  border-bottom: 1px solid #2a2f36;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #03a9f4;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar ul li a {
  text-decoration: none;
  color: #b0bec5;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #03a9f4;
}

/* Sections */
.section {
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* About Section */
.about-section h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-align: center;
}

.about-section p {
  font-size: 1.1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: #cfd8dc;
}

/* Project Section */
.projects-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
  color: #ffffff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Project Cards */
.project-card {
  background-color: #1f2229;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.project-card h3 {
  font-size: 1.3rem;
  color: #03a9f4;
  margin-bottom: 10px;
}

.project-card p {
  color: #cfd8dc;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.project-card a {
  color: #03a9f4;
  font-weight: 600;
  text-decoration: none;
  transition: letter-spacing 0.2s ease;
}

.project-card a:hover {
  letter-spacing: 1px;
}
