/* 
---------- 01 TYPOGRAPHY SYSTEM
-Font sizes (px):
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

---------- 02 WHITE SPACE
Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

 */

/* GLOBAL RESET */
:root {
  --primary-color: #371f6e;
  --secondary-color: #512da8;
  --accent-color: #e040fb;
  --accent-color-dark: #;
  --text-color-primary: #1a1a1a;
  --text-color-secondary: #4d4d4d;
  --text-color-tertiary: #777777;
  --text-color-light: #ffffff;
  --background-light: #e1e1e1;
  --font-size: 1.8rem;
}

.test-section .box {
  width: 5rem;
  height: 5rem;
  background-color: green;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* background-color: rgba(127, 238, 255, 0.1); */
}

html {
  /* 9px / 16px * 100 */
  font-size: 56%;
  scroll-behavior: smooth;
}

/* DEFAULT SETTING */
body {
  font-family: 'Lato', sans-serif;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-color-primary);
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.1em;
  word-wrap: normal;
  overflow: hidden;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  word-wrap: normal;
  text-align: center;
  width: fit-content;
  letter-spacing: 0.1em;
}

h3 {
  font-size: 2.2rem;
  font-weight: 600;
  word-wrap: normal;
  text-align: center;
  letter-spacing: 0.1em;
}

h5 {
  text-align: center;
  letter-spacing: 0.1em;
}

p {
  line-height: 1.6;
  font-size: var(--font-size);
  color: var(--text-color-tertiary);
  text-align: center;
}

ul {
  list-style: none;
  display: flex;
}

a {
  text-decoration: none;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--text-color-primary);
}

a.btn--styled:hover {
  color: #ffffff;
}

button {
  border: none;
  width: fit-content;
  height: fit-content;
  letter-spacing: 0.1rem;
  cursor: pointer;
  background-color: transparent;
}

section:not(.info) {
  padding-top: 12rem;
}

.site-footer {
  margin-top: 12rem;
}

section > .container,
footer .container {
  margin: 0 1.6rem;
  background-color: var(--text-color-light);
}

section .container header {
  padding-bottom: 6.4rem;
}

input,
button,
select,
textarea {
  outline: none;
}

label {
  display: inline-block;
  cursor: default;
}

