body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #0f0f0f;
  color: #fff;
  overflow-x: hidden;
}

/* Main container with premium border and shadow */
.resume-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 50px auto;
  padding: 50px 40px;
  background: rgba(15, 15, 15, 0.85);
  border-radius: 25px;
  border: 2px solid #ff4dc4;
  box-shadow: 0 0 30px rgba(202, 0, 146, 0.6), 0 0 60px rgba(255, 77, 196, 0.4);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for container */
.resume-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(202, 0, 146, 0.8), 0 0 80px rgba(255, 77, 196, 0.6);
}

/* Bubbles behind */
.bubbles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.bubble {
  position: absolute;
  width: 25px;
  height: 25px;
  background: rgba(202,0,146,0.3);
  border-radius: 50%;
  animation: floatBubbles 10s infinite ease-in-out;
}
.bubble:nth-child(1){left:5%; animation-delay:0s;}
.bubble:nth-child(2){left:20%; animation-delay:2s;}
.bubble:nth-child(3){left:40%; animation-delay:4s;}
.bubble:nth-child(4){left:60%; animation-delay:1s;}
.bubble:nth-child(5){left:80%; animation-delay:3s;}
.bubble:nth-child(6){left:90%; animation-delay:5s;}

@keyframes floatBubbles {
  0%{transform: translateY(0) scale(1); opacity:0.7;}
  50%{transform: translateY(-120px) scale(1.5); opacity:0.5;}
  100%{transform: translateY(-240px) scale(1); opacity:0;}
}

/* Header */
.resume-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.profile-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid #ca0092;
  box-shadow: 0 0 20px #ca0092, 0 0 40px #ff4dc4, 0 0 60px #ff77c4;
  object-fit: cover;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover on profile */
.profile-img:hover {
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 0 30px #ca0092, 0 0 60px #ff4dc4, 0 0 90px #ff77c4;
}

.resume-header h1 {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(90deg,#ca0092,#ff4dc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}
.resume-header h1:hover {
  transform: scale(1.05);
}

.resume-header p.role {
  font-weight: 600;
  color: #ffb6e6;
  margin: 5px 0;
  transition: color 0.3s ease;
}
.resume-header p.role:hover {
  color: #ff77c4;
}
.resume-header p.location {
  color: #ccc;
  font-size: 14px;
}

/* Buttons */
.contact-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}
.contact-btn, .download-btn, .back-btn {
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(202,0,146,0.5);
}

.contact-btn {
  background: #ca0092;
  color: #fff;
  text-decoration: none;
}
.contact-btn:hover {
  background:#ff4dc4;
  box-shadow: 0 0 20px #ff4dc4, 0 0 40px #ca0092;
}

.download-btn {
  background: #ff4dc4;
  color:#fff;
}
.download-btn:hover {
  background:#ca0092;
  box-shadow: 0 0 20px #ca0092, 0 0 40px #ff4dc4;
}

.back-btn {
  background: transparent;
  color: #ff4dc4;
  border: 1px solid #ff4dc4;
}
.back-btn:hover {
  background:#ff4dc4; 
  color:#000;
  box-shadow: 0 0 15px #ff4dc4, 0 0 30px #ca0092;
}

/* Sections */
.section {
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255,255,255,0.05);
  border-left: 4px solid #ff4dc4;
  transition: all 0.3s ease;
}
.section:hover {
  background: rgba(255,77,196,0.1);
  transform: translateX(5px);
}
.section h2 {
  font-size: 28px;
  color: #ff4dc4;
  margin-bottom: 15px;
}
.section ul { list-style: none; padding-left: 0; }
.section ul li { margin-bottom: 10px; line-height: 1.6; }

/* Skills */
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.skills-list li {
  background: #ca0092;
  padding: 6px 18px;
  border-radius: 25px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.skills-list li:hover {
  background: #ff4dc4;
  transform: scale(1.05);
}

/* Responsive */
@media(max-width:768px){
  .contact-btns{flex-direction:column; align-items:center;}
  .profile-img{width:150px;height:150px;}
  .resume-container {padding:30px 20px;}
}