body, html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f0f4f8;
  color: #333;
}

.App {
  text-align: center;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
}

.hero p {
  font-size: 1.5rem;
  margin: 10px 0;
}

.hero a {
  margin-top: 20px;
  text-decoration: none;
  padding: 10px 20px;
  background: white;
  color: #0072ff;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero a:hover {
  background: #e6f0ff;
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0072ff;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 20px;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr); /* force 2 columns */
}

.project-list .project:nth-child(3) {
  grid-column: 1 / -1; /* span full width (across 2 columns) */
  justify-self: center; /* center it within the full-width cell */
}

.project {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Skills Section */
        .skills-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .skill {
            background: linear-gradient(90deg, #f8f7f6, #ffffff);
            color: rgb(29, 28, 28);
            padding: 12px 24px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0px 5px 15px rgba(168, 163, 164, 0.5);
        }

        .skill:hover {
            background: rgba(16, 11, 12, 0.2);
            text-shadow: 0px 0px 8px #744040;
            list-style: none;
        }

        /* Social Links */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .social-links a {
            text-decoration: none;
            color: rgb(18, 16, 16);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            font-weight: bold;
            transition: transform 0.3s ease-in-out;
        }

        .social-links a:hover {
            transform: scale(1.1);
        }

        .social-links img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
        }

/* Footer */
footer {
  background: #0072ff;
  color: white;
  padding: 15px 0;
  margin-top: 50px;
}
