/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: black;
  color: #333;
}

/* Header */
header {
  background-color: #2c3e50;
  padding: 20px;

  color: black;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

header p {
  font-size: 1.1rem;
}

/* Profile Image */
.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit:contain;
  margin: 20px auto;
  display: block;
  border: 4px solid white;
}

/* Section */
section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

section h2 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.8rem;
  text-align: center;
}

/* Project Cards */
.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.project {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  text-align: center;
}

.project h3 {
  margin-bottom: 10px;
  color: white;
}

.project p {
  font-size: 0.95rem;
}

/* Footer */
footer {
  background: black;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.8rem;
  }

  section h2 {
    font-size: 1.5rem;
  }
}/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.btn:hover {
  background-color:yellow;
}


.project-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
}

.project-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.project-card img {
  width: 100%;
  border-radius: 8px;
  height: 200px;
  object-fit: cover;
}

.contact-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 40 12px rgba(0,0,0,0.1);
}

.content-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.contact-section form {
  display: flex;
  flex-direction: column;
}

.contact-section input,
.contact-section textarea {
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  resize: none;
}

.contact-section input:focus,
.contact-section textarea:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
}

.contact-section button {
  padding: 12px;
  background-color: #4a90e2;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3 ease;
}

.contact-section button:hover {
  background-color: #3a78c2;
}