.btn {
  width: max-content;
  padding: 3rem 6rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  font-size: 1.8rem;
  background-color: var(--accent-color);
  color: var(--text-color-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.heading-box {
  display: flex;
  justify-content: center;
}

.heading-box .box {
  overflow: hidden;
}

.btn-wrapper {
  margin-top: 4.2rem;
}

.btn {
  padding: 15px 40px;
  font-weight: 600;
  background-color: var(--accent-color);
  color: var(--text-color-darker);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--accent-color-dark);
  color: var(--text-color-light);
}

.btn--styled {
  width: 28rem;
  height: 7rem;
  display: flex;
  align-items: center;
  background-color: var(--text-color-primary);
  color: var(--text-color-light);
  z-index: 1;
}

.btn--styled span {
  width: 7rem;
  height: 100%;
  padding: 0 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn--styled span.text {
  width: 100%;
  position: relative;
  font-family: 'Lato', sans-serif;
}

.btn--styled span.icon {
  position: relative;
}

.btn--styled span.icon img {
  width: 2.4rem;
}

.btn--styled span.text::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn--styled:hover span.text::before {
  opacity: 1;
}

.btn--styled:hover span.icon .highlight {
  opacity: 0;
}

.btn--styled.next:hover span.icon img,
.btn--styled:hover span.icon img {
  animation: slideWubbleArrowRight 0.3s ease-in-out 0.1s;
}

.btn--styled.prev:hover span.icon img {
  animation: slideWubbleArrowLeft 0.3s ease-in-out 0.1s;
}

.btn--styled span.icon .highlight {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.btn--styled.transparent {
  background-color: transparent;
  border: var(--text-color-light) 1px solid;
  border-right: none;
  transition: background-color 0.3s ease;
}

/* .btn--styled.transparent:hover {
  background-color: var(--accent-color);
  border: none;
} */

.btn--styled.transparent > span {
  border-right: var(--text-color-light) 1px solid;
}

/* .btn--styled.transparent:hover > span {
  border: none;
} */

@keyframes beat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@keyframes slideWubbleArrowLeft {
  0% {
    transform: translateX(3%);
  }
  50% {
    transform: translateX(-25%);
  }
  51% {
    transform: translateX(8%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideWubbleArrowRight {
  0% {
    transform: translateX(-3%);
  }
  50% {
    transform: translateX(25%);
  }
  51% {
    transform: translateX(-8%);
  }
  100% {
    transform: translateX(0);
  }
}

.header-imgs {
  position: relative;
  display: flex;
  flex-direction: row;
  height: 20rem; /* Increased from 16rem for better visibility */
  overflow: hidden;
}
.header-imgs .thm-breadcrumb {
  display: flex;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  color: #ffffff;
  z-index: 1;
}
.header-imgs .thm-breadcrumb .active {
  color: var(--accent-color);
}
.header-imgs .thm-breadcrumb li {
  margin: 0 0.8rem;
}
.header-imgs .thm-breadcrumb li a {
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}
.header-imgs .thm-breadcrumb li a:hover {
  color: var(--accent-color);
}
.header-imgs .heading-secondary {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.6rem;
  color: #ffffff;
  margin-top: 2.4rem;
  z-index: 1;
}
.header-imgs .header-img-box {
  width: 100%;
  height: 100%;
}
.header-imgs .header-img-box .header-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-image: url('/img/background/header/banner.jpg'); /* Your image */
  width: 100%;
  background-size: 150%; /* Increased for more visible movement */
  background-position: 100% 0; /* Start at top-right */
  background-repeat: no-repeat;
}
.header-imgs .header-img-box .header-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0, 0, 0, 0.7);
  z-index: 0;
}

.accordion {
  display: flex;
  flex-direction: column;
  background-color: white;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid rgba(119, 119, 119, 0.3);
}

.accordion-header {
  position: relative;
  background-color: var(--text-color-primary);
  color: var(--text-color-light);
  padding: 1.6rem;
  cursor: pointer;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  transition: background-color 0.3s;
}

.accordion-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.accordion-header:hover::before {
  opacity: 1;
}

.accordion-content {
  display: none;
  padding: 0 1.6rem;
  background-color: var(--text-color-light);
}

.accordion-content p {
  margin: 1.6rem 0;
  line-height: 1.6;
}

.accordion-icon {
  transition: transform 0.3s;
}

.accordion-icon.open {
  transform: rotate(45deg);
}

.accordion-icon svg path {
  transition: fill 0.3s;
}

.accordion-icon.open svg path {
  fill: var(--accent-color);
}

.accordion-icon ~ .title {
  transition: color 0.3s;
}

.accordion-icon.open ~ .title {
  color: var(--accent-color);
}

.social-list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  margin-top: 1.6rem;
}

.social-list li svg path {
  transition: fill 0.3s ease;
}

.social-list li:hover svg path {
  fill: var(--accent-color);
}

/* img.active-slide {
  filter: brightness(1.2);
} */

/******************************************************** LANDING PAGE *********************************************************/
/* LANDING PAGE - HERO */

.site-header {
  position: relative;
  overflow: hidden;
  margin-top: 7.2rem;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.6rem;
  padding-right: 0;
  background-color: var(--text-color-light);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  width: 100%;
  height: 7.2rem;
  z-index: 999;
}

.main-menu-open .nav {
  overflow: visible;
}

.nav .grunge-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.nav .grunge-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.sticky-nav {
  position: fixed;
  top: 0;
}

.logo-box {
  display: flex;
  gap: 2.4rem;
}

.logo-mark {
  width: 10rem;
}

.toggler-box.main-menu {
  align-items: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 2;
}

.toggler-box.main-menu .menu__open.main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggler-box.main-menu .menu__open.main-menu svg.beat {
  animation: beat 0.5s ease;
  animation-iteration-count: 3;
}

.menu__open.main-menu #group-open-btn .cc {
  transition: all 0.3s ease-in-out;
}

.menu__open.main-menu #group-open-btn .ss,
.menu__open.main-menu #group-open-btn .ee,
.menu__open.main-menu #group-open-btn .ww,
.menu__open.main-menu #group-open-btn .nn {
  transition: all 0.5s ease-in-out;
}

