
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f0f4f8;
  margin: 0;
  padding: 0;
}


.resume-container {
  display: flex;
  width: 85%;
  max-width: 1000px;
  margin: 50px auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s;
}

.resume-container:hover {
  transform: scale(1.01);
}


.leftside {
  width: 35%;
  background: linear-gradient(135deg, #0077b6, #0096c7);
  color: #fff;
  padding: 40px 20px;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  position: relative;
}

.profile-pic {
  text-align: center;
  margin-bottom: 25px;
}

.profile-pic img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.profile-pic img:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.name {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0 5px;
}

.job-title {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 25px;
  letter-spacing: 1px;
}


.section {
  margin: 25px 0;
}

.section h3 {
  font-size: 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 5px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section ul {
  list-style: none;
  padding: 0;
}

.section ul li {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.3s;
}

.section ul li:hover {
  color: #ffdd59;
  cursor: default;
}

.main-content {
  width: 65%;
  background: #fff;
  padding: 40px 35px;
  position: relative;
}

.main-content h2 {
  font-size: 20px;
  color: #0077b6;
  margin-bottom: 12px;
  border-bottom: 3px solid #e0e0e0;
  padding-bottom: 7px;
}

.main-content h3 {
  font-size: 16px;
  margin: 18px 0 8px;
  color: #0077b6;
}

.role {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.main-content ul {
  list-style: none; 
  margin: 0 0 20px 20px;
  padding: 0;
}


.main-content ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #070000;
  position: relative;
}

.main-content ul li::before {
  content: "•";
  color: #0077b6;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.main-content p {
  line-height: 1.6;
  color: #333;
}



@media (max-width: 768px) {
  .resume-container {
    flex-direction: column;
    width: 90%;
    margin: 20px auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .leftside, .main-content {
    width: 100%;
    border-radius: 0;
    padding: 25px 20px;
  }

  .leftside {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-radius: 0;
    text-align: center;
  }

  .profile-pic img {
    width: 120px;
    height: 120px;
  }

  .name {
    font-size: 22px;
  }

  .job-title {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .section h3 {
    font-size: 14px;
  }

  .section ul li {
    font-size: 13px;
  }

  .main-content {
    padding: 25px 20px;
  }

  .main-content h2 {
    font-size: 18px;
  }

  .main-content h3 {
    font-size: 14px;
  }

  .main-content ul li {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .profile-pic img {
    width: 100px;
    height: 100px;
  }

  .name {
    font-size: 20px;
  }

  .job-title {
    font-size: 12px;
  }

  .section h3 {
    font-size: 12px;
  }

  .section ul li {
    font-size: 12px;
  }

  .main-content h2 {
    font-size: 16px;
  }

  .main-content h3 {
    font-size: 13px;
  }

  .main-content ul li {
    font-size: 12px;
  }
}
