body {
  font-family: 'Nunito', sans-serif;
  background-color: #fefcff;
  color: #333;
}

.navbar {
  background-color: #a084ca;
}

.navbar-brand {
  font-weight: bold;
  color: white !important;
}

.hero {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(to right, #d8b4f8, #a084ca);
  color: white;
}

.card-purple {
  background-color: #f8f6fc;
  border-left: 6px solid #a084ca;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(160, 132, 202, 0.15);
}

.timeline-section {
  padding: 3rem 1rem;
}

.timeline-item {
  border-left: 4px solid #a084ca;
  padding-left: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #a084ca;
  border-radius: 50%;
  border: 3px solid white;
}
.about-section, .purpose-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin: 4rem 0;
}

.about-img {
  flex: 1 1 250px;
  text-align: center;
}

.about-img img {
  width: 250px;
  height: auto;
  border-radius: 12px;
  border: 4px solid #a084ca;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(160, 132, 202, 0.2);
}

.about-text, .purpose-text {
  flex: 2 1 500px;
}

.about-text h2, .purpose-text h2 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #a084ca;
}

.about-text p, .purpose-text p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.purpose-card {
  background: #f7f4fb;
  border-left: 5px solid #a084ca;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(160, 132, 202, 0.1);
}
.text-purple {
  color: #a084ca;
  font-weight: bold;
}

.purpose-text {
  background-color: #f8f6fc;
  border-left: 4px solid #a084ca;
  flex: 1 1 500px;
}

.purpose-img {
  flex: 1 1 300px;
  text-align: center;
}

.custom-purpose-img {
  border: 1px solid #ddd;
  border-radius: 12px;
  max-width: 55%;
  height: auto;
  transition: transform 0.3s ease;
}

.custom-purpose-img:hover {
  transform: scale(1.02);
}

.project-link {
  color: #a084ca;
  font-weight: bold;
  text-decoration: none;
}

.project-link:hover {
  text-decoration: underline;
}

.bootcamp-project {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 4rem;
  border-left: 4px solid #a084ca;
  padding-left: 1rem;
  position: relative;
}

.bootcamp-project::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #a084ca;
  border-radius: 50%;
  border: 3px solid white;
}

.bootcamp-info {
  flex: 1 1 400px;
}

.bootcamp-code {
  flex: 1 1 500px;
  max-width: 100%;
}

.journey-card {
  background-color: #f9f6fd;
  border-left: 5px solid #a084ca;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(160, 132, 202, 0.1);
  height: 100%;
}

.journey-card h5 {
  color: #a084ca;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.journey-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.journey-card img {
  border: 1px solid #ddd;
  border-radius: 12px;
  max-height: 180px;
  object-fit: cover;
  width: 100%;
}

.js-learn-card {
  background-color: #f9f5ff;
  border-left: 4px solid #a084ca;
}

.js-learn-card pre {
  background-color: #f1eaff;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  overflow-x: auto;
}

.bootcamp-project img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #ddd;
  transition: transform 0.3s ease;
}

.bootcamp-project img:hover {
  transform: scale(1.02);
}

.bootcamp-project ul {
  padding-left: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.bootcamp-project ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.bootcamp-card {
  background-color: #f7f4fb;
  border-left: 4px solid #a084ca;
  color: #333;
  max-width: 700px;
}

.bootcamp-card ul {
  padding-left: 1.2rem;
}

.bootcamp-card li {
  margin-bottom: 0.5rem;
}
.contact-section {
  background-color: #f8f4fc;
}

.contact-form {
  background-color: #fff;
  border: 1px solid #e2d6f0;
  border-radius: 16px;
}

.contact-form .form-control:focus {
  border-color: #a084ca;
  box-shadow: 0 0 0 0.2rem rgba(160, 132, 202, 0.25);
}

.btn-purple {
  background-color: #a084ca;
  color: #fff;
  border: none;
}

.btn-purple:hover {
  background-color: #8e6ec6;
  color: #fff;
}

.text-purple {
  color: #a084ca;
}

.modal-title {
  color: #a084ca;
  font-weight: bold;
}

footer {
  background-color: #a084ca;
  color: white;
  text-align: center;
  padding: 1rem;
}

/* Task & Roadmap Cards */
#portfolio-tasks .card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

#portfolio-tasks .card-header {
  padding: 1.25rem 1.5rem;
  background: #6f42c1;
  color: white;
}

#portfolio-tasks .card-header.bg-gradient-info {
  background: #2d2d2d;
  color: white;
}

#portfolio-tasks .form-control {
  border-radius: 0.5rem;
  padding: 0.6rem 1rem;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

#portfolio-tasks .btn {
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
}

#portfolio-tasks .btn-primary {
  background-color: #6f42c1;
  border: none;
}

#portfolio-tasks .btn-info {
  background-color: #2d2d2d;
  border: none;
}

#portfolio-tasks .task-container {
  max-height: 400px;
  overflow-y: auto;
}

#portfolio-tasks .list-group-item {
  padding: 0.75rem 1.25rem;
  border-left: none;
  border-right: none;
}

#portfolio-tasks .list-group-item:first-child {
  border-top: none;
}

#portfolio-tasks .delete-btn {
  padding: 0.25rem 0.5rem;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #f8f9fa;
  color: #6c757d;
}

#portfolio-tasks .form-check-label {
  cursor: pointer;
  word-break: break-word;
  padding-right: 1rem;
}

#roadmapList .badge {
  transition: all 0.2s ease;
}

#roadmapList .status-toggle:hover {
  opacity: 0.9;
}

/* Custom badges */
#roadmapList .bg-success {
  background-color: #6f42c1 !important;
}

#roadmapList .bg-warning {
  background-color: #ffc107 !important;
}

#roadmapList .bg-secondary {
  background-color: #6c757d !important;
}

/* Responsive */
@media (max-width: 992px) {
  #portfolio-tasks .col-lg-6 {
    margin-bottom: 1.5rem;
  }
}

.bg-morado {
  background-color: #6f42c1 !important;
  color: white !important;
}

.bg-negro {
  background-color: #2d2d2d !important;
  color: white !important;
}