.main-menu-open .menu__open.main-menu #group-open-btn .cc {
  fill: transparent;
}

.main-menu-open .menu__open.main-menu #group-open-btn .ss {
  transform: scale(0.75) translate(27px, 47px);
}

.main-menu-open .menu__open.main-menu #group-open-btn .ee {
  transform: scale(0.75) translate(47px, 47px);
}

.main-menu-open .menu__open.main-menu #group-open-btn .nn {
  transform: scale(0.75) translate(47px, 27px);
}

.main-menu-open .menu__open.main-menu #group-open-btn .ww {
  transform: scale(0.75) translate(27px, 27px);
}

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

.menu-box {
  width: 100%;
}

.menu-box .nav__menu.main-menu {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  height: 100vh;
  width: 320px;
  background-color: var(--text-color-light);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  transform: translateX(-100%);
  transition: all 0.5s ease-in-out;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  pointer-events: auto;
  margin-top: 64.5px;
  padding-top: 6.4rem;
}

.menu-box .nav__menu.main-menu .menu-item {
  width: 100%;
}

.menu-box .nav__menu.main-menu .menu-item .menu-item__link {
  text-decoration: none;
  color: var(--text-color-primary);
  font-weight: 500;
  padding: 2.4rem;
  display: inline-block;
  width: 100%;
}

.menu-box .nav__menu.main-menu .menu-item .menu-item__link:hover {
  color: var(--accent-color);
}

.nav__menu.main-menu img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  display: none;
}

.nav__contact-menu {
  display: block;
  margin-left: auto;
  position: absolute;
  top: 7.2rem;
  right: 0;
  width: max-content;
  padding: 3.2rem;
  background: var(--text-color-light);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
}

.main-menu-open .menu-box .main-menu,
.contact-menu-open .nav__contact-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.menu__open.contact #group-open-btn .nn,
.menu__open.contact #group-open-btn .cc,
.menu__open.contact #group-open-btn .ss {
  transition: transform 0.5s ease;
  transform-origin: center; /* Scales around the center of each path's bounding box */
}

.contact-menu-open .menu__open.contact #group-open-btn .nn,
.contact-menu-open .menu__open.contact #group-open-btn .cc,
.contact-menu-open .menu__open.contact #group-open-btn .ss {
  scale: 0.8;
}

.contact-menu-open .menu__open.contact #group-open-btn .nn {
  transform: translateY(-80%);
}

.contact-menu-open .menu__open.contact #group-open-btn .ss {
  transform: translateY(80%);
}

.nav__contact-menu::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
}

.contact-menu {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.2rem;
  width: auto;
}

.contact-item div {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 1.2rem;
}

.contact-item div img {
  width: 2.4rem;
  height: 2.4rem;
}

.toggler-box.contact {
  margin-left: auto;
}

.menu__open.contact {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  display: flex; /* Use flexbox to allow children to dictate height */
  flex-direction: column; /* Stack children vertically */
  position: relative;
}

.swiper-hero {
  /* height: 80vh; */
  width: 100%;
}

.hero__items {
  display: flex; /* Use flexbox for proper alignment */
  /* flex-direction: row-reverse; */
  /* justify-content: flex-end; */
  height: auto; /* Allow height to adjust based on content */
  /* overflow: visible; */
}

.hero__item {
  position: relative; /* Change to relative for normal flow */
  height: auto; /* Allow height to adjust based on content */
  width: 100%;
}

.hero__item .hero__img {
  display: flex;
  position: relative;
  height: 50vh; /* Set a constant height for the hero image */
  overflow: hidden; /* Hide any overflow */
  width: 100%; /* Ensure the container takes full width */
}

.hero__item .hero__img img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  max-height: 100%; /* Ensure the image does not exceed the container height */
  object-fit: cover; /* Cover the container while maintaining aspect ratio */
  object-position: top; /* Position the image from the top */
}

.hero__item .hero__content {
  position: absolute;
  inset: 0;
  min-width: 20rem;
  padding: 0 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.4);
  overflow: hidden;
}

