html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #181818;
  color: #fff;
  margin: 0;
  padding: 0 40px 80px 40px;
  max-width: 100vw;
}

.main-title {
  text-align: center;
  font-size: 2rem;
  margin: 32px 0 12px 0;
  font-weight: 700;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8px;
  box-sizing: border-box;
}

.student-card {
  background: #232323;
  border-radius: 16px;
  padding: 20px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.student-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid #ffd600;
  box-shadow: 0 6px 18px rgba(255, 214, 0, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  flex-shrink: 0;
}

.student-card:hover .student-img {
  transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(255, 214, 0, 0.35);
}

.student-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}

.student-name {
  font-size: 1.05rem;
  font-weight: 700;
}

.student-role {
  color: #ffd600;
  font-size: 0.98rem;
  font-weight: 600;
}

.portfolio-btn {
  margin-top: 4px;
  align-self: center;
  background: #ffd600;
  color: #181818;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}

.portfolio-btn:hover {
  background: #fff;
  transform: translateY(-1px);
}

.main-nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  background: #181818;
  padding: 24px 48px 0 0;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-link {
  font-size: 1.08rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}

.nav-link:hover,
.nav-link.active {
  background: #232323;
  color: #ffd600;
}

.portfolio-container {
  display: flex;
  max-width: 1400px;
  margin: 40px auto 0 auto;
  gap: 36px;
  min-height: 80vh;
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
}

.profile-aside {
  background: #232323;
  border-radius: 18px;
  padding: 36px 32px 32px 32px;
  width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.profile-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}

.profile-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
}

.profile-role {
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffd600;
  margin-bottom: 8px;
}

.profile-badge {
  background: #333;
  color: #fff;
  font-size: 0.98rem;
  border-radius: 8px;
  padding: 6px 18px;
  margin-bottom: 18px;
  font-weight: 500;
}

.profile-divider {
  width: 100%;
  border: none;
  border-top: 1.5px solid #333;
  margin: 18px 0 18px 0;
}

.profile-email-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  width: 100%;
}

.profile-email-icon {
  font-size: 1.3rem;
  color: #ffd600;
}

.profile-email-label {
  font-size: 0.85rem;
  color: #bdbdbd;
  font-weight: 500;
  margin-bottom: 2px;
}

.profile-email {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 400;
}

.profile-socials {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}

.profile-social img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.download-cv-btn.yellow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffd600;
  color: #181818;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px 0;
  border-radius: 30px;
  text-decoration: none;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 0;
  border: none;
  transition: background 0.2s;
}

.download-cv-btn.yellow:hover {
  background: #fff;
  color: #181818;
}

.cv-icon {
  font-size: 1.3rem;
  margin-left: 10px;
}

.portfolio-main-content {
  background: #232323;
  border-radius: 18px;
  flex: 1;
  padding: 38px 48px 38px 48px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  max-width: 100vw;
}

.portfolio-main-content.about-card {
  padding-left: 32px;
  padding-right: 32px;
}

.about-header-row {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 18px;
}

.about-header-row h1,
.section-title,
.portfolio-main-content.about-card h1 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0;
}

.section-underline,
.yellow-underline {
  display: block;
  height: 5px;
  width: 48px;
  background: #ffd600;
  border-radius: 3px;
  margin-bottom: 0;
}

.about-nav {
  display: flex;
  gap: 18px;
  background: #232323;
  border-radius: 12px;
  padding: 6px 18px;
}

.about-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}

.about-nav-link.active,
.about-nav-link:hover {
  background: #181818;
  color: #ffd600;
}

.about-bio {
  font-size: 1.08rem;
  color: #e0e0e0;
  margin-bottom: 32px;
  margin-top: 8px;
  line-height: 1.7;
}

.project-stats-row {
  display: flex;
  gap: 48px;
  margin-bottom: 36px;
}

.project-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #181818;
  border-radius: 14px;
  padding: 18px 28px 14px 28px;
  min-width: 120px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.project-stat img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}

.project-stat-count {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd600;
  margin-bottom: 2px;
}

.project-stat-label {
  font-size: 1.02rem;
  color: #fff;
  font-weight: 500;
}

.skills-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.skills-row {
  display: flex;
  gap: 18px;
  margin-bottom: 14px;
}

.skill-tag {
  background: #181818;
  color: #fff;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 1.05rem;
  font-weight: 500;
  border: 1.5px solid #333;
  letter-spacing: 1px;
}

.portfolio-footer {
  width: 100%;
  background: #181818;
  color: #bdbdbd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 32px 60px 18px 60px;
  font-size: 1.05rem;
  border-top: 1.5px solid #232323;
  margin-top: 40px;
  min-height: 60px;
  box-sizing: border-box;
  word-break: break-word;
}

