@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg-color: #1a1a1a;
  --sidebar-bg: #1f1f1f;
  --card-bg: #2c2c2c;
  --text-color: #ffffff;
  --text-muted: #a0a0a0;
  --highlight-green: #30e0a0;
  --highlight-orange: #ff8c42;
  --border-color: #333333;
  --font-main: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding: 20px;
}

.main-container {
  display: flex;
  min-height: calc(100vh - 40px);
  align-items: flex-start;
  gap: 20px;
}

.sidebar {
  width: 320px;
  flex-shrink: 0;
  background-color: transparent;
  padding: 0;
  border-right: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 0;
  height: 100vh;
  margin-left: -10px;
  margin-top: -10px;
}

.profile-card {
  background-color: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  width: 100%;
  border: 1px solid var(--border-color);
  margin-top: 10px;
  min-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.profile-image-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 40px auto 30px;
}

.profile-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--highlight-orange);
}

.status-indicator {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background-color: var(--highlight-green);
  border-radius: 50%;
  border: 5px solid var(--card-bg);
}

.profile-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.profile-title {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.profile-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  color: var(--text-muted);
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--highlight-green);
}

.main-content {
  flex: 1 1 auto;
  margin: 0;
  background-color: var(--card-bg);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  padding: 40px 60px;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 8px 18px;
}

.header-icons {
  display: flex;
  gap: 8px;
  /* very subtle translucent highlight to lift the bar without heavy contrast */
  background: linear-gradient(180deg, rgba(255,255,255,0.012), rgba(255,255,255,0.006));
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.06);
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-right: 32px;
  backdrop-filter: blur(6px);
  /* soft drop + slight inset highlight for depth */
  box-shadow: 0 6px 18px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,0.02);
  width: auto;
  position: relative;
}

/* hide scrollbar but allow scrolling */
.header-icons::-webkit-scrollbar { height: 6px; }
.header-icons { scrollbar-width: thin; scrollbar-color: transparent transparent; }
.header-icons::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.06); border-radius: 6px; }

.header-icons .nav-item {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 12px;
  transition: color 200ms ease, transform 200ms ease;
  border: 1px solid transparent;
  position: relative;
  background: transparent;
}

.header-icons .nav-item i {
  font-size: 16px;
  display: block;
  transition: transform 0.3s ease;
}

.header-icons .nav-item span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.header-icons .nav-item:hover {
  color: var(--text-color);
  transform: translateY(-1px);
}

.header-icons .nav-item:hover i {
  transform: scale(1.1);
  color: var(--highlight-orange);
}

.header-icons .nav-item:hover span {
  color: var(--text-color);
}

/* subtle animated underline for each nav item to add a minimalist highlight on hover */
.header-icons .nav-item::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,140,66,0.18), transparent);
  opacity: 0;
  transform: scaleX(0.95);
  transition: opacity 180ms ease, transform 220ms ease;
}

.header-icons .nav-item:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-icons .nav-item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,140,66,0.06);
  border-radius: 10px;
}

/* header is intentionally minimal; it will scroll with the page */

.btn {
  background-color: var(--highlight-orange);
  color: var(--bg-color);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #ffac70;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn.small-btn {
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 13px;
  background-color: rgba(255,255,255,0.03);
  color: var(--text-color);
  border: 1px solid rgba(255,255,255,0.04);
}

.btn.small-btn:hover {
  background-color: rgba(255,255,255,0.05);
  color: var(--highlight-orange);
  border-color: rgba(255,140,66,0.2);
}

.profile-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

.profile-actions .small-btn i {
  margin-right: 8px;
  font-size: 14px;
}

/* creative minimalist small buttons */
.btn.small-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  color: var(--text-color);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn.small-btn .icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--highlight-orange), #ff6b2b);
  color: var(--bg-color);
  box-shadow: 0 6px 14px rgba(255, 140, 66, 0.15);
}

.btn.small-btn i { font-size: 14px; }