.hero__item .hero__content-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

.hero__item .hero__content-box .box {
  overflow: hidden;
}

.hero__item .hero__content > img {
  position: absolute;
  inset: 0;
  top: 0; /* To adjust the image up a bit.*/
  height: 100%;
  display: none;
}

.hero__item .hero__content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 350;
  color: var(--text-color-primary);
  line-height: 3rem;
  text-align: center;
  width: 256px;
}

.hero__nav {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 15rem;
  height: 8rem;
  overflow: hidden;
  z-index: 2;
  display: none;
}

.hero__nav img {
  height: 100%;
  object-fit: cover;
}

.hero-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8rem;
  position: relative;
  overflow: hidden;
}

.hero-footer img {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.swiper-pagination-hero {
  position: unset;
  display: flex;
  gap: 2.4rem;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-hero .swiper-pagination-bullet {
  color: transparent;
  background: transparent;
  opacity: 1;
  width: max-content;
  height: max-content;
  cursor: pointer;
  margin: 0;
}

/* Static base circle with var(--text-color-tertiary) stroke */
.swiper-pagination-hero .swiper-pagination-bullet .circle-big {
  fill: transparent;
  stroke: var(--text-color-tertiary);
  stroke-dasharray: 87.9645943;
  stroke-dashoffset: 0; /* Fully visible stroke */
}

/* Overlay circle for animated var(--primary-color) stroke */
.swiper-pagination-hero .swiper-pagination-bullet .circle-big-overlay {
  fill: transparent;
  stroke: var(--primary-color);
  stroke-dasharray: 87.9645943;
  stroke-dashoffset: 87.9645943;
  animation: reverse-circle-path 0.5s ease-out;
}

/* Small circle default state */
.swiper-pagination-hero .swiper-pagination-bullet .circle-small {
  fill: transparent;
  fill-opacity: 0;
  transition:
    fill 0.5s ease-out,
    fill-opacity 0.5s ease-out; /* Specific transitions for clarity */
}

/* Small circle fill on active */
.swiper-pagination-hero .swiper-pagination-bullet-active .circle-small {
  fill: var(--primary-color);
  fill-opacity: 1;
}

/* Animate overlay circle on hover/active */
.swiper-pagination-hero .swiper-pagination-bullet svg:hover .circle-big-overlay,
.swiper-pagination-hero .swiper-pagination-bullet-active .circle-big-overlay {
  animation: draw-circle-path 0.5s ease-out forwards;
}

/* Keyframes for drawing the circle */
@keyframes draw-circle-path {
  from {
    stroke-dashoffset: 87.9645943;
  }
  to {
    stroke-dashoffset: 0; /* Draw the circle fully */
  }
}

/* Keyframes for reversing the circle animation */
@keyframes reverse-circle-path {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 87.9645943;
  }
}

.nav-buttons {
  display: none;
  gap: 1.4rem;
}

.nav-button__btn div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  border-radius: 50%;
  border: #1a1a1a 0.7px solid;
  transition: border 0.3s ease;
  cursor: pointer;
}

.nav-button__btn div:hover {
  border: var(--accent-color) 0.7px solid;
}

.nav-button__btn div:hover .icon path {
  fill: var(--accent-color);
  transition: fill 0.3s ease;
}

/* LANDING PAGE - SERVICES SECTION */

.services-section .container {
  margin: 0;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background-color: var(--text-color-tertiary);
}

.services .box {
  display: flex;
  background-color: var(--text-color-light);
}

.services .box:nth-child(1) {
  padding-top: 0;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
  padding: 4.8rem;
  background-color: var(--text-color-light);
  transition: box-shadow 0.3s ease;
}

/* .service:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
} */

.service .icon {
  padding: 1.4rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  width: fit-content;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service h3 a {
  color: var(--text-color-primary);
  line-height: 1.4;
}

.service h3 a:hover {
  color: var(--accent-color);
}

.service p {
  margin: 0 2.4rem;
}

/* LANDING PAGE - ABOUT SECTION */

.about-section .container {
  margin: 0;
}

.about-section__info {
  position: relative;
  overflow: hidden;
}

.about-section__info .img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-bg {
  display: flex;
  z-index: 1;
}

.about-img-bg img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.about-content-box {
  display: flex;
  flex-direction: column-reverse;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6.4rem 4rem;
  padding-bottom: 0;
}

.about-content .content-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6.4rem;
  height: 32rem;
}

