.profile-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}
.profile-card:hover {
  transform: translateY(-5px);
}
.profile-header {
  background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
  color: white;
  padding: 25px;
  text-align: center;
}
.profile-img-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 5px solid rgba(255,255,255,0.3);
}
.profile-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-body {
  padding: 25px;
}
.profile-info-item {
  display: flex;
  margin-bottom: 15px;
  align-items: flex-start;
}
.profile-info-icon {
  background: #f8f9fa;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #0d6efd;
  flex-shrink: 0;
}
.profile-info-content {
  flex: 1;
}
.profile-info-label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 3px;
}
.profile-info-value {
  color: #6c757d;
}
.resume-category {
  margin-bottom: 40px;
}
.resume-category-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: 2px solid #e9ecef;
  color: #0d6efd;
}
.resume-category-title:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: #0d6efd;
}
.resume-item-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border-left: 4px solid #0d6efd;
}
.resume-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.resume-item-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.resume-item-icon {
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #0d6efd;
  font-size: 1.5rem;
}
.resume-item-title {
  margin: 0;
  color: #212529;
  font-weight: 600;
}
.resume-item-description {
  color: #6c757d;
  margin-bottom: 15px;
}
.resume-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.resume-link-item {
  margin-bottom: 10px;
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.resume-link-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}
.resume-link-item a {
  display: flex;
  align-items: center;
  color: #495057;
  text-decoration: none;
}
.resume-link-item a:hover {
  color: #0d6efd;
}
.resume-link-icon {
  margin-right: 10px;
  color: #0d6efd;
}
.resume-link-check {
  margin-left: auto;
  color: #20c997;
}
@media (max-width: 768px) {
  .profile-img-container {
    width: 120px;
    height: 120px;
  }
  .resume-item-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .resume-item-icon {
    margin-bottom: 10px;
  }
}
.innovation-section {
  padding: 60px 0;
  background: #f8f9fa;
}
.innovation-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 40px;
  border: none;
}
.innovation-header {
  background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
  color: white;
  padding: 30px;
  text-align: center;
}
.innovation-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
}
.innovation-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}
.innovation-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}
.innovation-body {
  padding: 40px;
}
.innovation-content {
  position: relative;
}
.text-content {
  margin-bottom: 30px;
}
.innovation-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #495057;
  text-align: justify;
}
.drop-cap {
  font-size: 4rem;
  font-weight: 700;
  color: #0d6efd;
  float: left;
  line-height: 0.8;
  margin-right: 10px;
  margin-top: 5px;
}
.media-sidebar {
  position: relative;
}
.media-container {
  position: sticky;
  top: 20px;
  margin-bottom: 30px;
}
.social-media-embed {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-bottom: 30px;
}
.social-media-embed iframe,
.social-media-embed blockquote {
  margin: 0 auto;
  max-width: 100%;
}
.additional-content {
  margin-top: 30px;
}
.innovation-features {
  margin-top: 30px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 25px;
}
.feature-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #0d6efd;
}
.feature-item h5 {
  color: #0d6efd;
  margin-bottom: 10px;
  font-weight: 600;
}
.feature-item p {
  color: #6c757d;
  margin: 0;
  font-size: 0.95rem;
}
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .media-container {
    position: static;
  }
  .media-sidebar {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .innovation-header {
    padding: 20px;
  }
  .innovation-title {
    font-size: 1.8rem;
  }
  .innovation-body {
    padding: 25px;
  }
  .innovation-text {
    font-size: 1rem;
  }
  .drop-cap {
    font-size: 3rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .innovation-title {
    font-size: 1.5rem;
  }
  .innovation-badge {
    font-size: 0.8rem;
    padding: 6px 15px;
  }
}