/* ===== Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(120deg, #fdfcfb, #e2d1c3);
  color: #333;
  line-height: 1.8;
  font-size: 16px;
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #ee0979, #ff6a00);
  padding: 15px 60px;
  color: white;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.logo {
  font-size: 28px;
  letter-spacing: 1px;
}
.logo span {
  color: #ffe600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  font-size: 17px;
}
.nav-links a:hover {
  color: #ffe600;
}

/* ===== Home Section ===== */
.home {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 100px 10%;
  background: linear-gradient(120deg, #fef9f9, #f8f8ff);
  min-height: 80vh;
}

.home-content {
  max-width: 600px;
}
.home-content h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.home-content h1 span {
  color: #ee0979;
}
.home-content h3 {
  font-size: 22px;
  color: #ff6a00;
  margin-bottom: 15px;
}
.home-content p {
  margin: 15px 0;
  color: #555;
  font-size: 17px;
  line-height: 1.8;
}
.btn {
  background: #ee0979;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}
.btn:hover {
  background: #ff6a00;
}
.home-img img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 10%;
  border: 6px solid #ee0979;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  display: block;
}

/* ===== Section Titles ===== */
.section-title {
  text-align: center;
  font-size: 32px;
  margin: 60px 0 25px;
  color: #ee0979;
  letter-spacing: 1px;
}

/* ===== About Section ===== */
.about, .projects, .education, .contact {
  padding: 0 10%;
  margin-bottom: 70px;
}
.about p {
  font-size: 17px;
  margin-bottom: 15px;
  color: #333;
}
.about ul {
  margin-top: 10px;
  padding-left: 20px;
  line-height: 2;
}

/* ===== Projects ===== */
.project-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.project-card {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 25px;
  width: 320px;
  transition: 0.3s ease;
}
.project-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, #ffecd2, #fcb69f);
}

/* ===== Experience Section ===== */
.experience {
  padding: 0 10%;
  margin-bottom: 70px;
}
.exp-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.exp-card {
  background: #fff;
  border-left: 6px solid #ee0979;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
  line-height: 1.8;
}
.exp-card:hover {
  transform: scale(1.02);
  background: linear-gradient(145deg, #ffecd2, #fcb69f);
}

/* ===== Education Table ===== */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 17px;
  border-radius: 10px;
  overflow: hidden;
}
th, td {
  border: 1px solid black;
  padding: 12px;
  text-align: center;
}
th {
  background-color: #ff6a00;
  color: white;
  font-weight: 600;
}

/* ===== Contact Section ===== */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
}
.contact-info a {
  color: #ee0979;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: 0.3s;
}
.contact-info a:hover {
  color: #ff6a00;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  background: linear-gradient(90deg, #ee0979, #ff6a00);
  color: white;
  padding: 18px;
  font-size: 15px;
  letter-spacing: 0.5px;
}