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

html {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
}

body {
  background-color: #262626;
  color: white;
  font-family: "atf-franklin-gothic", sans-serif;
  font-weight: lighter;
  line-height: 1.5;
  height: 100%;
  overflow-x: hidden;
  margin: 0;
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #262626;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loader-text {
  color: white;
  font-size: 32px;
  font-weight: lighter;
  font-family: sans-serif;
}

#site-wrapper {
  opacity: 0;
  transition: opacity 3s ease;
}

/* Titles 
h1, h2, h3 {
  font-weight: 400;
}
/*
.menu-button {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  font-size: 16px;
  font-weight: 300;
  color: white;
  cursor: pointer;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.6s ease;
}
*/
.menu-item {
  transition: transform 0.1s ease;
  cursor: pointer;
}

.menu-options {
  position: absolute;
  top: 50%;
  right: 120px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: right;
  z-index: 2;
  transition: opacity 0.8s ease;
}

.menu-options.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.intro {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.intro-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-group {
  align-self: flex-start;
}

.name {
  font-size: clamp(3rem, 8vw, 80px);
  font-weight: lighter;
  color: white;
  line-height: 1;
}

.first-name {
  letter-spacing: -1px;
}

.last-name {
  letter-spacing: -2px;
}

.profession {
  position: absolute;
  bottom: 30px;
  left: 30px;
  max-width: 70%;
  font-size: 24px;
  font-weight: lighter;
  color: white;
  line-height: 1.4;
  word-break: normal;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .profession {
    bottom: 100px;
  }
}

.social-icons {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-icons .icon {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 14px;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%; 
  transform: translateX(-50%);
  animation: dropFade 2s ease-in-out infinite;
  z-index: 10;
  
}

@keyframes dropFade {
  0% { transform: translateY(-20px) translateX(-50%); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(10px) translateX(-50%); opacity: 0; }
}

.about-me {
  position: relative;
  overflow: hidden;
  background-color: #2f2f2f;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.about-content {
  flex: 1;
  display: flex;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
}

.about-left {
  position: relative;
  flex: 1 1 50%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.section-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.about-right {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 100%;
  position: relative;
  background-color: #BFBFBF;
}

.about-images-group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  height: 80%;
  gap: 20px;
  position: relative;
}

.about-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  height: 48%;
}

.about-img {
  width: 48%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  opacity: 0;
  transform: translateY(0);
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}


@media (max-width: 768px) {
  .about-content {
    display: flex !important;
    flex-direction: column !important;
    height: 100vh !important;
    flex-wrap: nowrap !important;
  }

  .about-left,
  .about-right {
    flex: 0 0 50vh !important;
    height: 50vh !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden;
  }

  .about-left {
    min-height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section-bg-video,
  .section-bg-overlay {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 0;
  }

  .about-right {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #262626;
  }

  .about-images-group {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
    width: 80%;
    max-width: 600px;
    gap: 10px;
  }

  .about-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 50%;
    gap: 10px;
  }

  .about-img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 4;
    border-radius: 4px;
   
  }
}

.about-text {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 500px;
  width: 100%;
  padding: 40px;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  opacity: 1;
  border: 1px solid #BFBFBF;
  background-color: rgba(13, 13, 13, 0.5);
}

.about-highlight {
  font-weight: bold;
}

.about-text h2 {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: lighter;
  margin-bottom: 20px;
}

.about-text p {
  font-weight: lighter;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  text-align: justify;
  max-width: 100%;
}

@media (max-width: 768px) {
  .about-text {
    width: 80% !important;
    max-width: 80% !important;
    font-size: clamp(12px, 3.5vw, 15px) !important;
    padding: 10px 0 !important;
    text-align: left !important;
    line-height: 1.5;
    word-break: break-word;
    border: none !important;
    background: none !important;
  }

  .about-text p {
    max-width: 100%;
  }
}



/* Achievements*/ 


.key-achievements {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* TOP AREA */
.achievements-top {
  position: relative;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.achievements-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: translateY(100%);
}

.achievements-header {
  position: absolute;
  top: 5vh;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  text-align: center;
  z-index: 3;
  padding: 0 20px;
}

.achievements-title {
  font-size: 32px;
  color: white;
  text-transform: uppercase;
  font-weight: lighter;
  margin-bottom: 30px;
}

.achievements-description {
  font-size: clamp(12px, 2vw, 16px);
  color: white;
  font-weight: lighter;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
  text-align: justify;
  line-height: 1.6;
  margin-top: 10px;
}

.achievements-list {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 60px;
  width: 80%;
  max-width: 1200px;
  z-index: 2;
  color: white;
  justify-content: center;
  row-gap: 40px;
}

.left-list,
.right-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
}