.btn.small-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255, 140, 66, 0.2);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-color: rgba(255, 140, 66, 0.2);
}

/* adjust profile actions labels to sit next to icons neatly */
.profile-actions .small-btn span { 
  font-size: 15px; 
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Special styling for hire me button */
.btn.small-btn.hire-btn {
  background: linear-gradient(180deg, rgba(48,224,160,0.08), rgba(48,224,160,0.04));
  border-color: rgba(48,224,160,0.2);
}

.btn.small-btn.hire-btn .icon-wrap {
  background: linear-gradient(135deg, var(--highlight-green), #20c090);
  box-shadow: 0 6px 14px rgba(48,224,160,0.15);
}

.btn.small-btn.hire-btn:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 25px rgba(48,224,160,0.2);
  background: linear-gradient(180deg, rgba(48,224,160,0.1), rgba(48,224,160,0.05));
  border-color: rgba(48,224,160,0.3);
}

.section-title-large {
  font-size: 80px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.section-title-large .highlight {
  color: var(--text-muted);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.stats-section {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.stat-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
}

.cards-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 80px;
}

.card {
  padding: 30px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 150px;
  color: var(--bg-color);
  font-weight: 700;
  font-size: 20px;
  transition: transform 0.3s ease;
}

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

.card.orange-card {
  background-color: var(--highlight-orange);
}

.card.green-card {
  background-color: var(--highlight-green);
}

.card i {
  font-size: 24px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.section-title .highlight {
  color: var(--text-muted);
}

.certificates-section {
  margin-bottom: 80px;
  text-align: center;
}

.certificates-grid {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.experience-section .experience-item {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
}

.experience-section .experience-item:last-child {
  border-bottom: none;
}

.experience-info h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.experience-info p {
  color: var(--text-muted);
  max-width: 600px;
}

.experience-date p {
  color: var(--text-muted);
  font-weight: 500;
}

.projects-section {
  margin-bottom: 80px;
  text-align: center;
  padding: 40px 0;
}

.project-carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
  overflow: hidden;
  padding: 20px 0;
}

.project-carousel {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
}

.project-card {
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
  flex: 0 0 calc(33.333% - 16px);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  position: relative;
  z-index: 1;
  opacity: 1;
  transform: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.55);
}

/* neutralize previous overlapping state classes */
.project-card.active, .project-card.prev, .project-card.next {
  transform: none;
  opacity: 1;
  left: auto;
  right: auto;
  width: auto;
}

.project-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 25px;
}

.project-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.project-description {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  max-width: 100%;
}

.tech-tag {
  background: rgba(0, 255, 255, 0.1);
  color: #00ffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(0, 255, 255, 0.3);
  flex-shrink: 0;
  white-space: nowrap;
}

/* Specific styling for the second project card to control tag wrapping */
.project-card[data-index="1"] .project-tech {
  width: 100%;
  max-width: 100%;
  justify-content: flex-start;
  /* Force wrapping by setting a width that accommodates exactly 3 tags */
  max-width: 280px;
}

/* Ensure tags don't shrink and maintain their natural width */
.project-card[data-index="1"] .tech-tag {
  flex: 0 0 auto;
  min-width: fit-content;
}

.project-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-details-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.view-details-btn:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: #00ffff;
  color: #00ffff;
}

.action-icons {
  display: flex;
  gap: 15px;
}

.action-icons i {
  color: #00ffff;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.action-icons i:hover {
  color: #ffffff;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: #00ffff;
  color: #00ffff;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #00ffff;
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(0, 255, 255, 0.7);
}

.view-all-projects {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  background: linear-gradient(135deg, #00ffff, #0080ff);
  color: #000000;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .project-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .project-content {
    padding: 20px;
  }
  
  .project-title {
    font-size: 18px;
  }
  
  .project-description {
    font-size: 13px;
  }
}

.tools-section {
  margin: 100px 0;
  text-align: center;
  padding: 0;
  position: relative;
}

