/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f4f6f9;
  color: #333;
}

/* Containers */
.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 40px 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero .highlight {
  color: #ffe17d;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.cta {
  padding: 12px 24px;
  background-color: white;
  color: #2575fc;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

/* About Section */
.about {
  background-color: #ffffff;
  text-align: center;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* Projects Section */
.projects {
  background-color: #eef1f5;
  text-align: center;
}

.projects h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.project-card {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card h3 {
  color: #2575fc;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 15px;
  margin-bottom: 10px;
}

.project-card a {
  color: #6a11cb;
  text-decoration: none;
  font-weight: bold;
}

/* Contact Section */
.contact {
  background-color: #ffffff;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact a {
  color: #2575fc;
  text-decoration: none;
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #333;
  color: #f4f6f9;
  text-align: center;
  padding: 20px 0;
}