.about-content .img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about-content .about-us-lg {
  display: none;
}

.about-content .about-us-sm {
  display: block;
}

.about-section .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  overflow: hidden;
}

.about-section .about-content header {
  padding: 0;
}

.about-content header,
.about-content p,
.about-content button {
  z-index: 1;
}

.about-content p {
  color: var(--text-color-tertiary);
  font-size: 1.8rem;
  min-width: 280px;
}

.about-content section.mission-info p,
.about-content section.vision-info p {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
}

.about-section__controls {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.about-section__controls .link,
.about-section__controls .btn {
  position: relative;
  width: 100%;
  min-height: 7rem;
  color: var(--text-color-light);
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  background-color: var(--text-color-primary);
  transition: background-color 0.3s ease;
}

.about-section__controls .btn:hover,
.about-section__controls .btn.highlight {
  background-color: rgba(26, 26, 26, 0.95);
}

.about-section__controls .btn.highlight::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 10rem;
  height: 0.5rem;
  background-color: var(--accent-color);
}

.about-content button .icon img {
  width: 2.4rem;
}

/* LANDING PAGE - WHY US SECTION */

.why-us-section .container {
  margin: 6.4rem 0;
}

.why-us-section header {
  /* position: absolute;
  top: 6rem;
  left: 0; */
  display: flex;
  align-items: center;
  /* justify-content: center; */
  /* margin-left: 1.6rem; */
}

/* .swiper-why-us .swiper-wrapper {
  padding-top: 12rem;
} */

.swiper-why-us .swiper-pagination-why-us {
  position: absolute;
  top: 6.5rem;
  left: unset;
  right: 0;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: fit-content;
  transform: translateY(33%);
  margin-right: 1.6rem;
}

.why-us-section .swiper-pagination-why-us .swiper-pagination-bullet {
  color: transparent;
  background: transparent;
  opacity: 1;
  width: max-content;
  height: max-content;
  cursor: pointer;
  margin: 0;
}

.swiper-pagination-why-us .swiper-pagination-bullet button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  cursor: pointer;
  background-color: var(--text-color-tertiary);
}

.swiper-pagination-why-us .swiper-pagination-bullet-active button {
  background-color: var(--accent-color);
}

