/* /css/resume.css - Ambient Pixels v2.4 - June 15, 2025 */

/* ===== Education Section ===== */
.education-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(90, 228, 255, 0.1);
  transition: all 0.3s ease;
}

.education-item:hover {
  background: rgba(90, 228, 255, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.education-logo {
  flex: 0 0 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(90, 228, 255, 0.2);
  margin-right: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  align-self: flex-start;
  margin-top: 0.5rem;
}

.education-logo img {
  width: auto;
  height: auto;
  max-height: 200px;
  min-height: 120px;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  /* Max crisp, solid shadow */
  filter:
    drop-shadow(0 2px 2px rgba(0,0,0,1));
  position: relative;
  z-index: 1;
}

.education-logo:hover img {
  transform: scale(1.08);
  filter:
    drop-shadow(0 2px 2px rgba(0,0,0,1));
}


.personal-quote {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin: 0.25rem 0 0.5rem 0;
  padding: 0;
  font-style: italic;
  color: #26d0ce; /* teal text */
  background: none;
  border: none;
  border-radius: 0;
  font-size: 1.07rem;
  letter-spacing: 0.01em;
  line-height: 1.5;
  box-shadow: none;
  position: relative;
}
.personal-quote-icon {
  color: #e5c97b;
  font-size: 1.1em;
  margin-right: 0.5em;
  vertical-align: middle;
  opacity: 0.92;
}

.education-details {
  flex: 1;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.education-item h3 {
  margin: 0 0 0.5rem 0;
  color: #5ae4ff;
  font-size: 1.25rem;
}

.education-item p {
  margin: 0 0 0.5rem 0;
  color: #e0e7ff;
  opacity: 0.9;
}

.education-item .date {
  color: #a5b4fc;
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .education-item {
    flex-direction: column;
    text-align: center;
  }
  
  .education-logo {
    margin: 0 auto 1rem;
    max-width: 80px;
  }
}

/* ===== Hero Section ===== */
/* Add margin to the first content section after hero */
.hero-section + .grid-container > .content-section:first-child {
  margin-top: 0.5rem;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

/* Hero content styles moved to hero.css */

.hero-badge {
  display: inline-block;
  background: rgba(90, 228, 255, 0.2);
  color: #5ae4ff;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  /* text-transform: uppercase; */
  letter-spacing: 0.1em;
  border: 1px solid rgba(90, 228, 255, 0.3);
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0.5rem 0 1rem;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #a5b4fc;
  margin: 0 0 0.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.hero-job-title {
  font-size: 1.25rem;
  color: #a7f3a0;
  margin: 0 0 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.hero-job-title .highlight {
  color: #a5b4fc;
  font-weight: 500;
}

.hero-description {
  font-size: 1.25rem;
  color: #e0e7ff;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Hero Role Tags */
.hero-content .role-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 2.5rem;
}

/* Hero Section Buttons */
.hero-content .project-buttons {
  margin: 2.5rem 0 1rem;
  justify-content: center;
  gap: 1rem;
}

.hero-content .project-buttons .btn {
  margin: 0;
  min-width: auto;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Particles Background */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-section {
    min-height: 450px;

  }
  
  .hero-section h1 {
    font-size: 2.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 400px;

  }
  
  .hero-section h1 {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-contact-info {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .contact-separator {
    display: none;
  }
}


/* ===== Button Styles ===== */
.project-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}

/* Reset link styles for buttons */
.project-buttons a,
.project-buttons a:link,
.project-buttons a:visited,
.project-buttons a:hover,
.project-buttons a:active,
.project-buttons a:focus,
.btn,
.btn:link,
.btn:visited,
.btn:hover,
.btn:active,
.btn:focus {
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
  text-decoration-line: none !important;
  outline: none;
}

/* Remove the underline effect from base.css */
.project-buttons a::after,
.project-buttons a:hover::after,
.btn::after,
.btn:hover::after {
  display: none !important;
  content: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.btn i {
  font-size: 1em;
  transition: transform 0.2s ease;
}

.btn:hover i {
  transform: translateX(2px);
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, #3a7bd5, #8e44ad);
  color: white !important;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 123, 213, 0.4);
}

/* Secondary Button */
.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Outline Button */
.btn-outline {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .project-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn {
    width: 100%;
    padding: 0.75rem 1rem;
  }
}

/* ===== CTA STYLES ===== */
.cta-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
  width: 100%;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button i {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(2px);
}

/* Primary Button */
.cta-button.primary {
  background: linear-gradient(135deg, #4b8fff, #4b6cff);
  color: white;
  box-shadow: 0 4px 15px rgba(75, 108, 255, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 108, 255, 0.4);
}

.cta-button.primary:active {
  transform: translateY(0);
}

/* Secondary Button */
.cta-button.secondary {
  background: rgba(75, 180, 255, 0.1);
  color: #4bb4ff;
  border-color: rgba(75, 180, 255, 0.3);
}

.cta-button.secondary:hover {
  background: rgba(75, 180, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(75, 180, 255, 0.2);
}

/* Outline Button */
.cta-button.outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cta-button.outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Project Link Styles */
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4bb4ff;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.project-link i {
  transition: transform 0.3s ease;
}

.project-link:hover {
  color: #7bc8ff;
}

.project-link:hover i {
  transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cta-button {
    width: 100%;
    padding: 0.75rem 1rem;
  }
}

/* Mini Hero Overrides */
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

@keyframes glitch {
  0% { text-shadow: 0.05em 0 0 rgba(255,0,0,0.75), -0.05em -0.025em 0 rgba(0,255,0,0.75), -0.025em 0.05em 0 rgba(0,0,255,0.75); }
  14% { text-shadow: 0.05em 0 0 rgba(255,0,0,0.75), -0.05em -0.025em 0 rgba(0,255,0,0.75), -0.025em 0.05em 0 rgba(0,0,255,0.75); }
  15% { text-shadow: -0.05em -0.025em 0 rgba(255,0,0,0.75), 0.025em 0.025em 0 rgba(0,255,0,0.75), -0.05em -0.05em 0 rgba(0,0,255,0.75); }
  49% { text-shadow: -0.05em -0.025em 0 rgba(255,0,0,0.75), 0.025em 0.025em 0 rgba(0,255,0,0.75), -0.05em -0.05em 0 rgba(0,0,255,0.75); }
  50% { text-shadow: 0.025em 0.05em 0 rgba(255,0,0,0.75), 0.05em 0 0 rgba(0,255,0,0.75), 0 -0.05em 0 rgba(0,0,255,0.75); }
  99% { text-shadow: 0.025em 0.05em 0 rgba(255,0,0,0.75), 0.05em 0 0 rgba(0,255,0,0.75), 0 -0.05em 0 rgba(0,0,255,0.75); }
  100% { text-shadow: -0.025em 0 0 rgba(255,0,0,0.75), -0.025em -0.025em 0 rgba(0,255,0,0.75), -0.025em -0.05em 0 rgba(0,0,255,0.75); }
}

.grid-container {
  --grid-max-width: 100%;
  padding: 0 1rem;
  padding-top: 10px; /* Add top padding to account for fixed header */
}

.mini-hero {
  grid-column: 1 / -1;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 0;
  margin-bottom: 2rem;
  min-height: 280px;
  overflow: hidden;
  background: #0a0b1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: #0a0b1a;
  overflow: hidden;
}

/* Starfield background - matches 404 page */
.mini-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: #0a0b1a; /* Exact match from 404 page */
  overflow: hidden;
}


.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: transparent;
}

.star {
  position: absolute;
  background: #fff; /* White stars */
  border-radius: 50%;
  animation: twinkle var(--duration, 5s) infinite ease-in-out;
  opacity: 0;
}

@keyframes twinkle {
  0%, 100% { 
    opacity: 0.2; 
    transform: scale(1); 
  }
  50% { 
    opacity: 1; 
    transform: scale(1.5); 
  }
}

.mini-hero-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

.mini-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(90, 228, 255, 0.7);
  animation: glitch 5s infinite;
  position: relative;
  line-height: 1.2;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .mini-hero h1 {
    font-size: 2.5rem;
  }
}

.mini-hero .subtitle {
  font-size: 1.4rem;
  color: #fff;
  opacity: 0.9;
  margin: 0 auto;
  text-shadow: 0 0 8px rgba(90, 228, 255, 0.5);
  margin: 0 auto;
  max-width: 800px;
  line-height: 1.6;
  opacity: 0.9;
  position: relative;
}

@media (max-width: 768px) {
  .mini-hero .subtitle {
    font-size: 1.2rem;
  }
}

/* Hero Section */
.hero-content {
  text-align: center;
  padding: 3rem 1rem 2rem;
  position: relative;
  max-width: 900px;
  margin: 45px auto;
}

/* Brand Statement */
.brand-statement {
  max-width: 700px;
  margin: 2rem auto 2.5rem;
  position: relative;
  padding: 0 2rem;
}

.brand-statement p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #e0f7ff;
  font-style: italic;
  margin: 1rem 0;
  position: relative;
  padding: 0 1.5rem;
}

.brand-statement i {
  color: #5ae4ff;
  font-size: 1.8rem;
  opacity: 0.6;
  position: absolute;
}

.brand-statement i:first-child {
  top: 0;
  left: 0;
}

.brand-statement i:last-child {
  bottom: 0;
  right: 0;
}

/* Download Button */
.resume-actions {
  margin: 2rem 0 3rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  background: linear-gradient(135deg, #0066cc 0%, #4d94ff 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
  position: relative;
  overflow: hidden;
}

.download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.download-btn:active {
  transform: translateY(0);
}

.download-btn:hover::before {
  opacity: 1;
}

.download-btn i {
  font-size: 1.2em;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
  font-size: 1.25rem;
  color: #c375ff;
  margin: 1rem 0 2rem;
  letter-spacing: 0.05em;
}

/* Section Headers */
.section-header {
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(90, 228, 255, 0.1);
  margin-bottom: 1rem;
  cursor: pointer;
  background: rgba(75, 202, 255, 0.05);
  transition: all 0.3s ease;
}

.section-header:hover {
  background: rgba(75, 202, 255, 0.1);
  transform: translateY(-2px);
}

.section-header h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  color: #5ae4ff;
  margin: 0;
}

h2 {
  margin: 2rem 0 1rem;
  color: #5ae4ff;
  font-size: 1.5rem;
}

/* Awards Section */
.awards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.award-item {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(75, 202, 255, 0.05);
  border: 1px solid rgba(90, 228, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.award-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border-color: rgba(90, 228, 255, 0.3);
  background: rgba(75, 202, 255, 0.08);
}

.award-icon {
  font-size: 1.5rem;
  color: #ffd700;
  margin-right: 1.25rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.award-content {
  flex: 1;
}

.award-item h3 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}

.award-item .date {
  color: #a0e1ff;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: block;
}

.award-description {
  color: #e0f7ff;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.award-details {
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid #5ae4ff;
  padding: 0.75rem 1rem;
  border-radius: 0 4px 4px 0;
  margin-top: 1rem;
}

.award-details p {
  margin: 0 0 0.5rem;
  color: #5ae4ff;
  font-weight: 500;
}

.award-details ul {
  margin: 0.5rem 0 0 1.25rem;
  padding: 0;
  list-style-type: disc;
}

.award-details li {
  margin-bottom: 0.25rem;
  color: #e0f7ff;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .badges-container {
    grid-template-columns: 1fr;
  }
  
  .badge {
    padding: 1rem;
  }
  
  .badge-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

.section-header h2 i {
  color: #4682B4;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.section-header:hover h2 i {
  transform: rotate(10deg);
}

.toggle-btn {
  background: none;
  border: 1px solid #4682B4;
  padding: 8px 16px;
  cursor: pointer;
  color: inherit;
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  background: rgba(70, 130, 180, 0.1);
}

.content {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(90, 228, 255, 0.1);
}

/* Experience Items */
.experience-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(75, 202, 255, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.experience-item h3.job-title {
  color: #5ae4ff;
  margin-bottom: 0.75rem;
}

.experience-item .company {
  font-weight: 600;
  color: #c375ff;
  display: block;
  margin-bottom: 0.5rem;
}

.experience-item .date {
  color: #9ba8b4;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

/* Education Items */
.education-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(75, 202, 255, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.education-item:hover {
  background: rgba(75, 202, 255, 0.08);
  transform: translateY(-2px);
}

.education-item h3.school {
  color: #5ae4ff;
  margin-bottom: 0.75rem;
}

.education-item .date {
  color: #9ba8b4;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: block;
}

/* Skills Section - Reset and Base Styles */
.skills-section h2,
.skills-section .section-header {
  border-bottom: none !important;
  background-image: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 1.5rem !important;
  color: #5ae4ff !important;
}

/* Skills Grid Layout */
.skills-grid {
  /* Unique color variables for each skill section */
  --skill-color-1: #9c7cff; /* Purple - Design & Visual */
  --skill-color-2: #00e5af; /* Green - Video & Motion */
  --skill-color-3: #4dabff; /* Blue - Web Development */
  --skill-color-4: #ffd166; /* Yellow - Data & Analytics */
  --skill-color-5: #ff6b9d; /* Pink - AI & Automation */
  --skill-color-6: #00e5e5; /* Teal - Leadership & Strategy */
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  width: 100%;
  margin: 2rem 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
  line-height: 1.2;
}

.skill-pill i {
  margin-right: 5px;
  font-size: 0.8em;
  opacity: 0.8;
}

.skill-pill:hover {
  background: var(--skill-hover, rgba(75, 202, 255, 0.2)) !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 12px var(--skill-color, rgba(75, 202, 255, 0.3));
  border-color: var(--skill-color, rgba(75, 202, 255, 0.4));
}

/* Section Header */
.content-section h2 {
  color: #5ae4ff;
  margin: 2rem 0 1.5rem 0 !important;
  padding: 0 0 0.5rem 0 !important;
  border: none !important;
  background: none !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.content-section h2 i {
  font-size: 1.25rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0 1rem;
}

.skill-block {
  background: rgba(30, 35, 45, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.75rem;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.skill-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px -5px rgba(0, 0, 0, 0.2);
  border-color: rgba(100, 200, 255, 0.15);
}

/* Consolidated skill block header styles */
.skill-block h4 {
  margin: 0 0 1rem 0 !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  position: relative !important;
  padding: 0 !important;
  text-decoration: none !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

.skill-block h4::after {
  content: none !important; /* Remove gradient underline */
  display: none !important;
}

.skill-block h4 i {
  font-size: 1.4rem;
  width: 1.5em;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 0 15px currentColor;
  opacity: 0.9;
  color: inherit;
}

.skill-block h4 {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--accent-color);
}

.skill-block:hover h4 {
  text-shadow: 0 0 8px var(--accent-color);
}

.skill-block:hover h4 i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 12px currentColor);
  opacity: 1;
  color: var(--accent-color);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

.skill-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--skill-pill-bg);
  color: #e0f7ff;
  border: 1px solid var(--skill-pill-border);
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}

.skill-pill i {
  margin-right: 0.4rem;
  font-size: 0.9em;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.skill-pill:hover {
  background: var(--skill-pill-hover);
  color: #ffffff;
  transform: translateY(-2px);
  border-color: var(--accent-color);
}

.skill-pill:hover i {
  transform: scale(1.1);
  opacity: 1;
}

.skill-pill:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Skill Block Colors */
.skill-block:nth-child(1) { 
  --accent-color: var(--skill-color-1);
  --skill-pill-bg: rgba(156, 124, 255, 0.1);
  --skill-pill-hover: rgba(156, 124, 255, 0.2);
  --skill-pill-border: rgba(156, 124, 255, 0.15);
}

.skill-block:nth-child(2) { 
  --accent-color: var(--skill-color-2);
  --skill-pill-bg: rgba(0, 229, 175, 0.1);
  --skill-pill-hover: rgba(0, 229, 175, 0.2);
  --skill-pill-border: rgba(0, 229, 175, 0.15);
}

.skill-block:nth-child(3) { 
  --accent-color: var(--skill-color-3);
  --skill-pill-bg: rgba(77, 171, 255, 0.1);
  --skill-pill-hover: rgba(77, 171, 255, 0.2);
  --skill-pill-border: rgba(77, 171, 255, 0.15);
}

.skill-block:nth-child(4) { 
  --accent-color: var(--skill-color-4);
  --skill-pill-bg: rgba(255, 209, 102, 0.1);
  --skill-pill-hover: rgba(255, 209, 102, 0.2);
  --skill-pill-border: rgba(255, 209, 102, 0.15);
}

.skill-block:nth-child(5) { 
  --accent-color: var(--skill-color-5);
  --skill-pill-bg: rgba(255, 107, 157, 0.1);
  --skill-pill-hover: rgba(255, 107, 157, 0.2);
  --skill-pill-border: rgba(255, 107, 157, 0.15);
}

.skill-block:nth-child(6) { 
  --accent-color: var(--skill-color-6);
  --skill-pill-bg: rgba(0, 229, 229, 0.1);
  --skill-pill-hover: rgba(0, 229, 229, 0.2);
  --skill-pill-border: rgba(0, 229, 229, 0.15);
}

/* Skills Section Variables */
:root {
  --skill-accent-1: #64c8ff;  /* Primary accent color for Design, AI, Leadership */
  --skill-pill-bg: rgba(100, 200, 255, 0.1);
  --skill-pill-hover: rgba(100, 200, 255, 0.2);
  --skill-pill-border: rgba(100, 200, 255, 0.15);
  --skill-pill-hover-border: rgba(100, 200, 255, 0.3);
}

/* Button Enhancements */
.hero-buttons .glass-button {
  margin: 1rem 0;
  transition: all 0.3s ease;
}

.hero-buttons .glass-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(75, 202, 255, 0.3);
  text-shadow: 0 0 8px rgba(75, 202, 255, 0.5);
}

/* Role Tags */
.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
}

.role-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  background: rgba(75, 202, 255, 0.1);
  color: #5ae4ff;
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}

.role-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.role-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(75, 202, 255, 0.15);
  background: rgba(75, 202, 255, 0.15);
  border-color: rgba(90, 228, 255, 0.3);
}

.role-tag:focus {
  outline: 2px solid rgba(90, 228, 255, 0.5);
  outline-offset: 2px;
}

.role-tag i {
  margin-right: 0.4rem;
  font-size: 0.9em;
}

/* AI Role Tag */
.role-tag.role-ai {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.role-tag.role-ai:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}

/* Video Role Tag */
.role-tag.role-video {
  background: rgba(198, 120, 221, 0.1);
  color: #c678dd;
  border-color: rgba(198, 120, 221, 0.2);
}

.role-tag.role-video:hover {
  background: rgba(198, 120, 221, 0.15);
  border-color: rgba(198, 120, 221, 0.3);
  box-shadow: 0 4px 12px rgba(198, 120, 221, 0.15);
}

/* Role Type Variations */
.role-producer {
  color: #a7f3a0;
  background: rgba(16, 124, 16, 0.15);
  border-color: rgba(16, 124, 16, 0.2);
}

.role-producer:hover {
  background: rgba(16, 124, 16, 0.25);
  box-shadow: 0 4px 12px rgba(16, 124, 16, 0.15);
}

.role-technical {
  color: #ff9a9e;
  background: rgba(255, 100, 100, 0.15);
  border-color: rgba(255, 100, 100, 0.2);
}

.role-technical:hover {
  background: rgba(255, 100, 100, 0.25);
  box-shadow: 0 4px 12px rgba(255, 100, 100, 0.15);
}

.role-leadership {
  color: #ffd166;
  background: rgba(255, 180, 0, 0.15);
  border-color: rgba(255, 180, 0, 0.2);
}

.role-leadership:hover {
  background: rgba(255, 180, 0, 0.25);
  box-shadow: 0 4px 12px rgba(255, 180, 0, 0.15);
}

.role-strategy {
  color: #b388ff;
  background: rgba(150, 100, 255, 0.15);
  border-color: rgba(150, 100, 255, 0.2);
}

.role-strategy:hover {
  background: rgba(150, 100, 255, 0.25);
  box-shadow: 0 4px 12px rgba(150, 100, 255, 0.15);
}

.role-content {
  color: #64ffda;
  background: rgba(100, 255, 200, 0.1);
  border-color: rgba(100, 255, 200, 0.15);
}

.role-content:hover {
  background: rgba(100, 255, 200, 0.2);
  box-shadow: 0 4px 12px rgba(100, 255, 200, 0.1);
}

/* Experience Item Styling */
.experience-item {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(30, 35, 45, 0.7);
  border: 1px solid rgba(90, 228, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.experience-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border-color: rgba(90, 228, 255, 0.2);
  background: rgba(35, 40, 50, 0.8);
}

.experience-item h3 {
  color: #5ae4ff;
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.experience-item h3 i {
  font-size: 1.2em;
  opacity: 0.8;
}

.company {
  color: #b388ff;
  font-weight: 500;
  margin: 0.25rem 0;
  display: inline-block;
}

.date {
  color: #8eacbb;
  font-size: 0.9rem;
  margin: 0.25rem 0 1rem;
  display: block;
}

/* Featured Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.project-card {
  background: rgba(30, 35, 45, 0.7);
  border: 1px solid rgba(90, 228, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(90, 228, 255, 0.2);
}

.project-image {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}


.project-image.video-gradient-3 {
  background: linear-gradient(135deg, #535019 0%, #555318 100%) !important;
}

.project-image i {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  z-index: 1;
}

.project-card:hover .project-image i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.project-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-content h3 {
  margin: 0 0 0.75rem;
  color: #5ae4ff;
  font-size: 1.3rem;
  font-weight: 600;
}

.project-description {
  color: #e0f7ff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.project-tags span {
  background: rgba(90, 228, 255, 0.1);
  color: #5ae4ff;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #5ae4ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  margin-top: auto;
  align-self: flex-start;
}

.project-link i {
  transition: transform 0.3s ease;
}

.project-link:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(90, 228, 255, 0.5);
}

.project-link:hover i {
  transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .role-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
  }
  
  .experience-item {
    padding: 1.25rem;
  }
  
  .experience-item h3 {
    font-size: 1.25rem;
  }
}
