/* Process Section */
.process-section {
	padding-bottom: 120px;
}

.process-section__title {
	color: #000;
	text-align: center;
	font-feature-settings: 'dlig' on;
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -2px;
	margin-bottom: 50px;
	margin-top: 0px;
}

.process-section__layout {
	display: flex;
	gap: 30px;
	justify-content: space-between;
	position: relative;
}

.process-section__accordion {
	width: 554px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	z-index: 1;
}

.process-item {
	border-radius: 40px;
	background: #FFF;
	box-shadow: 8px 5px 25.4px 0 rgba(0, 0, 0, 0.10);
	transition: background-color 0.4s ease;
	overflow: hidden;
}

.process-item.is-active {
	background: #FFE174;
}

.process-item__header {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto auto;
	gap: 8px 20px;
	align-items: center;
	padding: 22px;
	border: none;
	background: transparent;
	cursor: pointer;
	text-align: left;
}

.process-item__num {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #FFF8C7;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	margin: 0;
	flex-shrink: 0;
	transition: background-color 0.4s ease;
	grid-column: 1 / -1;
	transition: all 0.4s ease;
}

.process-item.is-active .process-item__num {
	background: #FFF;
	font-size: 24px;
    width: 42px;
    height: 42px;
}

.process-item__title {
	color: #000;
	font-size: 18px;
	font-weight: 400;
	margin: 0;
	transition: all 0.4s ease;
	grid-column: 1;
}

.process-item.is-active .process-item__title {
	font-size: 20px;
	font-weight: 500;
}

.process-item__icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.4s ease;
	grid-column: 2;
}

.process-item.is-active .process-item__icon {
	transform: rotate(180deg);
}

.process-item__body {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s ease;
}

.process-item.is-active .process-item__body {
	grid-template-rows: 1fr;
}

.process-item__content {
	overflow: hidden;
	min-height: 0;
}

.process-item__content p {
  margin: 0;
  padding: 0px 22px 22px 22px;
  color: #494949;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.process-section__image-wrap {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: calc(100% - 554px - 30px);
	border-radius: 40px;
	overflow: hidden;
}

.process-section__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 22px;
}

/* Portfolio Section */
.portfolio-section {
	padding-bottom: 120px;
	position: relative;
	overflow: hidden;
}

.portfolio-section__title {
  color: #000;
  text-align: center;
  font-feature-settings: 'dlig' on;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -2px;
  max-width: 540px;
  margin: auto;
  margin-bottom: 6px;
}

.portfolio-section__subtitle {
  color: #494949;
  text-align: center;
  font-feature-settings: 'dlig' on;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  max-width: 880px;
  margin: 0 auto 40px auto;
}

/* Tabs Navigation */
.portfolio-tabs__nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 40px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 100px;
  background: #FFF;
  box-shadow: 0 4px 12.9px 0 rgba(0, 0, 0, 0.12);
}

.portfolio-tabs__btn {
  font-feature-settings: 'dlig' on;
  padding: 12px 8px;
  border-radius: 100px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  white-space: normal;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  color: #494949;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.portfolio-tabs__btn:hover {
	color: #000;
}

.portfolio-tabs__btn.is-active {
	background: #FFF8C7;
	color: #000;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
	padding: 12px 32px; /* Large padding only for the active tab */

}

/* Tab Contents */
.portfolio-tab {
	display: none;
}
.portfolio-tab.is-active {
	display: block;
}

/* Sliders Wrappers */
.portfolio-slider-wrapper {
	display: flex;
	gap: 40px;
	justify-content: space-between;
	align-items: stretch;
}

.portfolio-slider-wrap {
	flex: 1;
	min-width: 0;
	position: relative;
}

.portfolio-slider-thumbs-container {
	width: 176px;
	position: relative;
	flex-shrink: 0;
}

.portfolio-slider-thumbs {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Main Slide Styling */
.portfolio-slide {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: transparent;
}

.portfolio-slide__image-wrap {
	width: 100%;
	height: 500px;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 26px;
}

.portfolio-slide__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.portfolio-slide__card {
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  border-radius: 40px;
  background: #FFF;
}

.portfolio-slide__info {
	flex: 1;
}

.portfolio-slide__title {
  color: #000;
  font-feature-settings: 'dlig' on;
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -2px;
  margin: 0 0 16px 0;
}

.portfolio-slide__location {
  color: #494949;
  font-feature-settings: 'dlig' on;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: unset;
}

.portfolio-slide__btn {
  border-radius: 40px;
  background: #FFE174;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  gap: 6px;
  padding: 16px 20px;
  text-decoration: none;
  transition: background-color 0.4s ease;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.portfolio-slide__btn:hover {
	background: #F2D25B;
}

/* Main Slider Navigation Arrows */
.portfolio-slider__nav {
	display: flex;
	gap: 45px;
	justify-content: center;
	margin-top: 30px;
}

.portfolio-slider__prev,
.portfolio-slider__next {
  display: flex;
  width: 60px;
  height: 60px;
  padding: 16px 20px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 60px;
  background: #FFF8C7;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

.portfolio-slider__prev:hover,
.portfolio-slider__next:hover {
	background: #FFE174;
}

.portfolio-slider__prev svg,
.portfolio-slider__next svg {
	width: 10px;
	height: 12px;
}

/* Thumbs Slider Styling */
.portfolio-slider-thumbs .swiper-slide {
	opacity: 0.5;
	transition: opacity 0.4s ease;
	cursor: pointer;
	width: max-content;
}

.portfolio-slider-thumbs .swiper-slide-thumb-active {
	opacity: 1;
}

.portfolio-slider-thumbs__image-wrap {
	width: 176px;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.portfolio-slider-thumbs__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