.swiper-pagination-why-us .swiper-pagination-bullet button .small-box {
  width: 50%;
  height: 50%;
  background-color: var(--accent-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.swiper-pagination-why-us .swiper-pagination-bullet button:hover .small-box {
  opacity: 1;
}

.why-us-section .container {
  margin-left: 0;
  margin-right: 0;
}

.why-us-section .swiper-why-us {
  padding: 0 1.6rem;
  padding-bottom: 1.6rem;
}

.why-us-section .swiper-slide {
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.why-us-section .swiper-slide .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 24rem;
  left: 80%;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background-color: var(--accent-color);
  transform: translate(-20%, -100%);
  z-index: 1;
  transition: left 0.3s ease;
}

.why-us-section .swiper-slide .circle .number {
  font-size: 3.2rem;
  color: var(--text-color-light);
}

.why-us-section .img {
  height: auto; /* Change from fixed height to auto */
  max-height: 26rem; /* Set a maximum height */
  width: 100%; /* Set width to 100% to fill the container */
  /* clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%); */
  clip-path: polygon(0% 0%, 100% 0, 100% 100%, 85% 80%, 0% 100%);

  transition: clip-path 0.3s ease;
}

.why-us-section .img img {
  height: auto; /* Set to auto to maintain aspect ratio */
  width: 100%; /* Set width to 100% to fill the container */
  max-width: 100%; /* Prevent overflow */
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.why-us-section .swiper-slide:hover .img {
  /* clip-path: polygon(0 0, 100% 0, 100% 80%, 0 80%); */
  clip-path: polygon(0% 0%, 100% 0, 100% 90%, 80% 90%, 0 90%);
}

.why-us-section .swiper-slide:hover .circle {
  left: 50%;
  transform: translate(-50%, -60%);
}

.why-us-section .swiper-slide:hover .img img {
  transform: scale(1);
}

.why-us-section .content {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: start;
  padding: 3.2rem;
  padding-top: 2rem;
}

.why-us-section .content h3,
.why-us-section .content p {
  text-align: left;
}

/* LANDING PAGE - CLIENTS SECTION */

.get-in-touch-section .container {
  margin: 0;
}

.get-in-touch-section .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #4a5568;
  overflow: hidden;
}

.get-in-touch-section .content .bg-box {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.get-in-touch-section .content .get-in-touch-bg {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.get-in-touch-section .box {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 2.5vw, 3.2rem);
  align-items: center;
  justify-content: center;
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
}

.get-in-touch-section h3 {
  color: var(--text-color-light);
  font-size: clamp(2rem, 5vw, 3rem);
}

.btn--styled.transparent {
  background: transparent;
  border: 2px solid var(--text-color-light);
  padding: 1rem 2rem;
  color: var(--text-color-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--styled.transparent:hover {
  background: var(--text-color-light);
  color: #4a5568;
}

@media (max-width: 768px) {
  .get-in-touch-section h3 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }
}

/* LANDING PAGE - PROJECTS SECTION */

.projects-section .projects {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.prjects-section .project {
  width: 100%;
}

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

.project img {
  width: 100%;
}

.project .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
}

.project .overlay h3 a {
  color: var(--text-color-primary);
  transition: color 0.3s ease;
}

.project .overlay h3 a:hover {
  color: #e040fb;
}

.project .overlay .category {
  padding: 1.8rem;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  font-size: 1.4rem;
}

/* LANDING PAGE - CONTACT SECTION */

/******************************************************** FOOTER ********************************************************/
.site-footer {
  background-color: var(--text-color-primary);
}

.site-footer a {
  display: block;
  color: var(--text-color-light);
  padding: 2.4rem 0.8rem;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--accent-color);
}

.footer-body {
  color: var(--text-color-light);
}

.footer-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5px;
  background-color: var(--text-color-secondary);
}

.footer-group {
  display: flex;
  flex-direction: column;
  gap: 0.5px;
  background-color: var(--text-color-secondary);
}

.footer-group dt,
.footer-group dd {
  background-color: var(--text-color-primary);
  padding: 2.4rem;
}

.footer-group dt {
  text-align: center;
  font-weight: 600;
  padding-top: 8rem;
}

.footer-group dt.description-links-title {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

.footer-group dd.description-links {
  padding: 0;
}

.footer-group dd .links,
.footer-group dd .contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 300;
}

.footer-group dd .contact-info {
  gap: 2.4rem;
}

.footer-group dd .contact-info li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-group dd .link {
  width: 100%;
}

.site-footer .btn--styled {
  border: var(--accent-color) 1px solid;
}

.site-footer .btn--styled {
  width: fit-content;
  display: flex;
  align-items: center;
  background-color: var(--text-color-primary);
  color: var(--text-color-light);
  z-index: 1;
  padding: 0;
}

.footer-box aside.map {
  border-top: var(--text-color-secondary) 0.5px solid;
  padding-top: 2.4rem;
  background-color: var(--text-color-primary);
  width: 100%;
}

.footer-box aside.map iframe {
  width: 100%;
}

.footer-bottom {
  padding: 3.2rem 0;
  background-color: black;
}

.footer-bottom .container {
  background-color: black;
}

.footer-bottom p {
  color: var(--secondary-color);
}

.footer-bottom a {
  display: unset;
  color: var(--secondary-color);
}

.any-page .about-section__controls {
  background-color: unset;
  align-items: center;
  gap: 3.2rem;
  width: 100%;
}

.any-page .about-section__controls h2 {
  z-index: 1;
  letter-spacing: 0.5rem;
  font-weight: 600;
}

.any-page .about-section__controls .btn-container {
  display: flex;
  width: 100%;
  gap: 2.4rem;
}

.any-page .about-section__controls .btn-container .link,
.any-page .about-section__controls .btn-container .btn {
  background-color: unset;
  color: var(--text-color-primary);
  box-shadow: inset 0 -1px 0 0 var(--background-light);
  flex: 1;
  padding: 0;
  text-align: left;
}

.any-page .about-section__controls .btn-container .link::before,
.any-page .about-section__controls .btn-container .btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(0);
  width: 0;
  height: 0.4rem;
  background-color: var(--accent-color);
  transition: width 0.3s ease-out;
  z-index: 1;
}

.any-page .about-section__controls .btn-container .link:hover::before,
.any-page .about-section__controls .btn-container .btn:hover::before {
  width: 100%;
}

.any-page .about-section__controls .btn-container .link.highlight::before,
.any-page .about-section__controls .btn-container .btn.highlight::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8rem;
  height: 0.4rem;
  background-color: var(--accent-color);
  transform: translateX(0);
  z-index: 1;
}

