body {
  margin: 0;
  font-family: "montserrat", sans-serif;
  overflow-x: hidden;
}

.icon-arrow-left:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  font-size: 35px;
  background-image: url("/images/tan-arrow-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  vertical-align: middle;
}

.icon-arrow-right:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("/images/tan-arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  font-size: 35px;
  background-position: left;
}

.logo figure {
  margin: 0;
}

.slick-slide {
  height: auto !important;
}

h1,
h2,
h3 {
  font-family: "montserrat", sans-serif;
}

.container {
  max-width: 1660px;
  margin: 0 auto;
  padding: 0px 30px;
}

.header {
  padding: 20px 0;
  background-color: transparent;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9;
  max-width: 1660px;
  width: 100%;
}

.header.project-header {
  padding: 20px 0;
  background-color: #000;
  position: relative;
  z-index: 9;
  max-width: 1660px;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  padding: 0px 30px;
  margin: 0 auto;
  max-width: 1660px;
  justify-content: space-between;
}

.header img {
  width: 200px;
  height: auto;
  vertical-align: top;
}

.header a {
  color: #8fd1e6;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: black;
}

.hamburger {
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  transition: 0.3s ease;
  z-index: 9999;
}

/* animate hamburger to X */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* nav panel */
.nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 270px;
  height: 100%;
  background: #8fd1e6;
  padding: 80px 0px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.35s ease;
  z-index: 1001;
  align-items: center;
}

.nav-panel.open {
  right: 0;
  width: 100%;
  transition: right 0.35s ease;
}

.nav-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-panel li a {
  text-decoration: none;
  font-size: 24px;
  color: #000;
  line-height: 2;
  transition: 0.3s;
  font-weight: 600;
}

.nav-panel li a:hover {
  color: #000;
}

/* backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1000;
}

.nav-backdrop.show {
  opacity: 1;
  pointer-events: all;
}

.hero {
  position: relative;
}

.hero-section {
  position: absolute;
  inset: 0;
  margin: 0 auto;
  padding: 0 30px;
  z-index: 2;
  overflow: hidden; /* important */
}

/* rotated background layer */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/portfolio-hero.jpg");
  background-size: cover;
  background-position: center;
  transform-origin: center;
  width: 100%;
  height: 100%;
}

.hero img {
  min-height: 100vh;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  position: absolute;
}

.hero-txt {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  z-index: 200;
  width: 100%;
  text-align: left;
}

.hero-txt h1 {
  font-size: 60px;
  margin: 0px;
  color: #8fd1e6;
  line-height: 1.1;
}

.hero-txt h2 {
  color: #edbce4;
  margin: 0;
}

.hero-txt p {
  color: #d6b189;
  max-width: 700px;
}

@media (max-width: 980px) {
  .hero-txt p {
    max-width: 510px;
  }

  .hero-txt h1 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .hero-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vh;
    height: 100vw;
    background-size: cover;
    background-position: center;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

.hero-grid img {
  width: 100%;
  position: absolute;
}

.img-txt {
  position: relative;
  background-color: #000;
}

.img-txt-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px;
  align-items: center;
}

.module-content {
  max-width: 700px;
  font-size: 18px;
  padding: 20px;
}

/* .bg-slide-content {
  max-width: 700px;
  font-size: 18px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
}

.bg-slide-content h2 {
  color: #edbce4;
  text-align: center;
  margin: 0 auto;
} */

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: black;
  color: white;
  text-decoration: none;
}

.btn.blue {
  background-color: #7ecfe0;
  color: #000;
  font-weight: bold;
}

.solutions-carousel {
  background-color: #000;
  padding: 50px 0px;
}

.solutions-carousel .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  text-align: left;
  justify-content: flex-start;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0px 75px;
  text-align: center;
}

.content-solutions {
  max-width: 700px;
  text-align: center;
  margin: 0 auto 25px auto;
  color: #fff;
}

.content-solutions p {
  font-size: 14px;
}

.content-solutions h2 {
  color: #fff;
  font-size: 40px;
}

.sol__item {
  color: #fff;
  font-weight: 300;
  line-height: 1.625em;
  outline: 0 none;
  position: relative;
  overflow: hidden;
}

.solutions-carousel__slider .slide {
  padding: 10px;
}

.solutions-carousel__slider .sol__item:hover .overlay {
  opacity: 1;
}

.solutions-carousel .side .slick-prev {
  left: -40px;
}

.solutions-carousel .side .slick-next {
  right: -40px;
}

.solutions-carousel__slider aside {
  color: #8fd1e6;
}

.solutions-carousel .side .slick-arrow {
  position: absolute;
  top: auto;
  bottom: 50%;
  transform: translateY(-50%);
  font-size: 45px;
  line-height: 20px;
  cursor: pointer;
  z-index: 10;
}