.achievement-item {
  font-size: 18px;
  color: white;
  opacity: 0;
  transform: translateY(20px);
}

/* BOTTOM SLIDER BAR */
.achievements-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15vh;
  background-color: rgba(38, 38, 38, 0.2);
  backdrop-filter: blur(1px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  z-index: 3;
}

.logo-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
  animation: scrollLogos 20s linear infinite;
  will-change: transform;
}

.slider-logo {
  height: 70%;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.sec-3-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  pointer-events: none;
}

.achievements-movies {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  font-size: clamp(14px, 4vw, 20px);
  font-weight: lighter;
  color: white;
  margin-bottom: 30px;
  z-index: 3;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}

.achievements-movies span {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(4px);
  display: inline-block;
  transition: all 0.4s ease;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .achievements-top {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .achievements-header {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    padding: 20px 5%;
    text-align: center;
    z-index: 3;
  }

  .achievements-title {
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: 12px;
  }

  .achievements-description {
    font-size: clamp(12px, 3.5vw, 14px);
    line-height: 1.4;
    max-width: 100%;
    margin: 0 auto 20px auto;
  }

  .achievements-list {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0 5%;
    overflow: visible;
    max-height: none;
    z-index: 2;
  }

  .achievements-list h2 {
    font-size: clamp(12px, 3.8vw, 16px);
    margin: 20px 0 15px 0;
    white-space: normal;
    overflow: visible;
    text-align: center;
  }

  .left-list,
  .right-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .achievement-item-left,
  .achievement-item-right {
    font-size: clamp(11px, 3.2vw, 13px);
    line-height: 1.4;
    text-align: center;
    white-space: normal;
    word-break: break-word;
  }

  .achievements-bottom {
    height: 12vh;
  }

  .slider-logo {
    height: 40%;
  }
}



/* section 4 */

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: auto; /* 👈 allow height to adapt */
  max-height: 90vh;
}



.work-card {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) scale(0.7);
  min-width: 30%;
  max-width: 50%;
  max-height: 100vh;
  
}

.work-card.next {
  visibility: visible;
  left: 80%;
}
.work-card.next2 {
  left: 90%;
  transform: translateX(-50%) translateY(-50%) scale(0.25);

}
.work-card.prev2 {
  left: 10%;
  transform: translateX(-50%) translateY(-50%) scale(0.25);

}
.work-card.prev {
  visibility: visible;
  left: 20%;
}

.buttons {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  backdrop-filter: blur(10px); /* 👈 background blur */
  -webkit-backdrop-filter: blur(10px); /* 👈 Safari support */
}

.buttons button {
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.231); /* 👈 50% transparent white */
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.buttons button:hover {
  background-color: rgba(255, 255, 255, 0.8); /* 👈 little less transparent on hover */
  transform: scale(1.1); /* 👈 nice subtle zoom on hover */
}


@media (max-width: 768px) {
  .work-card.prev, .work-card.next {
    visibility: hidden;
  }
}
.work-card.current {
  opacity: 1;
  display: flex;
  left: 50%;
  visibility: visible;
  transform: translateX(-50%) translateY(-50%) scale(0.9);
}


/* Section background */
.work-experience {
  position: relative;
  min-height: 100vh;
  background-color: black;
  overflow: hidden;
}

.work-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.2);
  transition: transform 1s ease, opacity 1s ease;
  will-change: transform;
}

.work-header {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: white;
  text-align: center;
}

.work-title {
  font-size: clamp(20px, 5vw, 36px);
  font-weight: lighter;
}

/* Work Cards */
.work-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  color: white;
  padding: 24px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: all 0.5s ease;
  box-sizing: border-box;
  max-width: 400px;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.work-card.in-focus {
  opacity: 1;
  transform: scale(1.05);
  backdrop-filter: blur(10px) brightness(1.1);
  background-color: rgba(163, 163, 163, 0.397);
}

.work-logo {
  max-width: 80px;
  margin-bottom: 16px;
}

.work-company {
  font-size: 20px;
  margin-bottom: 10px;
}

.work-position {
  font-size: 16px;
  font-weight: lighter;
  margin-bottom: 10px;
}

.work-dates {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 12px;
}

.work-responsibilities {
  font-size: 14px;
  font-weight: lighter;
  list-style: disc;
  padding-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .embla {
    height: 85vh; /* slightly taller to fit card better */
    padding: 0 10px;
  }

  .embla__slide {
    min-width: 90%;
  }

  .work-card {
    padding: 12px;
    max-height: 70vh; /* NEW: Limit card height */
    overflow-y: auto; /* NEW: Scroll inside if needed */
    font-size: 14px;
  }

  .work-company {
    font-size: 18px;
  }

  .work-position {
    font-size: 15px;
  }

  .work-dates {
    font-size: 13px;
  }

  .work-responsibilities {
    font-size: 13px;
    line-height: 1.4; /* NEW: tighter line height */
  }

  .embla-buttons {
    bottom: 10px; /* Move buttons a bit lower */
  }
}