.footer-left a {
  color: #ffd600;
  text-decoration: underline;
}

.footer-center {
  background: #111;
  color: #fff;
  border-radius: 18px;
  padding: 8px 28px;
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0 18px;
}

.footer-right a {
  color: #bdbdbd;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.18s;
}

.footer-right a:hover {
  color: #ffd600;
}



.projects-card-grid.horizontal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
  margin-top: 24px;
  align-items: start; /* prevents vertical stretching */
}

.project-card.dark {
  background: #232323;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 18px 16px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden; /* ensure image and content stay inside the card */

  display: flex;
  flex-direction: column;
  justify-content: space-between; /* KEY FIX */
}

.project-img {
  display: block;
  width: 100%;
  height: 150px; /* slightly shorter to reduce overall card height */
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.project-info {
  width: 100%;
  padding: 0 4px;
}

.project-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  padding: 8px 0 4px 0;
  line-height: 1.4;
}

.project-domain {
  font-size: 0.9rem;
  color: #aaa;
  margin: 0;
  padding: 0 0 8px 0;
  line-height: 1.4;
}

.certificates-grid.horizontal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 24px;
}

.certificate-card.dark {
  background: #232323;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.certificate-img {
  width: 100%;
  max-width: 260px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.certificate-title {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  text-align: center;
}

/* --- Contact Page Redesign --- */
.contact-card-grid.horizontal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}

.contact-card.dark {
  background: #181818;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  padding: 32px 28px 28px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
  border: none;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-right: 18px;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0;
}

.contact-icon img {
  width: 32px;
  height: 32px;
  filter: none;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.contact-label {
  color: #ffd600;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.contact-value {
  color: #fff;
  font-size: 1.08rem;
  word-break: break-all;
}

.contact-value a {
  color: #fff;
  text-decoration: underline;
  word-break: break-all;
  transition: color 0.18s;
}

.contact-value a:hover {
  color: #ffd600;
}

.contact-description {
  color: #bdbdbd;
  font-size: 1.08rem;
  margin-bottom: 32px;
}

/* Nav highlight for Contact */
.about-nav-link.active {
  color: #ffd600 !important;
  background: #232323 !important;
  font-weight: 700;
}

/* Responsive for contact cards */
@media (max-width: 900px) {
  .contact-card-grid.horizontal-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Styles */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 24px;
}

.contact-info-section,
.contact-form-section {
  background: #232323;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.contact-section-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-description {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #181818;
  border-radius: 12px;
  border: 1px solid #333;
}

.contact-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffd600;
  border-radius: 12px;
  color: #000;
}

.contact-details h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.contact-details p {
  color: #ccc;
  font-size: 1rem;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  background: #181818;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 1rem;
  font-family: 'Inter', Arial, sans-serif;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd600;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #ffd600;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Inter', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.submit-btn:hover {
  background: #e6c200;
}

@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .portfolio-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 100vw;
  }
  .profile-aside,
  .portfolio-main-content {
    width: 100%;
    max-width: 700px;
    box-sizing: border-box;
  }
  .portfolio-main-content {
    padding: 32px 18px;
    max-width: 100vw;
  }
  .portfolio-footer {
    flex-direction: column;
    gap: 18px;
    padding: 32px 18px 18px 18px;
    align-items: flex-start;
    min-height: 100px;
  }
  .projects-card-grid.horizontal-grid {
    grid-template-columns: 1fr 1fr;
  }
  .certificates-grid.horizontal-grid,
  .contact-card-grid.horizontal-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 700px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .portfolio-main-content.about-card {
    padding-left: 8px;
    padding-right: 8px;
  }
  .projects-card-grid.horizontal-grid {
    grid-template-columns: 1fr;
  }
  .certificates-grid.horizontal-grid,
  .contact-card-grid.horizontal-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-section,
  .contact-form-section {
    padding: 24px 20px;
  }

  .contact-method {
    padding: 12px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 500px) {
  body {
    padding: 0 16px 60px 16px;
  }
  .card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .student-card {
    width: 100%;
    align-items: center;
  }
  .student-img {
    width: 200px;
    height: 200px;
  }
}
/* Project Modal Styles */
.project-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.project-modal-content {
  position: relative;
  background-color: #1a1a1a;
  margin: 2% auto;
  padding: 0;
  width: 95%;
  max-width: 1400px;
  height: 90vh;
  border-radius: 20px;
  overflow: hidden;
  color: white;
}

.project-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

.project-modal-close:hover {
  color: white;
}

