/* style.css */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
}

header {
  text-align: center;
  background-color: #282c34;
  color: white;
  padding: 30px 20px;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-pic {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

nav {
  margin-top: 20px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #61dafb;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

section {
  margin-bottom: 40px;
}

.project-card {
  background-color: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 10px;
}

.project-card a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #0077cc;
}

.project-card a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 15px;
  background-color: #282c34;
  color: white;
  position: relative;
  bottom: 0;
  width: 100%;
}


.auth-form {
  max-width: 400px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.auth-form input {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.auth-form button {
  padding: 10px 20px;
  background-color: #282c34;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.auth-form button:hover {
  background-color: #444;
}

.hero-section {
  padding: 2rem 0;
  background: #f5f5f5;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.hero-image-left img,
.hero-image-right img {
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

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

.hero-text .highlight {
  color: #007acc;
  font-weight: 700;
}

.skills-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.skills-logos img {
  height: 60px;
  transition: transform 0.3s;
}

.skills-logos img:hover {
  transform: scale(1.1);
}

.about {
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-radius: 16px;
  margin-top: 40px;
  font-family: 'Poppins', sans-serif;
}

.about h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.about p {
  line-height: 1.6;
  margin-bottom: 16px;
  color: #444;
}
.contact {
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
  border-radius: 16px;
  margin-top: 40px;
}

.contact h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.auth-form {
  flex: 1;
  min-width: 280px;
}

.auth-form input,
.auth-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-top: 5px;
  font-size: 1rem;
}

.auth-form button {
  background-color: #007BFF;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.contact-info {
  flex: 1;
  min-width: 280px;
  font-size: 1rem;
}

.contact-info a {
  color: #007BFF;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icons img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}