/******************************************************** ABOUT PAGE ********************************************************/
#aboutPage .about-section .container {
  padding: 0 1.6rem;
}

#aboutPage .about-section__info {
  height: auto;
}

#aboutPage .content-box {
  width: 100%;
  height: 100%;
  padding-bottom: 0;
}

#aboutPage .about-content {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

#aboutPage .about-section .info {
  width: 100%;
  height: auto;
}

#aboutPage .content-box .illustration {
  width: 100%;
  height: auto;
}

#aboutPage .content-box .illustration img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

#aboutPage .btn--styled {
  margin-top: 3.2rem;
}

#aboutPage .team-section .container {
  margin: 0 auto;
}

#aboutPage .team-section h2 {
  padding: 0 1.6rem;
  text-align: center;
  width: 100%;
  margin-bottom: 4.8rem;
}

#aboutPage .team-list {
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
}

#aboutPage .team-member {
  padding: 1.6rem;
  padding-bottom: 2.4rem;
  width: fit-content;
}

#aboutPage .team-member img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

#aboutPage .team-modern-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.4rem;
}

/******************************************************** CONTACT PAGE ********************************************************/
#contactPage .container:not(.site-footer .container) {
  display: flex;
  flex-direction: column;
}

.contact-form {
  margin-top: 6rem;
}

.contact-form .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-form .row .col {
  margin-bottom: 2.4rem;
  width: 100%;
}

.form-wrap {
  position: relative;
}

/* Change background color for select options on hover */
select.form-input option:hover,
select.select option:hover {
  background-color: #e040fb;
  color: #fff;
}

.form-input {
  display: block;
  width: 100%;
  min-height: 6rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.6rem;
  letter-spacing: 0.075em;
  color: var(--text-color-secondary);
  padding: 1.6rem 2.4rem;
  border-radius: 0px;
  transition: 0.3s ease-in-out;
  border-width: 1px;
  border-style: solid;
  border-color: #e1e1e1;
}

.form-validation {
  position: absolute;
  right: 0.8rem;
  top: 0px;
  z-index: 11;
  margin-top: 2px;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.2rem;
  letter-spacing: 0px;
  color: rgb(245, 84, 63);
  transition: 0.3s;
}

.form-label {
  position: absolute;
  top: 3rem;
  left: 0px;
  right: 0px;
  color: #888888;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.6rem;
  letter-spacing: 0.075em;
  pointer-events: none;
  text-align: left;
  z-index: 9;
  will-change: transform;
  transform: translateY(-50%);
  transition: 0.25s;
}

textarea.form-input {
  height: 16rem;
  min-height: 6.4rem;
  max-height: 24rem;
  resize: vertical;
}

#contactPage .btn--styled {
  width: 100%;
}

#contactPage .left-column {
  margin-bottom: 6.4rem;
}

.any-page .right-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.any-page .right-column .list-group {
  display: flex;
  flex-direction: column;
}

.any-page .contact-info:not(.site-footer .contact-info) {
  width: 28rem;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.any-page .social-list li svg {
  width: 2rem;
  height: 2rem;
}

.any-page .right-column .info {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 0.8rem;
  width: 100%;
}

.any-page .right-column .info .icon {
  width: 2.4rem;
  height: 2.4rem;
}

/******************************************************** PROJECTS PAGE ********************************************************/
#projectsPage header {
  padding-top: 0;
}

