/* ---------- Global Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f4f6f8;
  color: #333;
}

.profile-container {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* ---------- Header ---------- */
.profile-header {
  position: relative;
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  color: white;
  padding: 40px 30px 60px;
  text-align: center;
}

.profile-header img.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid #fff;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.profile-header h1 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.profile-header p {
  opacity: 0.9;
}

/* ---------- Main Content ---------- */
.profile-content {
  padding: 80px 30px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}

/* ---------- Left Column ---------- */
.profile-info {
  background: #f9fafb;
  border-radius: 16px;
  padding: 20px;
}

.info-item {
  margin-bottom: 15px;
}

.info-item span {
  display: block;
  font-size: 0.85rem;
  color: #666;
}

.info-item strong {
  font-size: 1rem;
}

/* ---------- Right Column ---------- */
.profile-bio {
  background: #f9fafb;
  border-radius: 16px;
  padding: 20px;
}

.profile-bio h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #4f46e5;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.skill {
  background: #e0e7ff;
  color: #4338ca;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* ---------- Tabs ---------- */
.tabs {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  border-top: 1px solid #eee;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 12px;
  cursor: pointer;
  transition: background 0.3s;
}

.tab:hover {
  background: #f3f4f6;
}

.tab.active {
  background: #e0e7ff;
  color: #4f46e5;
  font-weight: 600;
  border-bottom: 3px solid #4f46e5;
}

.tab-content {
  display: none;
  padding: 20px 30px;
}

.tab-content.active {
  display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .profile-content {
    grid-template-columns: 1fr;
  }
}
/* ---------- Extra Sections ---------- */
.extra-section {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.extra-section h3 {
  color: #4f46e5;
  margin-bottom: 15px;
  border-left: 3px solid #4f46e5;
  padding-left: 10px;
}

/* Achievements */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: #e0e7ff;
  color: #4338ca;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.project-card {
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.project-card img {
  border-radius: 10px;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}

.project-card:hover {
  transform: translateY(-5px);
}

/* Timeline */
.activity-list {
  list-style: none;
}

.activity-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.activity-list span {
  color: #4f46e5;
  font-weight: 500;
}

/* Followers */
.follower-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.follower-grid img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  border: 2px solid #e0e7ff;
}

/* Testimonials */
.testimonial {
  background: #f9fafb;
  border-left: 4px solid #4f46e5;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 5px;
}

/* Settings */
.settings form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.settings label {
  font-size: 1rem;
  color: #555;
  font-weight: 600;
}

.settings input,
.settings select {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.settings input:focus,
.settings select:focus,
.settings textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 white;
}

.settings button {
  margin-top: 10px;
  background: #4f46e5;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1rem;
}

.settings button:hover {
  background: #4338ca;
  color: white;
}

.primary-btn {
  margin-top: 10px;
  background: #4f46e5;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1rem;
}

.primary-btn:hover {
  background: #4338ca;
  color: white;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 20px;
}

.social-icons a {
  color: #4f46e5;
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  text-decoration: none;
}
.social-icons a:hover {
  background-color: #4f46e5;
  color: #fff;
  border: 1px solid transparent;
}

.project-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-card h4 {
  margin: 10px;
  font-size: 18px;
}

.project-card p {
  margin: 0 10px 15px;
  color: #666;
}

.extra-section.portfolio {
  padding-bottom: 1rem;
}

.extra-section.portfolio .owl-nav {
  display: flex;
  gap: 2rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.extra-section.portfolio .owl-nav .owl-prev, .extra-section.portfolio .owl-nav .owl-next {
  color: #4f46e5;
}

.extra-section.portfolio .owl-carousel .owl-stage-outer {
  padding-bottom: 1rem;
}/*# sourceMappingURL=visting-card2.css.map */