/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 2.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 40px 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #2b5876, #4e4376);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero .highlight {
  color: #ffd700;
}

.hero .tagline {
  font-size: 1.2em;
  margin-top: 10px;
}

/* About, Skills, Projects, Vision */
section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #444;
}

.about p,
.vision p,
.projects p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.skills .skill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills .skill-list li {
  background: #4e4376;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1em;
}

/* Projects */
.project {
  background: #fff;
  padding: 20px;
  border-left: 5px solid #4e4376;
  margin-bottom: 20px;
}

/* Footer / Contact */
.contact {
  background: #2b5876;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.contact a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}