/******************************************************** PROJECT PAGE ********************************************************/
.projects-section.page .project-box {
  display: flex;
  flex-direction: column-reverse;
  gap: 8rem;
}

.project-box .project-info-section {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.4rem;
}

.project-box .project-info-section .text h3 {
  margin-bottom: 3.2rem;
}

.project-box .project-info-section .text p {
  margin-bottom: 3.2rem;
}

.project-box .item-section {
  flex: 1.2;
}

.item-section .content {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  box-shadow: 0 0 0 0.05rem rgba(0, 0, 0, 0.2);
}

.content .imgs-area {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.imgs-area .main-display .screen {
  display: flex;
}

.imgs-area .main-display .screen img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.imgs-area .main-display .screen-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 3.2rem;
  height: 8rem;
  box-shadow: inset 0 -1px 0 rgba(119, 119, 119, 0.3);
}

.imgs-area .main-display .screen-footer .controls {
  display: flex;
}

.imgs-area .main-display .screen-footer .controls .btn--styled span {
  width: 100%;
}

.imgs-area .main-display .screen-footer p {
  margin-top: 0;
  color: var(--text-color-primary);
}

.imgs-area .main-display .screen-footer .controls button {
  height: 8rem;
  width: 8rem;
  padding: 0;
}

.imgs-area .imgs {
  display: flex;
}

.imgs-area .imgs .swiper-slide {
  display: flex;
  position: relative;
  border: #ffffff 2px solid;
  --pseudo-opacity: 0;
  width: 23%;
  cursor: pointer;
}

.imgs-area .imgs .swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--text-color-primary);
  opacity: var(--pseudo-opacity);
}

.imgs-area .imgs .swiper-slide img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.content .client-info ul {
  display: flex;
  flex-direction: column;
  border-top: 0.5px rgba(119, 119, 119, 0.3) solid;
}

.content .client-info ul li {
  display: flex;
  height: 8rem;
}

.content .client-info ul li .icon {
  width: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: rgba(119, 119, 119, 0.3) 0.5px solid;
  background-color: var(--text-color-primary);
}

.content .client-info ul li .icon svg path {
  fill: var(--text-color-light);
}

.content .client-info ul li .info {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 2.4rem;
  border: rgba(119, 119, 119, 0.3) 0.5px solid;
}

.content .client-info ul li .info p {
  margin-top: 0;
}

/******************************************************** SERVICES PAGE ********************************************************/
#servicesPage section .container header {
  padding-top: 0;
}

/******************************************************** SERVICE PAGE ********************************************************/
#servicePage .container:not(.site-footer .container) {
  display: flex;
  flex-direction: column;
}

#servicePage .service-box {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
  margin-bottom: 6.4rem;
}

#servicePage .single-service {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  margin-bottom: 6.4rem;
}

#servicePage h3 {
  margin-bottom: 3.2rem;
  line-height: 1.6;
}

#servicePage .contacts h3 {
  margin-bottom: 0;
}

#servicePage .single-service h3,
#servicePage .single-service p,
#servicePage .accordion p {
  text-align: left;
}

#servicePage .about-section__controls .btn-container {
  flex-wrap: wrap;
}

#servicePage .about-section__controls .btn-container .link {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  min-height: 3.2rem;
}

#servicePage .about-section__controls {
  gap: 0;
}

#servicePage .right-column {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}

#servicePage .contact-form {
  margin-top: 0;
}

#servicePage .founder-box {
  margin-bottom: 6.4rem;
}

#servicePage .founder-box img {
  width: 27rem;
  height: auto;
  object-fit: cover;
  margin-bottom: 2.4rem;
}

#servicePage .founder-box p {
  text-align: left;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.67;
  letter-spacing: 0.075em;
  font-style: italic;
  color: var(--text-color-primary);
}

#servicePage .founder-box .comment {
  margin-bottom: 1.6rem;
}

#servicePage .founder-box p span.position {
  color: var(--accent-color);
}

#servicePage .founder-box p span {
  font-weight: 600;
  font-style: normal;
}
