@import "./reset.css";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --primary-bg-color: #f2f6f9;   /* cool blue-tinted off-white */
  --primary-accent: #0d1c24;     /* deep navy-slate */
  --secondary-accent: #3d6b85;   /* steel blue */

  --main-text-color: #0d1c24;
  --supportive-text-color: #1e3040; /* dark blue-grey */
  --gray-text-color: #546373;    /* medium cool grey */

  --white-color: #fff;
  --gray-color: #f7f9fb;         /* cool light grey */
  --gray-color-2: #CDD5E0;       /* cool mid grey */
  --gray-color-3: #556678;       /* cool pale grey */


  --blue-color: #CDD5E0;
  --blue-color-0: #A8B5C8;
  --blue-color-1: #7D8FA4;
  --blue-color-2: #556678;
  --blue-color-3: #2E3F52;

  --color-preloader-bg: var(--white-color);
  --color-dots: #1a2b36;         /* dark blue-slate */
}

/* Common styles */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  color: var(--main-text-color);
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.15px;
}

.container {
  padding: 0 64px;
  max-width: 1200px;
  /* max-width: clamp(54.5rem, 38.125rem + 81.88vw, 120rem); */
  margin: 0 auto;
}

.container-lg {
  max-width: 1600px;
}

.title {
  font-family: "Inter", sans-serif;
  font-size: 44px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 54px;
}

/* Vertical section titles — hidden, revealed on hover */
#about .title,
#services .title,
#skills .title,
#projects .title,
#talks .title,
#contact .title {
  position: absolute;
  left: 320px;
  top: 0;
  bottom: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 40px;
  margin-bottom: 0;
  white-space: nowrap;
  pointer-events: none;
  color: var(--white-color);
  opacity: 0.6;
  /* transition: opacity 0.35s ease; */
  padding: 0 20px;
  background-color: var(--blue-color-2);
  /* border-radius: 16px; */
  text-align: center;
}

#about:hover .title,
#services:hover .title,
#skills:hover .title,
#projects:hover .title,
#talks:hover .title,
#contact:hover .title {
  opacity: 1;
}

.btn {
  display: inline-block;
  height: 52px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  line-height: 52px;
  padding: 0 36px;
  margin: 0 12px 16px 0;
  color: var(--white-color);
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--primary-accent);
  border: 2px solid var(--primary-accent);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(13, 28, 36, 0.25);
  transition: all 0.3s ease-in;
}

.btn:hover,
.btn:focus {
  background-color: #556678;
  border-color: #556678;
  color: var(--white-color);
  outline: 0;
}

.btn:active {
  background-color: #2a4d62;
}

.btn-white {
  background: transparent;
  font-weight: 700;
  border: 2px solid var(--primary-accent);
  color: var(--primary-accent);
  transition: all 0.3s ease-in;
}

.btn-white:hover,
.btn-white:focus {
  background: var(--primary-accent);
  border: 2px solid var(--primary-accent);
  color: var(--white-color);
}

.btn-white:active {
  background-color: #1e3040;
}

.btn-red {
  background: var(--secondary-accent);
  border: 2px solid var(--secondary-accent);
  color: var(--white-color);
  transition: all 0.3s ease-in;
}

.btn-red:hover,
.btn-red:focus {
  background: var(--primary-accent);
  border: 2px solid var(--primary-accent);
}

.btn-red:active {
  background-color: #1e3040;
}

/* h5 {
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 23px;
  font-weight: 600;
  text-transform: uppercase;
} */

.white {
  color: var(--white-color);
}

/* Header */
.header {
  z-index: 100;
  background-color: transparent;
  height: 90px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  height: 90px;
}

.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1999;
  background-color: rgba(255, 255, 255, 0.95);
  padding-top: 0;
  padding-bottom: 0;
  transition: all 0.3s ease-in-out;
}

.logo {
  position: relative;
  line-height: 1;
  font-weight: 400;
  font-size: clamp(1.125rem, 1.011rem + 0.57vw, 1.375rem);
  color: var(--main-text-color);
}

.nav-list {
  display: flex;
  column-gap: 46px;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.15px;
}

.nav-btn {
  display: none;
}

.nav-link {
  color: var(--main-text-color);
}

.nav-link.active {
  text-decoration: underline;
  text-decoration-color: var(--secondary-accent);
  text-decoration-thickness: 1.2px;
  text-underline-offset: 7px;
}

