/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #f9faff; /* light background for clean look */
  color: #1a1a1a;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .logo-img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #0d47a1; /* professional blue */
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #1976d2;
}

/* Hero Section */
.hero {
  background-color: #e3f2fd; /* light blue accent */
  padding: 80px 20px;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.hero-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0d47a1;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #0d47a1;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #333;
}

/* Section Styling */
.section {
  padding: 80px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  color: #0d47a1;
  margin-bottom: 20px;
}

.section p {
  max-width: 600px;
  margin: 0 auto;
  color: #555;
  font-size: 1rem;
}

/* Skills Grid */
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.skill-card {
  background-color: #ffffff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: #0d47a1;
  transition: transform 0.3s, box-shadow 0.3s;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 15px;
}

.social-links a {
  text-decoration: none;
  color: #0d47a1;
  font-weight: 600;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #1976d2;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  color: #555;
  font-size: 0.9rem;
  border-top: 1px solid #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-photo {
    width: 150px;
    height: 150px;
  }
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #f9faff; /* light background for clean look */
  color: #1a1a1a;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .logo-img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #0d47a1; /* professional blue */
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #1976d2;
}

/* Hero Section */
.hero {
  background-color: #e3f2fd; /* light blue accent */
  padding: 80px 20px;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.hero-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0d47a1;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #0d47a1;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #333;
}

/* Section Styling */
.section {
  padding: 80px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  color: #0d47a1;
  margin-bottom: 20px;
}

.section p {
  max-width: 600px;
  margin: 0 auto;
  color: #555;
  font-size: 1rem;
}

/* Skills Grid */
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.skill-card {
  background-color: #ffffff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: #0d47a1;
  transition: transform 0.3s, box-shadow 0.3s;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 15px;
}

.social-links a {
  text-decoration: none;
  color: #0d47a1;
  font-weight: 600;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #1976d2;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  color: #555;
  font-size: 0.9rem;
  border-top: 1px solid #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-photo {
    width: 150px;
    height: 150px;
  }
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  background-color: #0d47a1;
  color: white;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #1976d2;
}

.social-links-contact {
  text-align: center;
  margin-top: 20px;
  font-size: 1rem;
}

.social-links-contact a {
  color: #0d47a1;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s;
}

.social-links-contact a:hover {
  color: #1976d2;
}

.social-links-contact h3 {
  color: #0d47a1;
  margin-bottom: 10px;
}

.projects-list ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.projects-list li {
  background-color: #e3f2fd; /* light blue */
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 10px;
  transition: background-color 0.3s;
}

.projects-list li:hover {
  background-color: #bbdefb;
}

.projects-list a {
  color: #0d47a1;
  text-decoration: none;
  font-size: 1.1rem;
}

.projects-list a:hover {
  color: #1976d2;
  text-decoration: underline;
}

.projects-list ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.project-item {
  display: flex;
  align-items: center;
  background-color: #e3f2fd; /* light blue */
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 15px;
  transition: background-color 0.3s;
}

.project-item:hover {
  background-color: #bbdefb;
}

.project-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}

.project-info a {
  color: #0d47a1;
  text-decoration: none;
  font-size: 1.1rem;
}

.project-info a:hover {
  color: #1976d2;
  text-decoration: underline;
}

.project-info p {
  margin: 5px 0 0 0;
}

.filter-btn {
  background-color: #0d47a1;
  color: white;
  border: none;
  padding: 8px 15px;
  margin: 0 5px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.filter-btn:hover {
  background-color: #1976d2;
}

.projects-intro {
  margin-bottom: 10px; /* smaller gap under intro paragraph */
}

.projects-filters {
  margin-bottom: 20px; /* tighter gap before project list */
}

.section {
  padding: 15px 0;
  margin: 0;
}

.project-item {
  padding: 10px 15px; /* smaller internal padding */
  margin-bottom: 10px; /* closer together */
}