.sol__item {
  text-decoration: none;
  color: inherit;
  display: block;
}

.solutions-carousel .side {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  position: relative;
}

.sol__item img {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background: #000;
  z-index: 1;
}

.solutions-carousel__slider .sol__item {
  display: block;
}

.solutions-carousel__slider img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  max-width: 450px;
}

.center-mod-content {
  background: rgba(0, 0, 0, 0.4);
  max-width: 765px;
  margin: 0 auto;
  padding: 20px 20px 30px 20px;
}

.solutions-carousel .side * {
  min-width: 0 !important;
  min-height: 0 !important;
}

.solutions-carousel .side .slick-slide {
  height: auto !important;
  margin: 0 1px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay img {
  width: 40px;
  height: 40px;
  background-color: transparent;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.dynamic-tabs {
  position: relative;
}
.dynamic-tabs__nav {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0;
  padding-left: 0px;
}
.dynamic-tabs__nav li {
  padding: 15px 30px;
  cursor: pointer;
  min-width: 250px;
  font-weight: 600;
  color: #000;
  border: 2px solid #000;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  list-style-type: none;
  font-size: 20px;
  border-bottom: none;
  text-align: center;
  display: inline-table;
}
.dynamic-tabs__nav li.active {
  background: #000;
  border: 2px solid #8fd1e6;
  border-bottom: none;
  color: #8fd1e6;
}
.dynamic-tabs__content {
  display: none;
}
.dynamic-tabs__content.active {
  display: block;
}
.dynamic-tabs__item {
  display: flex;
  row-gap: 5px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.dynamic-tabs__item h3 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 15px;
  max-width: 300px;
  text-align: center;
  letter-spacing: 0.03em;
}
.dynamic-tabs__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 3.5rem;
  text-align: center;
  justify-items: center;
  margin: 20px auto;
}
.dynamic-tabs__item img {
  max-height: 100px;
}
.dynamic-tabs__wrapper {
  max-width: 1460px;
  padding: 0px 30px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
.top-content {
  color: #000;
  background: #8fd1e6;
  padding-top: 75px;
}

.top-content h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.top-content-inner {
  max-width: 1460px;
  margin: 0 auto 20px auto;
  padding: 0px 30px;
}
.top-content-inner p {
  max-width: 750px;
  font-size: 20px;
  margin: 0;
}
.dynamic-tabs__contents {
  background-color: #000;
  color: #fff;
  display: flex;
  padding: 50px 0px;
  justify-content: center;
}
@media (max-width: 1079px) {
  .dynamic-tabs__item {
    flex-direction: column;
  }
  .dynamic-tabs__item h3 {
    text-align: center;
  }
}
@media (max-width: 850px) {
  .dynamic-tabs__items {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .dynamic-tabs__nav li {
    font-size: 16px;
  }
  .dynamic-tabs__nav li {
    min-width: 0;
  }
}
@media (max-width: 575px) {
  .dynamic-tabs__item h3 {
    font-size: 15px;
  }
  .dynamic-tabs__items {
    grid-template-columns: 1fr 1fr;
  }

  .top-content {
    padding-top: 20px;
  }
}

.txt-bg-img {
  position: relative;
}

/* .bg-slider {
  position: relative;
  overflow: hidden;
}

.bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.bg-slide.active {
  opacity: 1;
}

.bg-slider .container,
.bg-slider article {
  position: relative;
  z-index: 1;
}

.bg-slider {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 60px 0px;
  width: 100%;
}

.bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.bg-slide.active {
  opacity: 1;
}

.bg-slider,
.bg-slider article {
  color: #fff;
} */

.center-module {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(248, 215, 232, 1) 0%,
    rgba(232, 213, 240, 1) 50%,
    rgba(213, 232, 248, 1) 100%
  );
  text-align: center;
  margin: 0 auto;
  padding: 60px 20px 60px 20px;
  font-size: 16px;
}

.center-mod-content {
  background: #ffffff;
  border-radius: 24px;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 2.5rem 2.5rem 2rem;
  text-align: left;
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 0;
  overflow: hidden;
}

.center-mod-content::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / 4;
  background: linear-gradient(180deg, #7ecfe0, #d895c4);
  margin: -2.5rem 1.5rem -2.5rem -2rem;
}

.center-mod-header {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.center-mod-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7ecfe0, #d895c4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: white;
  flex-shrink: 0;
}

.center-mod-title .center-mod-label {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b07aad;
  font-weight: 500;
}

.center-mod-title h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  color: #2c2c2a;
  line-height: 1.2;
}

.center-module p {
  grid-column: 2;
  font-size: 15px;
  line-height: 1.8;
  color: #5f5e5a;
  margin: 0 0 1.5rem 0;
  max-width: 100%;
  text-align: left;
}

.center-mod-tags {
  grid-column: 2;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
}

.tag-green {
  background: #e8f7f4;
  color: #0f6e56;
}
.tag-pink {
  background: #fbeaf0;
  color: #993556;
}
.tag-blue {
  background: #e6f1fb;
  color: #185fa5;
}
.tag-purple {
  background: #eeedfe;
  color: #534ab7;
}

.center-module .container > *:last-child {
  margin-bottom: 0;
}

.site-footer {
  background: #000;
  color: #fff;
  border-top: 2px solid #8fd1e6;
  padding: 40px 20px 30px 20px;
  font-family: inherit;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #bbb;
  max-width: 500px;
  margin: 0 auto 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #8fd1e6;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-social a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #edbce4;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 14px;
  color: #888;
}

.footer-logo {
  text-align: center;
}

.footer-logo figure {
  width: 150px;
  margin: 0 auto;
}

.footer-logo img {
  width: 200px;
}

/* Mobile */
@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-social {
    flex-direction: column;
    gap: 10px;
  }
}