.project-modal-header {
  padding: 30px 40px 20px;
  border-bottom: 1px solid #333;
}

.project-header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.project-badge {
  background: #4a90e2;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.project-tech-logo img {
  width: 48px;
  height: 48px;
}

.project-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 30px 40px;
  height: calc(100% - 200px);
  overflow-y: auto;
}

.project-content-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.project-modal-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.project-modal-domain {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.domain-label {
  color: #888;
  font-size: 14px;
}

.domain-value {
  color: #4caf50;
  font-weight: 600;
  font-size: 16px;
}

.project-description {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  margin: 0;
}

.project-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.project-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.linkedin-btn {
  background: #0077b5;
  color: white;
}

.linkedin-btn:hover {
  background: #005885;
  transform: translateY(-2px);
}

.jupyter-btn {
  background: #f37626;
  color: white;
}

.jupyter-btn:hover {
  background: #e85a00;
  transform: translateY(-2px);
}

.other-tools-section {
  margin-top: 20px;
}

.other-tools-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

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

.tool-tag {
  background: #333;
  color: #4a90e2;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.project-content-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: visible;
}

.project-visualization {
  background: #222;
  border-radius: 15px;
  padding: 20px;
  height: fit-content;
  overflow: visible;
  position: relative;
}

.code-snippet {
  margin-bottom: 20px;
}

.code-header {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
}

.code-line-number {
  color: #4a90e2;
  font-weight: bold;
}

.code-type {
  color: #888;
}

.code-content {
  background: #1a1a1a;
  padding: 15px;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.4;
  color: #ddd;
  border-left: 4px solid #4a90e2;
}

.chart-container {
  margin: 20px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.chart-image-wrapper {
  position: relative;
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  border: 2px solid blue;
  padding: 10px;
}

.chart-image-container {
  position: relative;
  display: inline-block;
  width: auto;
  max-width: 100%;
  border: 2px solid green;
}

.chart-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: white;
  padding: 10px;
  display: block;
  max-width: 100%;
}

.chart-insight {
  font-size: 14px;
  color: #aaa;
  line-height: 1.5;
  margin: 15px 0 0 0;
  text-align: center;
}

.project-details-section {
  grid-column: 1 / -1;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #333;
}

.project-details-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.project-details-text {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  margin: 0;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff0000;
  border: 3px solid #ffffff;
  color: #ffffff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
  opacity: 1 !important;
  visibility: visible !important;
}

.nav-arrow-left {
  left: -45px;
}

.nav-arrow-right {
  right: -45px;
}

.nav-arrow:hover {
  background: rgba(74, 144, 226, 1);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .project-modal-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-modal-content {
    width: 98%;
    height: 95vh;
    margin: 1% auto;
  }
}

@media (max-width: 768px) {
  .project-modal-content {
    margin: 0;
    width: 100%;
    height: 100vh;
    border-radius: 0;
  }

  .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-arrow-left {
    left: -15px;
  }

  .nav-arrow-right {
    right: -15px;
  }

  .project-modal-body {
    padding: 20px;
    gap: 20px;
  }

  .project-modal-title {
    font-size: 2rem;
  }
}

/* Chart container positioning */
.chart-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chart-image-container {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

/* Navigation arrows - positioned around the image */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

/* Left arrow positioning */
.nav-arrow-left {
  left: -20px; /* Positions arrow to the left of the image */
}

/* Right arrow positioning */
.nav-arrow-right {
  right: -20px; /* Positions arrow to the right of the image */
}

/* Chart image styling */
.chart-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Make sure the chart container has proper spacing */
.chart-container {
  margin: 20px 0;
  padding: 0 30px; /* Add padding to give space for arrows */
}

.initials-avatar {
 
  background: #023020;
  border-radius: 16px;
  padding: 20px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  color: #fff;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

/* Image Slider Styles */
.image-slider-container {
  width: 100%;
  position: relative;
}

.image-slider-wrapper {
  width: 100%;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #181818;
  border-radius: 12px;
  overflow: hidden;
}

.slider-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: none;
}

.slider-image:first-child {
  display: block;
}

.slider-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.slider-btn {
  background: #ffd600;
  color: #181818;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  pointer-events: auto;
  z-index: 10;
  position: relative;
}

.slider-btn:hover {
  background: #fff;
  transform: scale(1.1);
}

.slider-counter {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 60px;
  text-align: center;
}

/* Project Details Button Styles */
.see-work-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ffd600;
  color: #181818;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 214, 0, 0.3);
}

.see-work-btn:hover {
  background: #fff;
  color: #181818;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 214, 0, 0.4);
}

.see-work-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(255, 214, 0, 0.3);
}
