/* Global Styles */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  background: url('../assets/PROFILE.jpg') center/cover no-repeat fixed;
}

section {
  padding: 40px 20px;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.highlight-text {
  background: rgba(223, 86, 8, 0.8);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1.2rem;
  display: inline-block;
  margin: 10px 0;
}

/* Team Section */
.team {
  margin-top: 40px;
}
.team img {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #25D366;
  margin-bottom: 15px;
}
.team-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.team-desc {
  font-size: 1rem;
  line-height: 1.5;
  background: rgba(85, 233, 183, 0.2);
  padding: 10px;
  border-radius: 10px;
}

/* Skills Section */
.skills-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.tag {
  background: #111;
  color: #ff7f50;
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(255,126,0,0.3);
}
.tag i { margin-right: 8px; }
.tag .percent { margin-left: 10px; color: #ffd2b3; font-weight: 700; }



/* Video */
.video-section video { max-width: 80%; border-radius: 15px; margin: 0 auto; display: block; }

/* Contact */
.contact a { color: #ff4b2b; text-decoration: none; font-weight: bold; }
.contact a:hover { color: #fff; }
form { max-width: 500px; margin: 20px auto; display: flex; flex-direction: column; gap: 10px; }
form input, form textarea { padding: 12px; border-radius: 8px; border: none; outline: none; }
form button { background: #f13f08; padding: 0.8rem; border-radius: 8px; border: none; color: #fff; font-weight: bold; cursor: pointer; }
form button:hover { background: #fff; color: #f13f08; }

/* Footer */
footer { text-align: center; padding: 1.5rem; background: #111; border-top: 2px solid #ff4b2b; }

/* WhatsApp Floating */
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; width: 60px; height: 60px; background: #25D366; color: #fff; display: flex; justify-content: center; align-items: center; border-radius: 50%; font-size: 30px; z-index: 1000; }
.whatsapp-float:hover { background: #128C7E; }

/* Responsive */
@media(max-width:768px){
  .about-container { padding: 25px 15px; }
  .team img { width: 140px; height: 140px; }
  .grid { gap: 10px; }
  section { padding: 25px 10px; }
}