.cap-div {
  position: relative;
  overflow: hidden;
}

.capabilities-grid .container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.capabilities-grid h2 {
  color: #000;
  text-align: center;
  margin: 0;
  font-size: 40px;
  padding: 50px 0px;
}

.capabilities-grid {
  background-color: #edbce4;
  padding-bottom: 50px;
}

.grid-module {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid__item {
  position: relative;
  overflow: hidden;
}

.grid__item figure {
  margin: 0;
  max-width: 450px;
  width: 100%;
  height: 100%;
}

.grid__item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.grid__item aside {
  position: absolute;
  z-index: 3;
  font-size: 12px;
  background: linear-gradient(to top, #000 0%, transparent 100%);
  bottom: 0;
  height: 90px;
  left: 0;
  right: 0;
  padding: 40px 10px;
  transition: height 0.3s ease, padding 0.3s ease;
  text-align: center;
}
.grid__item aside h2 {
  margin: 0;
  position: relative;
  color: #8fd1e6;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  top: 50%;
  letter-spacing: 0.02em;
  transition: top 0.3s ease;
}

.grid__item:hover aside {
  height: 100%;
  padding-top: 50px;
}

.grid__item:hover aside h2 {
  top: 50%;
}

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

  .hero img {
    transform: rotate(90deg);
  }

  .hero-txt h1 {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .grid__item aside {
    height: auto;
    width: 100%;
  }
  .grid-module {
    grid-template-columns: 1fr;
  }
  .hr-line:after {
    width: 135px;
    left: auto;
    right: 0;
  }
}

/* dont edit under */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.animate {
  visibility: hidden;
}

:root {
  --animate-duration: 1.25s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*="Out"] {
    opacity: 0;
  }
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* ── Responsive Fixes ──────────────────────────────────────────
   Drop this AFTER your existing style.css link in the <head>.
   Only overrides what's broken — leaves everything else alone.
──────────────────────────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent any section from causing horizontal scroll */
section,
footer,
header {
  max-width: 100%;
  overflow-x: hidden;
}

/* ── HERO ───────────────────────────────────────────────────── */
/* The hero image was position:absolute which is fine, but the
   .hero itself had no height — browser couldn't contain it.
   Give .hero a defined height so it acts as the clipping parent. */
.hero {
  min-height: 100vh;
  overflow: hidden;
}

/* .hero-section was position:absolute but its parent (.hero)
   had no height, so it collapsed. Now that .hero has height it
   will position correctly. No other change needed. */

/* ── CAROUSEL ───────────────────────────────────────────────── */
/* The 75px padding on small screens pushed the container wider
   than the viewport. Scale it down on smaller screens. */
@media (max-width: 900px) {
  .solutions-carousel .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 600px) {
  .solutions-carousel .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* ── DYNAMIC TABS ───────────────────────────────────────────── */
/* Tab nav overflows on very small screens — allow wrapping */
@media (max-width: 575px) {
  .dynamic-tabs__nav {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .dynamic-tabs__nav li {
    min-width: 0;
    flex: 1 1 auto;
    font-size: 15px;
    padding: 10px 12px;
  }
}

/* ── HERO TEXT ─────────────────────────────────────────────── */
/* Scale down hero headline on small screens */
@media (max-width: 767px) {
  .hero-txt h1 {
    font-size: 42px;
  }

  .hero-txt h2 {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .hero-txt h1 {
    font-size: 32px;
  }

  .hero-txt {
    top: 40%;
  }

  .hero-txt p {
    font-size: 14px;
    max-width: 100%;
  }
}