/* Section 5 */




.portfolio-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  padding-top: 100px;
  padding-inline: 40px;
}

#section-5.portfolio-section {
  background: linear-gradient(-45deg, #0d0d0d, #1a1a1a, #262626, #333333);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  height: 100vh;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}



.portfolio-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  backdrop-filter: blur(6px); 
  -webkit-backdrop-filter: blur(6px); /* For Safari */
}


.portfolio-header {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
  color: white;
  text-align: center;
}

.portfolio-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: lighter;
}

.portfolio-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  justify-items: center;
  width: 100%;
  max-width: 1600px;
  height: 100%;
  overflow-y: auto;
  padding-bottom: 40px;
  box-sizing: border-box;
}

.portfolio-grid iframe {
  width: 100%;
  max-width: 270px;
  height: auto;
  aspect-ratio: 404 / 316;
  border: none;
  border-radius: 12px;
  background: #000;
}


@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-section {
    padding-inline: 16px;
  }
}



/* Section 6 */
/* ---------- DEFAULT / DESKTOP STYLES ---------- */

.desktop-only {
  display: flex;
}
.mobile-only {
  display: none;
}

.why-me-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  color: white;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.why-me-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: blur(4px) brightness(0.6);
}

.why-me-title {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: lighter;
  z-index: 2;
  text-align: center;
}

.why-me-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  width: 80%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  gap: 80px;
  padding: 0;
}

.why-me-column-left {
  width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.why-me-column-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* APPLY ONLY TO DESKTOP VERSION */
.why-me-column-right.desktop-only {
  width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
}

.why-me-section h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: normal;
  text-transform: uppercase;
  color: #ffffff;
}

.why-me-section ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.why-me-section ul li {
  margin-bottom: 6px;
}

.why-me-education {
  word-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

.why-me-education p,
.why-me-languages p,
.why-me-certifications p {
  margin: 4px 0;
  font-size: 14px;
  text-align: left;
}


/* ---------- MOBILE STYLES ---------- */

@media (max-width: 768px) {
  .why-me-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 92%;
    margin: 0 auto;
    padding: 100px 10px 10px 10px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    gap: 15px;
  }
  .mobile-only {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
    width: 100%;
  }
  .why-me-column-left,
  .why-me-column-center,
  .why-me-column-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .why-me-column-right.mobile-only {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding-bottom: 5;
  }

  .why-me-soft-skills ul,
  .why-me-tech-skills ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .why-me-soft-skills li,
  .why-me-tech-skills li {
    width: calc(50% - 8px);
    font-size: 3vw;
    line-height: 1.3;
    word-break: break-word;
  }

  .why-me-languages p,
  .why-me-education p,
  .why-me-certifications p {
    font-size: 3.1vw;
    margin: 0.5vh 0;
    text-align: left;
    line-height: 1.3;
    word-break: break-word;
  }

  .why-me-section h3 {
    font-size: 4vw;
    margin-bottom: 1vh;
    text-align: left;
    color: #ffffffcc;
    font-weight: normal;
    text-transform: uppercase;
  }

  .why-me-row-flex {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
  }

  .why-me-row-flex > div {
    flex: 1;
    min-width: 45%;
  }

  .why-me-certifications {
    width: 100%;
    margin-top: 20px;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
}


/* Section 7 */

.contact-section {
  position: relative;
  height: 100vh;
  background-color: black;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

.contact-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 60px;
  text-align: center;
  color: white;
  max-width: 400px;
  width: 100%;
}

.contact-title {
  font-size: clamp(28px, 5vw, 40px);
  margin-bottom: 20px;
}

.contact-email {
  font-size: 18px;
  margin-bottom: 30px;
}

.linkedin-button-cont {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 16px;
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid white;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.linkedin-button-cont svg path {
  transition: fill 0.3s ease;
}

.linkedin-button-cont:hover {
  background: white;
  color: black;
}

.linkedin-button-cont:hover svg path {
  fill: black;
}


.linkedin-icon {
  width: 20px;
  height: 20px;
}



@media (max-width: 768px) {
  .contact-card {
    padding: 30px 24px;
    max-width: 90%;
  }

  .contact-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .contact-email {
    font-size: 16px;
    margin-bottom: 24px;
    word-break: break-word;
  }

  .linkedin-button {
    font-size: 14px;
    padding: 8px 14px;
    gap: 8px;
  }

  .linkedin-icon {
    width: 18px;
    height: 18px;
  }
}