/* Hero section */
.hero {
  position: relative;
  padding-top: 180px;
  background-color: var(--gray-color);
}

.hero-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.hero-content {
  text-align: left;
  align-self: center;
  padding: 20px;
  flex-grow: 1;
}

.hero-greeting {
  font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.625rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--blue-color-1);
}

.hero-heading {
  margin: 5px 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(2.25rem, 1.75rem + 2.5vw, 3.5rem);
  line-height: 1.2;
}

.hero-heading-subtitle {
  font-size: clamp(1.375rem, 1.25rem + 0.5vw, 1.75rem);
  font-weight: 400;
}

.hero-img {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-start;
  margin-top: auto;
  margin-right: clamp(0px, 5vw, 80px);
}

.hero-img img {
  display: block;
  position: relative;
  width: 300px;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(13, 28, 36, 0.15);
}

.about-social-list {
  display: flex;
}

.social-links-row {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  margin: 40px 0 40px;
  height: 35px;

  img {
    height: 35px;
    width: 35px;
  }
}

.social-links-row a {
  filter: brightness(0) saturate(100%) invert(42%) sepia(14%) saturate(500%) hue-rotate(172deg) brightness(88%) contrast(88%); /* --blue-color-2: #556678 */
  transition: all 0.3s ease-in-out;
}

.social-links-row a:hover {
  filter: invert(0%) sepia(0%) saturate(7500%) hue-rotate(305deg)
    brightness(97%) contrast(103%);
}

/* About section */
.about {
  position: relative;
  padding: 7rem 0;
  background-color: var(--white-color)
}

/* Services section */
.services {
  position: relative;
  padding: 7rem 0;
  background-color: var(--gray-color);
}

.about-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  justify-content: center;
  gap: 90px;
  margin-bottom: 80px;
  color: var(--supportive-text-color);
}

.about-descr {
  font-size: clamp(1.25rem, 1.25rem + 0.25vw, 1.25rem);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 10px;
}

.skill {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

.skill-title,
.skill-percent {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  /* text-transform: uppercase; */
  letter-spacing: 0px;
}

.skill-percent {
  float: right;
}
.skill-bar__progress {
  background-color: var(--gray-color);
  border-radius: 5px;
  height: 4px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.skill-bar__fill {
  background-color: var(--secondary-accent);
  height: 4px;
  width: 0; /* Initial width is 0 */
  transition: width 1.5s ease-in-out; /* Smooth transition for the fill */
}

.about-download-btn {
  margin-top: 40px;
}

.services-row {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.service-card {
  max-width: 340px;
  background-color: var(--white-color);
  padding: 100px 60px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(13, 28, 36, 0.1);
}

.service-card-img {
  display: block;
  height: 50px;
  margin: 0 auto 20px;
  filter: invert(33%) sepia(7%) saturate(243%) hue-rotate(145deg)
    brightness(94%) contrast(81%);
}

.service-card-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: clamp(1.125rem, 1.089rem + 0.18vw, 1.25rem);
}

.service-card p {
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
}

/*  */
.projects {
  position: relative;
  padding: 7rem 0;
  background-color: var(--gray-color);
}

.projects-title {
  text-align: center;
}

.projects-row {
  display: grid;
  max-width: 1200px;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0;
  row-gap: 10px;
  margin: 0 auto;
}


.project-box {
  width: 95%;
  height: 0;
  padding-bottom: 95%; /* Creates a perfect square aspect ratio */
  position: relative;
  overflow: hidden;
}

.project-box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}


.project-box:hover .project-mask {
  opacity: 1;
  visibility: visible;
}

.project-box:hover .project-mask .project-caption {
  bottom: 30px;
  /* opacity: 1; */
}

.text-caption {
  color: white !important;
}

.project-box:hover .project-img {
  transform: scale(1.1);
  transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  width: 100%;
}

.project-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover; /* This maintains aspect ratio while filling the container */
  object-position: center;
}

/**project - mask project-caption*/
/* Project caption images styling */
.project-caption img {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  margin-bottom: 5px;
  margin-left: 10px;
  vertical-align: middle;
}

/* Create link buttons for project links */
.project-caption a {
  display: inline-flex;
  align-items: center;
  /* background-color: rgba(0, 0, 0, 0.3); */
  border-radius: 4px;
  padding: 5px 8px;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: all 0.2s ease;
}

.project-caption h5 {
  margin-left: 40px;
  opacity: 1;
  margin-bottom: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff !important;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8) !important;
}

