/* Fonts & General Styles */



/* Header Styles */
.header {
  background: linear-gradient(135deg, #007bff, #00d4ff);
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header h1 {
  font-size: 2.5rem;
  margin: 0;
}

.header p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  opacity: 0.8;
}

/* Section Styles */
.section {
  background: #fff;
  padding: 2rem;
  margin: 0rem 0 2rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.section h3 {
  color: #007bff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.img-chart{
  width: 25vw;
}
.skills li {
  background: #e9f5ff;
  color: #007bff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  list-style: none;
}
.checklist li{
  list-style: none;
}
/* Highlighted Text */
.highlight {
  background: #f0f9ff;
  padding: 1rem;
  border-left: 5px solid #007bff;
  margin-top: 1rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1.5rem;
  background: #333;
  color: #fff;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header h1 {
      font-size: 2em;
  }

  .header p {
      font-size: 1em;
  }

  .section h3 {
      font-size: 1.5em;
  }

  .container {
    padding-left: 0px !important;
    padding-right: 0px !important;

  }
  .img-chart {
    width: 50vw;
  }
}
