/* Import font */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f0f4f8;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Hero Header with Background Image */
header {
  background: 
    linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
    url('header-bg.jpg') top/cover no-repeat;
  color: white;
  padding: 40px 20px;
  text-align: center;
}


/* Add slight glow to name */
header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* Container limit */
.container {
  max-width: 900px;
  margin: auto;
}

/* Main Card Structure */
.card {
  background-color: white;
  margin: 20px auto;
  padding: 25px;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Headings */
h2 {
  color: #2575fc;
  border-bottom: 2px solid #2575fc;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

/* Profile Picture Styling */
.profile-pic {
  width: 140px;
  border-radius: 50%;
  display: block;
  margin: 10px auto 20px;
}

/* Skills List */
.skills-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
}

.skills-list li {
  background: #e0e7ff;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

/* Project Layout */
.project {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.project img {
  max-width: 220px;
  border-radius: 8px;
}

.project div {
  flex: 1;
}

/* Button */
.button {
  display: inline-block;
  background-color: #2575fc;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

/* Contact Form */
form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  background-color: #2575fc;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
}

/* Contact Info */
.contact-info {
  margin-top: 10px;
  font-style: italic;
}

/* Google Form Container */
.form-container iframe {
  border-radius: 8px;
  border: none;
}

/* Footer */
footer {
  background-color: #222;
  color: #ddd;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