.project-caption p {
  margin-left: 40px;
  opacity: 1;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #ffffff !important;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8) !important;
}


.project-caption a:hover {
  background-color: rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  color: var(white);
}

/* Fix positioning of the caption */
.project-mask .project-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; /* Prevent text from going too far right */
  padding: 20px;
  /* opacity: 1; */
  transition: all 0.3s ease;
}

/* Adjust hover state */
.project-box:hover .project-mask .project-caption {
  bottom: 0;
  opacity: 1;
}

/* Make sure mask covers the entire box */
.project-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.) 100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}




/* Contact */
.contact {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  background-color: var(--gray-color);
}

.contact-content {
  font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.5rem);
  color: var(--supportive-text-color);
  margin: 0 auto 20px;
  margin-top: 10px;
}

.contact form {
  max-width: 500px;
  margin: 20px auto;
  text-align: center;
}

.contact form .input-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact form .input-box input,
.contact form textarea {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  color: var(--gray-text-color);
  border: 1px solid var(--gray-color-2);
  margin: 7px 0;
}

.contact form .input-box input {
  width: 100%;
}

.contact form textarea {
  resize: none;
}

.contact-button {
  margin-top: 20px;
}

/* Footer */
.footer {
  background-color: var(--primary-accent);
  color: var(--gray-color-3);
}

.footer-row {
  display: flex;
  flex-direction: column;
  column-gap: 20px;
  align-items: center;
  padding: 40px 0;
}

.footer-social {
  margin-top: 0;
}

.footer-social a:hover {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg)
    brightness(102%) contrast(102%);
}

.footer-copyright {
  font-size: clamp(0.75rem, 0.679rem + 0.36vw, 1rem);
}

.response {
  position: fixed;
  display: inline-block;
  background-color: var(--primary-accent);
  color: var(--white-color);
  border: 1px solid var(--white-color);
  min-width: 280px;
  padding: 20px 40px;
  bottom: -100px;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
  z-index: 5;
}

.response.open {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}

/* "go to top" button */
.goToTop {
  z-index: 599;
  position: fixed;
  width: 40px;
  height: 40px;
  background-color: var(--gray-color);
  top: auto;
  left: auto;
  right: 30px;
  bottom: 30px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  border-radius: 2px;
  transition: opacity 350ms, visibility 350ms;
}

.goToTop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  filter: invert(4%) sepia(23%) saturate(2306%) hue-rotate(148deg)
    brightness(91%) contrast(90%);
}

.goToTop img {
  height: 16px;
  width: 16px;
}

.goToTop:hover {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg)
    brightness(102%) contrast(102%);
}

.goToTop.reveal {
  display: block;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
}

/* Preloader with jumping dots */
#preloader {
  position: fixed;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  background: var(--color-preloader-bg);
  z-index: 3000;
  height: 100vh;
  width: 100vw;
  opacity: 1;
  overflow: hidden;
  transition: opacity 0.5s ease-out;
}

.jumping-dots {
  position: relative;
  width: 6px;
  height: 6px;
  padding: 0;
  display: inline-block;
}

.jumping-dots > div {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--color-dots);
  border-radius: 50%;
}

.jumping-dots > div:nth-of-type(1) {
  left: 20px;
}

.jumping-dots > div:nth-of-type(3) {
  left: -20px;
}

.jumping-dots > div {
  animation: jumping-dots 1.2s infinite ease;
  animation-delay: 0.2s;
}

.jumping-dots > div:nth-of-type(1) {
  animation-delay: 0.4s;
}

.jumping-dots > div:nth-of-type(3) {
  animation-delay: 0s;
}

.talks {
  padding: 5rem 0;
  background-color: var(--white-color);
}

.talks-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 10px; /* Adjust the margin as needed */
}

.event-name, .event-month-year, .event-localization, .event-type, .event-description, .event-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 20px; /* Adjust the margin as needed */
}


.event-name h5, .event-month-year h5, .event-localization h5, .event-type h5, .event-description h5 {
  margin-bottom: 5px; /* Adjust the margin as needed */
}

.link-icon {
  display: inline-flex;
  align-items: center;
  margin-bottom: 5px; /* Adjust the margin as needed */
}

.tab-space {
  padding-left: 40px; /* Adjust the padding value as needed */
}

.tab-100px {
  padding-left: 100px; /* Add 100px padding to the first column */
}

