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

/* Base Styles */
body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  background: #f5f7fa;
  color: #444;
  font-size: 16px;
}

a {
  transition: color 0.3s ease, background 0.3s ease;
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  background: #2c3e50;
  color: #fff;
  padding: 1.2rem 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

nav {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 1.5rem;
}

nav a {
  color: #fff;
  text-decoration: none;
}

nav a:hover {
  color: #50e3c2;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #4a90e2, #50e3c2);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.hero .btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.75rem;
  background: #4a90e2;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero .btn:hover {
  background: #4178c0;
}

/* Highlight Text */
.highlight {
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: bold;
  margin-top: 1rem;
}

/* Sections */
.container {
  width: 85%;
  margin: 3rem auto;
}

h2 {
  margin-bottom: 1.5rem;
  color: #2c3e50;
  font-size: 1.8rem;
  border-bottom: 2px solid #50e3c2;
  display: inline-block;
  padding-bottom: 0.3rem;
}

/* Skills */
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-left: 0;
}

.skills-list li {
  background: #50e3c2;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.project-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 10px 0;
}

.project-card iframe {
  width: 100%;
  border: none;
  border-radius: 8px;
  margin-top: 15px;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
  background: #2c3e50;
  color: #fff;
  font-size: 0.95rem;
  opacity: 0.95;
}
/* Skills Grid Redesign */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.skill-card {
  background: #ffffff;
  border-left: 4px solid #50e3c2;
  padding: 1.2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.skill-card h3 {
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-size: 1.1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.25rem;
}

.skill-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}
