/* Global Styles */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --text-color: #333;
  --text-light: #7f8c8d;
}

.container_Profile {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.btn {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn:hover {
  background: #217dbb;
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.btn-outline:hover {
  background: var(--secondary-color);
  color: white;
}

section {
  padding: 20px 10px;
}

.section-title {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 10px;
  position: relative;
}

.section-title h2 {
  margin-top: 30px;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 0 auto;
}

/* Profile Section */
.profile {
  background-color: white;
}

.profile-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.profile-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-img img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.profile-img:hover img {
  transform: scale(1.05);
}

.profile-info h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.profile-info h4 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.profile-info p {
  margin-bottom: 20px;
  color: rgb(5, 5, 5);
  text-align: justify;
}

.skills {
  margin-top: 30px;
}

.skill-item {
  margin-bottom: 20px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.skill-bar {
  height: 10px;
  background-color: #f1f1f1;
  border-radius: 5px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background-color: var(--secondary-color);
  border-radius: 5px;
}