.bold {
  font-weight: bold;
}
@keyframes jumping-dots {
  0% {
    top: 0;
  }

  40% {
    top: -6px;
  }

  80% {
    top: 0;
  }
}

/* Skills Section Styles */

.skills {
  position: relative;
  padding: 7rem 0;
  background-color: var(--white-color);
}


/* .skills-container {
  max-width: 100%;
  margin: 0 auto;
} */

.skills-subtitle {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.skills-tabs {
  margin-top: 2rem;
}

.about-skills {
  background-color: var(--gray-color);
  border-radius: 16px;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.about-projects {
  background-color: var(--white-color);
  border-radius: 16px;
  padding: 3rem;
  max-width: 1200px;
  margin: 60px auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.about-talks {
  background-color: var(--gray-color);
  border-radius: 16px;
  padding: 2rem;
  max-width: 1200px;
  margin: 60px auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.tabs-nav {
  display: flex;
  justify-content: center;
  background: var(--color-light-bg);
  border-radius: 8px;
  padding: 6px;
  margin-bottom: 2rem;
  gap: 8px;
}

.tab-button {
  background:  var(--color-white);
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 22px;
  border-radius: 6px;
  transition: all 0.3s ease;
  min-width: 160px;
  text-align: center;
}

.tab-button:hover:not(.active) {
  background: rgba(255,255,255,0.2);
}


.tab-button.active {
  background: var(--white-color);
  color: var(--color-text);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.skills-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 160px));
  gap: 24px;
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
}
.skill-card {
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 160px;
  height: 160px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
}

.skill-card a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.skill-card img {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
}

.skill-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.skill-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.skill-description {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background-color: rgba(30, 37, 48, 0.9);
  color: #fff;
  font-size: 0.75rem;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.skill-card:hover .skill-description {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
  .skills-cards {
    flex-direction: column;
  }
}



/* Talks Section Styles */

.talks {
  position: relative;
  padding: 7rem 0;
  background-color: var(--white-color);
}


/* .talks-container {
  max-width: 100%;
  margin: 0 auto;
} */

.talks-subtitle {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.talks-tabs {
  margin-top: 2rem;
}

.talks-title,
.talks-percent {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  /* text-transform: uppercase; */
  letter-spacing: 0px;
}

.talks-percent {
  float: right;
}
.talks-bar__progress {
  background-color: var(--gray-color);
  border-radius: 5px;
  height: 4px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.talks-bar__fill {
  background-color: var(--secondary-accent);
  height: 4px;
  width: 0; /* Initial width is 0 */
  transition: width 1.5s ease-in-out; /* Smooth transition for the fill */
}



.talks-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap; /* Forces everything into one row */
  gap: 20px;         /* Adds space between the cards */
  overflow-x: auto;  /* Allows scrolling if content is wider than screen */
  padding: 10px 0;
  justify-content: center; /* Centers cards if they don't fill the width */
}

.talk-card img {
  width: 120%;    /* Makes image responsive to card width */
  height: auto;   /* Maintains aspect ratio */
  object-fit: contain;
}


.talk-card {
  /* This is the magic line */
  flex: 1 1 300px; 
  
  /* Ensures images don't break the card width */
  max-width: 450px; 
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center items vertically */
  align-items: center; /* Center items horizontally */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center; /* Center text content */
}

.talk-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  display: block;
  margin-bottom: 15px;
  width: 100%;
}

.talk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.talk-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.talk-description {
  color: var(--main-text-color);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center; /* Ensure text is centered */
  margin-top: 20px; /* Add some space between image and text */
  width: 100%; /* Use full width of the card */
}

@media (max-width: 1200px) {
  .talk-cards {
    flex-direction: column;
  }
}


/* Styling for Talks tabs, similar to Skills tabs */
.tabs-nav-2 {
  display: flex;
  justify-content: center;
  background: var(--color-light-bg);
  border-radius: 8px;
  padding: 6px;
  margin-bottom: 2rem;
  gap: 8px;
}

.tabs-nav-2 .tab-button {
  background: var(--color-white);
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 22px;
  border-radius: 6px;
  transition: all 0.3s ease;
  min-width: 160px;
  text-align: center;
}

.tabs-nav-2 .tab-button.active {
  background: var(--white-color);
  color: var(--color-text);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  
}


.tabs-nav-2 .tab-button:hover:not(.active) {
  background: rgba(255,255,255,0.2);
}