.tools-section::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--highlight-orange), transparent);
}

.skills-header {
  margin-bottom: 80px;
  position: relative;
  display: inline-block;
  padding: 0 30px;
}

.skills-title {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(120deg, var(--highlight-orange), #ff6b2b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  position: relative;
}

.skills-subtitle {
  position: absolute;
  right: -20px;
  bottom: -10px;
  font-size: 16px;
  color: var(--highlight-green);
  font-weight: 500;
  text-transform: lowercase;
  opacity: 0.9;
}

.skills-categories {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
  margin: 0 auto;
}

.skill-category {
  flex: 1;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.skill-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--highlight-orange), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.skill-category:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 140, 66, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.skill-category:hover::before {
  opacity: 1;
}

.skill-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--highlight-orange), #ff6b2b);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.skill-category:hover .skill-icon {
  transform: rotate(0deg);
}

.skill-icon i {
  font-size: 32px;
  color: var(--bg-color);
}

.skill-name {
  color: var(--text-color);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 15px;
  position: relative;
}

.skill-bar {
  width: 40px;
  height: 2px;
  background: var(--highlight-orange);
  position: relative;
  margin: 0 0 25px;
  opacity: 0.5;
}

.skill-tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-items: center;
  align-items: center;
  width: 100%;
}

.skill-tools img {
  height: 35px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.5);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.skill-category:hover .skill-tools img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

@media (max-width: 1024px) {
  .skills-categories {
    gap: 30px;
    padding: 10px;
  }
  
  .skill-category {
    padding: 25px 15px;
  }
}

@media (max-width: 768px) {
  .skills-categories {
    flex-direction: column;
    align-items: center;
  }
  
  .skill-category {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .skills-categories {
    flex-direction: column;
    gap: 50px;
  }
  
  .skill-category {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .skill-item {
    padding: 15px;
  }
  
  .skill-item i {
    font-size: 20px;
  }
  
  .skill-item span {
    font-size: 14px;
  }
}

.certificates-section {
  margin: 80px 0;
  width: 100%;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  width: 100%;
  margin: 40px 0 0;
}

.certificate-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.certificate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, 
    rgba(255, 140, 66, 0.1),
    rgba(48, 224, 160, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.certificate-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 140, 66, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.certificate-card:hover::before {
  opacity: 1;
}

.certificate-icon {
  width: 50px;
  height: 50px;
  background: var(--highlight-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.certificate-icon i {
  font-size: 24px;
  color: var(--bg-color);
}

.certificate-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.certificate-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
}

.certificate-issuer {
  font-size: 14px;
  color: var(--highlight-orange);
  margin-bottom: 15px;
}

.certificate-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.certificate-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.certificate-meta i {
  font-size: 12px;
  opacity: 0.8;
}

.certificate-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--highlight-green);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.certificate-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.certificate-link:hover {
  color: var(--text-color);
}

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

@media (max-width: 900px) {
  .certificates-grid {
    grid-template-columns: 1fr;
  }
  
  .certificate-card {
    padding: 20px;
  }
  
  .skills-categories {
    flex-direction: column;
    align-items: center;
  }
  
  .skill-category {
    width: 100%;
    max-width: none;
  }
}

.contact-section {
  background-color: var(--card-bg);
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 15px;
  color: var(--text-color);
  font-size: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form .btn {
  align-self: center;
}

@media (max-width: 1200px) {
  .main-container {
    flex-direction: column;
    gap: 20px;
  }
  .sidebar {
    width: 100%;
    position: static;
    top: auto;
    height: auto;
    padding: 20px 0;
  }
  .main-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 10px;
  }
  .main-container {
    min-height: calc(100vh - 20px);
    padding: 0;
  }
  .section-title-large {
    font-size: 50px;
  }
  .stats-section {
    flex-direction: column;
    gap: 20px;
  }
  .cards-section {
    grid-template-columns: 1fr;
  }
  .experience-item {
    flex-direction: column;
    gap: 15px;
  }
}

