/* SECTION BASE */
.sec-1 {
  position: relative;
  height: 100vh;
  min-height: 750px;
  overflow: hidden;
  color: white;
  z-index: 0;
  user-select: none;
  cursor: grab;
}

/* BACKGROUND IMAGE */
.sec-1-bg {
  position: absolute;
  inset: 0;
/*   background: url("../images/sec-1-bg.jpg") top/cover no-repeat; */
  background-size: cover;
  background-position: top;
  z-index: 1;
  transition: all .4s ease-in-out;
}

.sec-1-bg::before {
  content: " ";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #ffffff00, #ffffff38);
}

/* DARK OVERLAY (important for readability) */
.sec-1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
  z-index: 2;
}

/* GRID LAYER */
.sec-1-grid {
  position: absolute;
  inset: 0;
  z-index: 3;

  background-image: url("../images/sec-1-overlay.png");

  background-size: contain;

  animation: gridMove 20s linear infinite;
  opacity: 0.2;
}

/* GRID ANIMATION (THIS is the effect you want) */
@keyframes gridMove {
  0% {
    transform: translateY(0) translateX(0px);
  }
  50% {
    transform: translateY(60px) translateX(60px);
  }
  0% {
    transform: translateY(0px) translateX(0px);
  }
}

.sec-1-gradient-1 {
  position: absolute;
  top: 0;
  right: 0;
  height: 600px;
  width: 660px;
  z-index: 3;
  background-color: transparent;
  background-image: radial-gradient(
    at center center,
    #abe47157 0%,
    #f2295b00 70%
  );
}

.sec-1-gradient-2 {
  position: absolute;
  bottom: calc(50% - 300px);
  left: 0;
  height: 600px;
  width: 660px;
  z-index: 3;
  background-color: transparent;
  background-image: radial-gradient(
    at center center,
    #abe47157 0%,
    #f2295b00 70%
  );
}

/* CONTENT */
.sec-1-content {
  position: relative;
  z-index: 4;
  max-width: 1420px;
  width: 90%;
  margin: auto;
  padding: 150px 20px  120px 20px;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/* TEXT STYLES */
.sec-1-kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 14px;
}

.sec-1-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #ffffff;
  position: relative;
  flex: 0 0 auto;
}

.sec-1-kicker-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #ffffff;
  transform: translateY(-50%);
}

.sec-1-kicker-dot:first-child::after {
  left: 2px;
}

.sec-1-kicker-dot:last-child::after {
  right: 2px;
}

.sec-1-title {
  font-size: 74px;
  line-height: 1.2;
  max-width: 800px;
}

.sec-1-title span {
  background: linear-gradient(270deg, #c8f5a8, #003516);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.sec-1-desc {
  max-width: 630px;
  opacity: 0.8;
  margin-top: 12px;
}

.sec-1-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 50px;
  padding: 20px 12px;
  border-radius: 14px;
  max-width: 250px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;

  /* background: linear-gradient(90deg, #c8f5a8, #6fdc8c); */
  /* background-size: 200% 100%; */
  /* background-position: left; */
  background-color: #c8f5a8;

  transition: all 0.4s ease;
}

.sec-1-btn::before {
  content: "";
  background: linear-gradient(88deg, transparent, #003D2B, transparent);
  position: absolute;
  height: 100%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 0;
  transition: transform 0.4s ease;
}

/* TEXT */
.sec-1-text {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  position: relative;
  z-index: 4;
}

/* ICON WRAPPER */
.sec-1-icon {
  width: 14px;
  height: 14px;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

/* MOVING CONTAINER (KEY PART) */
.sec-1-icon-box {
  display: flex;
  width: 48px;
  gap: 16px;
  transition: transform 0.4s ease;
}

/* ARROWS */
.sec-1-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* HOVER EFFECT */
.sec-1-btn:hover::before {
  transform: translateX(50%);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sec-1-title {
    font-size: 36px;
  }
}




/* ====================
        sec-2 
   ====================*/

.sec-2 {
  background: #f4f4f4;
  padding: 120px 20px 70px 20px;
  border-radius: 50px 50px 0px 0px;
  margin-top: -50px;
  position: relative;
  font-family: var(--font-primary);
}

.sec-2-inner {
  max-width: 1420px;
  width: 90%;
  margin: 0 auto;
}

.sec-2-top {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 60px;
  align-items: center;
}

.sec-2-media {
  position: relative;
  width: 100%;
  aspect-ratio: 500 / 376;
  border-radius: 22px;
  overflow: hidden;
  justify-self: center;
}

/* BASE STATE (hidden) */
.sec-2-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;

  transform: perspective(1000px) rotateY(15deg) scale(0.9) translateZ(-40px);

  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);

  will-change: opacity, transform;
}

/* ACTIVE STATE */
.sec-2-img-active {
  opacity: 1;

  transform: perspective(1000px) rotateY(0deg) scale(1) translateZ(0);
}

.sec-2-content {
  /* max-width: 520px; */
}

.sec-2-content-anim {
  animation: sec2FadeSlide 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes sec2FadeSlide {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.sec-2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  margin: 0 0 14px;
}

.sec-2-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #111;
  position: relative;
  flex: 0 0 auto;
}

.sec-2-kicker-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #111;
  transform: translateY(-50%);
}

.sec-2-kicker-dot:first-child::after {
  left: 2px;
}

.sec-2-kicker-dot:last-child::after {
  right: 2px;
}

.sec-2-title {
  font-size: clamp(34px, 4vw, 55px);
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0 0 14px;
  font-weight: 600;
  color: #111;
  /* max-width: 500px; */
}

.sec-2-desc {
  margin: 0;
  color: #7b7b7b;
  font-size: 15px;
  line-height: 1.65;
  max-width: 530px;
}

.sec-2-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 14px 26px;
  border-radius: 14px;
  max-width: 250px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  user-select: none;

  background-color: #c8f5a8;

  transition: all 0.4s ease;
}

.sec-2-btn::before {
  content: "";
  background: linear-gradient(88deg, transparent, #003D2B, transparent);
  position: absolute;
  height: 100%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 0;
  transition: transform 0.4s ease;
}

/* TEXT */
.sec-2-btn-text {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  position: relative;
  z-index: 4;
}

/* ICON WRAPPER */
.sec-2-btn-icon {
  width: 14px;
  height: 14px;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

/* MOVING CONTAINER (KEY PART) */
.sec-2-btn-icon-box {
  display: flex;
  width: 48px;
  gap: 16px;
  transition: transform 0.4s ease;
}

/* ARROWS */
.sec-2-btn-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* HOVER EFFECT */
.sec-2-btn:hover::before {
  transform: translateX(50%);
}

.sec-2-bottom {
  display: flex;
  align-items: flex-start;
  gap: 34px;
  margin-top: 54px;

  width: 100%;
  overflow-x: auto;
  justify-content: space-between;
  padding: 0 20px 20px 20px;
}

.sec-2-bottom {
  overflow-x: auto;

  /* Firefox (solid fallback only) */
  scrollbar-width: thin;
  scrollbar-color: #79eb93 #f3f5f4;
}

/* Chrome, Edge, Safari */
.sec-2-bottom::-webkit-scrollbar {
  height: 6px; /* horizontal scroll */
}

.sec-2-bottom::-webkit-scrollbar-track {
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.05);
}

.sec-2-bottom::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #79eb93 50%,
    transparent 100%
  );
}

/* optional hover */
.sec-2-bottom::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    90deg,
    transparent 0%,
    #4f46e5 50%,
    transparent 100%
  );
}

.sec-2-item {
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  min-height: 180px;
  transition: transform 220ms ease;
  flex-shrink: 0;
  max-width: 300px;
  min-width: 300px;
}

.sec-2-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  opacity: 0.8;
  transition:
    all 240ms ease,
    opacity 240ms ease,
    transform 240ms ease,
    filter 240ms ease;
  position: relative;
  fill: #b4b4b4;
}

.sec-2-item:hover .sec-2-icon,
.sec-2-item.is-active .sec-2-icon {
  opacity: 1;
  transform: scale(1.03);
  fill: #003516;
  filter: drop-shadow(0 0 10px #79eb9463);
}

.sec-2-rule {
  position: relative;
  height: 1px;
  background: #e6e6e6;
  margin-bottom: 18px;
  overflow: hidden;
}

.sec-2-rule span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: #111;
  transition: width 320ms ease;
}

.sec-2-item:hover .sec-2-rule span,
.sec-2-item.is-active .sec-2-rule span {
  width: 100%;
}

.sec-2-item h4 {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 1.4164rem + 0.3822vw, 1.875rem);
  font-weight: 600;
  line-height: 1.2;
  line-height: 1.2;
  color: #b4b4b4;
  transition: color 240ms ease;
  font-family: var(--font-primary);
}

.sec-2-item p {
  margin: 0;
  font-family: var(--font-primary);
  color: #c7c7c7;
  font-size: 16px;
  line-height: 1.65;
  transition: color 240ms ease;
  max-width: 257px;
}

.sec-2-item:hover h4,
.sec-2-item.is-active h4 {
  color: #111;
}

.sec-2-item:hover p,
.sec-2-item.is-active p {
  color: #00000094;
}

.sec-2-item.is-active {
  cursor: default;
}

.sec-2-bottom .sec-2-item.is-active .sec-2-icon-1 {
  filter: none;
}

@media (max-width: 1100px) {
  .sec-2-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .sec-2-content {
    justify-self: center;
  }

  .sec-2-item p {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .sec-2 {
    padding-top: 70px;
  }

  .sec-2-media {
    max-width: 100%;
  }

  .sec-2 {
    background: #f4f4f4;
    padding: 60px 20px 70px 20px;
    border-radius: 30px 30px 0px 0px;
  }
}

.sec-2-marquee {
  overflow: hidden;
  margin-top: 80px;
}

/* TRACK */
.sec-2-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 40s linear infinite;
}

/* PAUSE ON HOVER */
.sec-2-marquee:hover .sec-2-track {
  animation-play-state: paused;
}

/* GROUP */
.sec-2-group {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-right: 60px;
}

/* TEXT */
.sec-2-text {
  font-size: clamp(4.375rem, 3.539rem + 3.8217vw, 8.125rem);
  font-weight: 600;
  color: #dcdcdc;
  white-space: nowrap;
  transition: all 0.3s ease-in;
}

/* TEXT HOVER EFFECT */
.sec-2-text:hover {
  color: #003516;
}

/* IMAGE */
.sec-2-group img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

/* ANIMATION */
@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* ====================
        sec-3 
   ====================*/

.sec-3 {
  position: relative;
  overflow: hidden;
  background: #0b0b0b;
  padding: 120px 20px 130px 20px;
  color: #fff;
  border-radius: 50px 50px 0px 0px;
}

.sec-3::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/sec-3-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.sec-3-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.sec-3-header {
  text-align: center;
  margin-bottom: 56px;
}

.sec-3-kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: #dcdcdc;
}

.sec-3-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #fff;
  position: relative;
  flex: 0 0 auto;
}

.sec-3-kicker span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
}

.sec-3-kicker span:first-child::after {
  left: 2px;
}

.sec-3-kicker span:last-child::after {
  right: 2px;
}

.sec-3-header h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.sec-3-header h2 span {
  background: linear-gradient(270deg, #c8f5a8, #003D2B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.sec-3-sub {
  margin: 12px auto 0;
  max-width: 520px;
  color: #b7b7b7;
  font-size: 16px;
  line-height: 1.6;
}

.sec-3-slider-container {
  position: relative;
}

.sec-3-slider {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

/* arrows: large screens left/right */
.sec-3-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.sec-3-arrow:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.9);
}

.sec-3-prev {
  left: -50px;
}

.sec-3-next {
  right: -50px;
}

.sec-3-slider .slick-list {
  padding: 50px 0px !important;
}

.sec-3-slider .slick-track {
  display: flex !important;
  align-items: stretch;
}

.sec-3-slider .slick-slide {
  height: auto;
  display: flex !important;
}

.sec-3-slider .slick-slide > div {
  width: 100%;
  display: flex;
}

.sec-3-card {
  padding: 0 14px;
  height: 100%;
  display: flex !important;
}

.sec-3-card-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 470px;
  background: rgba(255, 255, 255, 0.068);
  border-radius: 18px;
  padding: 8px;
  backdrop-filter: blur(8px);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.35s ease;
}

.slick-center .sec-3-card-inner,
.sec-3-card-inner:hover {
  opacity: 1;
  /* transform: translateY(-6px) scale(1.03); */
  background: rgb(255 255 255 / 32%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.sec-3-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  min-height: 74px;
  padding: 24px;
  padding-bottom: 0px;
}

.sec-3-card-top h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
  max-width: 230px;
  color: #fff;
}

.sec-3-icon {
  flex: 0 0 auto;
  opacity: 0.95;
  margin-top: 4px;
}

.sec-3-icon svg {
  width: 48px;
  height: 48px;
  fill: #fff;
  transition:
    fill 240ms ease,
    filter 240ms ease;
}

.slick-center .sec-3-icon svg,
.sec-3-card:hover .sec-3-icon svg {
  fill: #ffffff;
  filter: drop-shadow(0 0 10px #79eb94a8);
}

.sec-3-card-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  margin: 12px 22px 12px 22px;
}

.sec-3-desc {
  margin: 0 0 18px;
  color: #bdbdbd;
  font-size: 15px;
  line-height: 1.6;
  min-height: 48px;
  transform: translateY(8px);
  margin-bottom: -40px;
  opacity: 0;
  padding: 0px 21px;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    all 0.3s ease;
}

.slick-center .sec-3-desc,
.sec-3-card:hover .sec-3-desc {
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 18px;
}

.sec-3-card img {
  width: 100%;
  height: 358px;
  object-fit: cover;
  border-radius: 16px;
  margin-top: auto;
  display: block;
  transition: all 0.3s ease;
}

.sec-3-card:hover img,
.slick-center img {
  height: 275px;
}

/* .sec-3-card:hover .sec-3-card-inner {
  transform: translateY(-6px) scale(1.03);
  opacity: 1;
}

.sec-3-slider .slick-slide:not(.slick-center) .sec-3-card-inner {
  filter: saturate(0.9);
} */

@media (max-width: 1450px) {
  .sec-3-arrow {
    top: auto;
    bottom: -62px;
    transform: none;
  }

  .sec-3-prev {
    left: 50%;
    margin-left: -56px;
  }

  .sec-3-next {
    left: 50%;
    margin-left: 10px;
    right: auto;
  }

  .sec-3 {
    padding: 120px 20px 170px 20px;
  }
}

/* responsive */
@media (max-width: 1100px) {
  .sec-3-card-inner {
    min-height: 450px;
  }

  .sec-3-card-top h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .sec-3 {
    padding-bottom: 170px;
  }

  .sec-3-card {
    padding: 0 10px;
  }

  .sec-3-card-inner {
    min-height: 430px;
  }

  .sec-3-card img {
    height: 250px;
  }

  .sec-3-slider .slick-list {
	padding: 30px 0px !important;
  }
}

@media (max-width: 600px) {
	.sec-3{
		padding-top:60px;
		border-radius: 30px 30px 0px 0px;
	}
}

@media (max-width: 520px) {
  .sec-3-card-inner {
    min-height: 410px;
    padding: 22px;
  }

  .sec-3-card-top h3 {
    font-size: 22px;
  }

  .sec-3-arrow {
    width: 42px;
    height: 42px;
  }
}



/* ====================
        sec-4
   ====================*/

.sec-4 {
  background: #f6f6f6;
  padding: 120px 20px 90px 20px;
  margin-top: -50px;
  position: relative;
  border-radius: 50px 50px 0px 0px;
}

.sec-4-inner {
  max-width: 1420px;
  width: 90%;
  margin: 0 auto;
}

.sec-4-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 54px;
}

.sec-4-kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  margin: 0 0 14px;
}

.sec-4-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #111;
  position: relative;
  flex: 0 0 auto;
}

.sec-4-kicker span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #111;
  transform: translateY(-50%);
}

.sec-4-kicker span:first-child::after {
  left: 2px;
}

.sec-4-kicker span:last-child::after {
  right: 2px;
}

.sec-4-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.08;
  color: #111;
  max-width: 1000px;
  font-weight: 600;
  margin-bottom: 12px;
}

.sec-4-head-dec{
	font-size: 13px;
	color: #7d7d7d;
	max-width: 1000px;
}

.sec-4-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding: 14px 26px;
  border-radius: 14px;
  max-width: 250px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  user-select: none;

  background-color: #c8f5a8;

  transition: all 0.4s ease;
}

.sec-4-btn::before {
  content: "";
  background: linear-gradient(88deg, transparent,  #003516, transparent);
  position: absolute;
  height: 100%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 0;
  transition: transform 0.4s ease;
}

/* TEXT */
.sec-4-btn-text {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  position: relative;
  z-index: 4;
}

/* ICON WRAPPER */
.sec-4-btn-icon {
  width: 14px;
  height: 14px;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

/* MOVING CONTAINER (KEY PART) */
.sec-4-btn-icon-box {
  display: flex;
  width: 48px;
  gap: 16px;
  transition: transform 0.4s ease;
}

/* ARROWS */
.sec-4-btn-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* HOVER EFFECT */
.sec-4-btn:hover::before {
  transform: translateX(50%);
}

.sec-4-body {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 36px;
  align-items: stretch;
}

.sec-4-pills {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sec-4-pill {
  border: 0;
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  background: #ffffff;
  padding: 22px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  transition:
    background 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.sec-4-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
}

.sec-4-pill.is-active {
  background: linear-gradient(90deg, #003D2B 0%, #c3f892 100%);
  box-shadow: 0 12px 24px rgba(126, 242, 138, 0.16);
}

.sec-4-pill-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition:
    filter 0.25s ease,
    transform 0.25s ease;
}

.sec-4-pill:hover .sec-4-pill-icon,
.sec-4-pill.is-active .sec-4-pill-icon {
  transform: scale(1.02);
}

.sec-4-pill-text {
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

.sec-4-pill:not(.is-active) .sec-4-pill-text {
  color: #171717;
}

.sec-4-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 425px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
}

.sec-4-media {
  position: relative;
  min-height: 425px;
  overflow: hidden;
  border-radius: 20px;
}

.sec-4-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.01);
  transition:
    opacity 0.45s ease,
    transform 0.55s ease;
  will-change: opacity, transform;
}

.sec-4-img-active {
  opacity: 1;
  transform: scale(1);
}

.sec-4-content {
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sec-4-content h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111;
  max-width: 340px;
}

.sec-4-content p {
  margin: 0 0 18px;
  color: #7d7d7d;
  font-size: 14px;
  line-height: 1.7;
  max-width: 390px;
}

.sec-4-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sec-4-content li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #4f4f4f;
  font-size: 14px;
  line-height: 1.5;
}

.sec-4-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 11px;
  display: grid;
  place-items: center;
  line-height: 1;
}

/* ICONS */
.sec-4-pill-icon-1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23111' d='M10 6l5 6-5 6'/%3E%3C/svg%3E");
}

.sec-4-pill-icon-2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23111' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2Zm1 15.8V19h-2v-1.2a5.9 5.9 0 0 1-4.2-2l1.6-1.5a4 4 0 0 0 3.6 1.7c1.5 0 2.5-.6 2.5-1.6 0-2.6-7.4-.8-7.4-5.6 0-2.1 1.6-3.6 4-4V4h2v1.2a5.6 5.6 0 0 1 3.6 1.7l-1.6 1.5a3.8 3.8 0 0 0-2.9-1.2c-1.3 0-2.2.5-2.2 1.4 0 2.3 7.4.7 7.4 5.6 0 2.2-1.8 3.8-4.5 4.6Z'/%3E%3C/svg%3E");
}

.sec-4-pill-icon-3 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23111' d='M4 16h3V8H4v8Zm6 0h3V4h-3v12Zm6 0h3V10h-3v6Zm-10 2h14v2H6z'/%3E%3Ccircle cx='5.5' cy='6' r='1.5' fill='%23111'/%3E%3Ccircle cx='11.5' cy='3' r='1.5' fill='%23111'/%3E%3Ccircle cx='17.5' cy='8' r='1.5' fill='%23111'/%3E%3C/svg%3E");
}

.sec-4-pill-icon-4 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23111' d='M4 19h16v2H4v-2Zm1-3h2v2H5v-2Zm4-6h2v8H9v-8Zm4 2h2v6h-2v-6Zm4-5h2v11h-2V7Z'/%3E%3Cpath fill='%23111' d='M6 11l4-4 3 3 5-5 1.4 1.4L13 12l-3-3-3.6 3.6L5 11z'/%3E%3C/svg%3E");
}

.sec-4-pill-icon-5 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23111' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2Zm1 15.8V19h-2v-1.2a5.9 5.9 0 0 1-4.2-2l1.6-1.5a4 4 0 0 0 3.6 1.7c1.5 0 2.5-.6 2.5-1.6 0-2.6-7.4-.8-7.4-5.6 0-2.1 1.6-3.6 4-4V4h2v1.2a5.6 5.6 0 0 1 3.6 1.7l-1.6 1.5a3.8 3.8 0 0 0-2.9-1.2c-1.3 0-2.2.5-2.2 1.4 0 2.3 7.4.7 7.4 5.6 0 2.2-1.8 3.8-4.5 4.6Z'/%3E%3C/svg%3E");
}

@media (max-width: 1100px) {
  .sec-4-head {
    flex-direction: column;
  }

  .sec-4-btn {
    margin-top: 0;
  }

  .sec-4-body {
    grid-template-columns: 1fr;
  }

  .sec-4-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sec-4-card {
    grid-template-columns: 1fr;
  }

  .sec-4-media {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .sec-4-pills {
    grid-template-columns: 1fr;
  }

  .sec-4-content {
    padding: 24px;
  }

  .sec-4 {
    border-radius: 30px 30px 0px 0px;
    padding: 60px 20px 60px 20px;
  }
}


/* ====================
        sec-5
   ====================*/

.sec-5 {
  background: #f6f6f6;
  padding: 40px 20px 80px 20px;
}

.sec-5-container {
  max-width: 1420px;
  width: 90%;
  margin: 0 auto;
}

.sec-5-head {
  text-align: center;
  margin-bottom: 40px;
}

.sec-5-kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  margin: 0 0 14px;
}

.sec-5-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #111;
  position: relative;
  flex: 0 0 auto;
}

.sec-5-kicker span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #111;
  transform: translateY(-50%);
}

.sec-5-kicker span:first-child::after {
  left: 2px;
}

.sec-5-kicker span:last-child::after {
  right: 2px;
}

.sec-5-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: #111;
}

.sec-5-sub {
  margin: 10px auto 0;
  /* max-width: 520px; */
  color: #777;
  font-size: 14px;
  line-height: 1.65;
}

.sec-5-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 272px;
  gap: 18px;
  align-items: start;
}

/* MAIN LEFT WHITE BLOCK */
.sec-5-main-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  height: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sec-5-left-panel {
  padding: 34px 50px;
  display: flex;
  align-items: center;
  /* background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px); */

  height: 500px;
  position: relative;
}

.sec-5-left-panel::after {
  content: "";
  background: url(../images/sec-1-overlay.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotateY(45deg);
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
  filter: brightness(100%) contrast(0%) saturate(0%) blur(0px) hue-rotate(0deg);
  opacity: 0.2;
}

.sec-5-left-content{
	position: relative;
	z-index: 10;
}

.sec-5-left-content h3 {
  margin: 0 0 12px;
  max-width: 300px;
  font-size: 27px;
  line-height: 1.15;
  /* letter-spacing: -0.03em; */
  color: #111;
}

.sec-5-left-content p {
  margin: 0;
  max-width: 300px;
  color: #7a7a7a;
  font-size: 14px;
  line-height: 1.7;
}

.sec-5-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 14px 26px;
  border-radius: 14px;
  max-width: 250px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  user-select: none;

  background-color: #c8f5a8;

  transition: all 0.4s ease;
}

.sec-5-btn::before {
  content: "";
  background: linear-gradient(88deg, transparent, #003D2B, transparent);
  position: absolute;
  height: 100%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 0;
  transition: transform 0.4s ease;
}

/* TEXT */
.sec-5-btn-text {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  position: relative;
  z-index: 4;
}

/* ICON WRAPPER */
.sec-5-btn-icon {
  width: 14px;
  height: 14px;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

/* MOVING CONTAINER (KEY PART) */
.sec-5-btn-icon-box {
  display: flex;
  width: 48px;
  gap: 16px;
  transition: transform 0.4s ease;
}

/* ARROWS */
.sec-5-btn-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* HOVER EFFECT */
.sec-5-btn:hover::before {
  transform: translateX(50%);
}

/* MARQUEE */
.sec-5-marquee-panel {
  padding: 14px 18px 14px 0;
  display: flex;
  align-items: stretch;
  height: 500px;
}

.sec-5-marquee-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.sec-5-marquee-viewport::before,
.sec-5-marquee-viewport::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 48px;
  z-index: 2;
  pointer-events: none;
}

.sec-5-marquee-viewport::before {
  top: 0;
  background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.sec-5-marquee-viewport::after {
  bottom: 0;
  background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.sec-5-marquee-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: sec5ScrollDown 16s linear infinite;
}

.sec-5-marquee-panel:hover .sec-5-marquee-track {
  animation-play-state: paused;
}

.sec-5-testimonial {
  background: #f6f6f6;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 16px 16px 14px;
  min-height: 142px;
  flex: 0 0 auto;
}

.sec-5-quote {
  font-size: 26px;
  line-height: 1;
  color: #111;
  margin-bottom: 8px;
}

.sec-5-testimonial p {
  margin: 0 0 14px;
  color: #727272;
  font-size: 14px;
  line-height: 1.6;
}

.sec-5-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec-5-user img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: contain;
}

.sec-5-user strong {
  display: block;
  font-size: 13px;
  color: #111;
}

.sec-5-user span {
  display: block;
  font-size: 12px;
  color: #8a8a8a;
}

/* RIGHT CARDS */
.sec-5-right {
  display: grid;
  gap: 18px;
}

.sec-5-rating-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  height: 241px;
  padding: 26px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sec-5-rating-card::before,
.sec-5-rating-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.sec-5-rating-card::before {
  width: 92px;
  height: 92px;
  top: 6px;
  left: 6px;
}

.sec-5-rating-card::after {
  width: 150px;
  height: 150px;
  right: -30px;
  top: -18px;
}

.sec-5-rating-value {
  font-size: 54px;
  line-height: 1;
  font-weight: 600;
  color: #111;
  position: relative;
  z-index: 1;
}

.sec-5-stars {
  margin: 12px 0 10px;
  color: #f3b42f;
  letter-spacing: 2px;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.sec-5-rating-card p {
  margin: 0 0 14px;
  color: #7a7a7a;
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.sec-5-logos {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 26px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sec-5-logos svg {
  width: 30px;
  height: 30px;
}

.sec-5-group-card {
  height: 241px;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  background:
    linear-gradient(#00351666, #003516d1),
    url("../images/sec-5-card-bg.avif");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sec-5-group-card h3 {
  margin: 0;
  max-width: 150px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
}

.sec-5-avatars {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sec-5-avatars img,
.sec-5-avatars button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.sec-5-avatars button {
  background: #111;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
}

/* TOP -> BOTTOM LOOP */
@keyframes sec5ScrollDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

/* Sec 5 part 2 */
/* STATS CARD */
.sec-5-stats {
  margin-top: 50px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #000;
}

/* background image */
.sec-5-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/sec-3-bg.webp") center/cover no-repeat;
  opacity: 0.8;
  background-position: center;
}

/* content */
.sec-5-stats-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 60px 20px 60px 20px;
}

/* each stat */
.sec-5-stat {
  color: #fff;
  position: relative;
}

/* divider lines */
.sec-5-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

/* numbers */
.sec-5-stat h3 {
  font-size: 64px;
  margin: 0;
  font-weight: 600;
}

/* text */
.sec-5-stat p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .sec-5-grid {
    grid-template-columns: 1fr;
  }

  .sec-5-right {
    grid-template-columns: 1fr 1fr;
  }

  .sec-5-main-card {
    height: auto;
    min-height: 430px;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sec-5-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .sec-5-stat::after {
    display: none;
  }

  .sec-5-stat h3 {
    font-size: 42px;
  }
}

@media (max-width: 860px) {
  .sec-5-main-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sec-5-marquee-panel {
    padding: 0 18px 18px;
    min-height: 260px;
  }

  .sec-5-left-panel {
    height: 400px;
  }

  .sec-5-left-panel {
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .sec-5-right {
    grid-template-columns: 1fr;
  }

  .sec-5-left-panel {
    /* padding: 26px; */
  }

  .sec-5-rating-card,
  .sec-5-group-card {
    height: auto;
    min-height: 190px;
  }
}

@media (max-width: 500px) {
  .sec-5-stats-inner {
    grid-template-columns: 1fr;
  }
}


/* ====================
        sec-6
   ====================*/

.sec-6 {
  padding: 90px 20px 120px 20px;
  background: #000 url("../images/sec-3-bg.webp") center/cover no-repeat;
  color: #fff;
  border-radius: 50px 50px 0px 0px;
  display: none;
}

.sec-6-container {
  max-width: 1420px;
  max-width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 40px;
  align-items: stretch;
}

.sec-6-left {
  display: flex;
  flex-direction: column;
}

.sec-6-kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 14px;
}

.sec-6-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #ffffff;
  position: relative;
  flex: 0 0 auto;
}

.sec-6-kicker span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #ffffff;
  transform: translateY(-50%);
}

.sec-6-kicker span:first-child::after {
  left: 2px;
}

.sec-6-kicker span:last-child::after {
  right: 2px;
}

.sec-6-left h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.sec-6-left h2 span {
  color: #7ef28a;
}

.sec-6-sub {
  margin: 14px 0 24px;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.sec-6-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sec-6-item {
  --collapsed-h: 84px;
  --expanded-h: 160px;
  height: var(--collapsed-h);
  border-radius: 12px;
  background: rgba(56, 56, 56, 0.92);
  overflow: hidden;
  transition:
    height 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease;
  position: relative;
}

.sec-6-item.active {
  height: var(--expanded-h);
  /* background: linear-gradient(90deg, #7ef28a 0%, #c3f892 100%); */
  background-color: #c3f892;
}

.sec-6-item::after {
  content: "";
  background: linear-gradient(88deg, transparent, #6fdc8c, transparent);
  position: absolute;
  height: 100%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 0;
  opacity: 0;
  transition:
    transform 0.4s ease 0.2s,
    opacity 0.4s ease 0.1s;
  top: 0;
  z-index: 0;
}

.sec-6-item.active::after {
  opacity: 1;
  transform: translateX(50%);
}

.sec-6-header {
  width: 100%;
  height: var(--collapsed-h);
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0 34px 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}

.sec-6-item.active .sec-6-header {
  color: #111;
  position: relative;
  z-index: 2;
}

.sec-6-title {
  font-size: clamp(1.25rem, 1.1943rem + 0.2548vw, 1.5rem);
  line-height: 1.3;
  font-weight: 500;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.sec-6-arrow {
  flex: 0 0 auto;
  font-size: 30px;
  line-height: 1;
  transform: translateY(1px);
  transition:
    transform 0.35s ease,
    color 0.35s ease;
  position: relative;
  z-index: 2;
}

.sec-6-item.active .sec-6-arrow {
  transform: rotate(180deg);
}

.sec-6-content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    height 0.35s ease,
    opacity 0.25s ease;
  position: relative;
  z-index: 2;
}

.sec-6-content p {
  margin: 0;
  padding: 0 34px 16px 34px;
  font-size: 15px;
  line-height: 1.6;
  color: #111;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.sec-6-item.active .sec-6-content {
  height: 54px;
  opacity: 1;
}

.sec-6-right {
  height: 100%;
}

.sec-6-card {
  height: 100%;
  min-height: 100%;
  border-radius: 20px;
  padding: 30px 24px;
  background:
    linear-gradient(45deg, #6fdc8ce8, #c3f892da),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=900&q=80")
      center/cover no-repeat;
  color: #111;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sec-6-icon {
  font-size: 54px;
  line-height: 1;
  margin-bottom: 16px;
}

.sec-6-icon img {
  width: auto;
  height: 50px;
}

.sec-6-card h3 {
  margin: 0 auto 12px;
  max-width: 280px;
  font-size: 24px;
  line-height: 1.15;
}

.sec-6-card > p {
  margin: 0 auto 22px;
  max-width: 300px;
  font-size: 15px;
  line-height: 1.6;
}

.sec-6-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 0 auto 25px auto;
  padding: 14px 26px;
  border-radius: 14px;
  max-width: 250px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  user-select: none;

  background-color: #ffffff;

  transition: all 0.4s ease;
}

/* TEXT */
.sec-6-btn-text {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  position: relative;
  z-index: 4;
  transition: all 0.4s ease;
}

/* ICON WRAPPER */
.sec-6-btn-icon {
  width: 14px;
  height: 14px;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

/* MOVING CONTAINER (KEY PART) */
.sec-6-btn-icon-box {
  display: flex;
  width: 48px;
  gap: 16px;
  transition: transform 0.4s ease;
}

/* ARROWS */
.sec-6-btn-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: #000;
  transition: all 0.4s ease;
}

/* HOVER EFFECT */
.sec-6-btn:hover {
  background-color: #000;
}

.sec-6-btn:hover .sec-6-btn-text,
.sec-6-btn:hover .sec-6-btn-arrow {
  color: #fff;
  fill: #fff;
}

.sec-6-info {
  display: grid;
  gap: 14px;
  font-size: 15px;
  line-height: 1.45;
}

.sec-6-info p {
  margin: 0;
}

.sec-6-info p span {
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.sec-6-info p img {
  width: 15px;
  height: 15px;
}

@media (max-width: 980px) {
  .sec-6-container {
    grid-template-columns: 1fr;
  }

  .sec-6-right {
    order: -1;
  }

  .sec-6-card {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .sec-6 {
    padding: 60px 16px 100px 16px;
    border-radius: 30px 30px 0px 0px;
  }

  .sec-6-item {
    --collapsed-h: 72px;
    --expanded-h: 132px;
  }

  .sec-6-title {
    font-size: 14px;
  }
}


/* ====================
        sec-7
   ====================*/
.sec-7 {
  background: #f6f6f6;
  padding: 90px 20px;
  text-align: center;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  display: none;
}

.sec-7-container {
  max-width: 1420px;
  width: 90%;
  margin: 0 auto;
}

.sec-7-kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 14px;
}

.sec-7-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #000000;
  position: relative;
  flex: 0 0 auto;
}

.sec-7-kicker span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #000000;
  transform: translateY(-50%);
}

.sec-7-kicker span:first-child::after {
  left: 2px;
}

.sec-7-kicker span:last-child::after {
  right: 2px;
}

.sec-7 h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111;
}

.sec-7-sub {
  margin: 10px auto 42px;
  max-width: 620px;
  color: #7a7a7a;
  font-size: 14px;
  line-height: 1.6;
}

.sec-7-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.sec-7-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.sec-7-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

/* no padding on image area */
.sec-7-media {
  position: relative;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
}

.sec-7-media::after {
  content: "";
  background: linear-gradient(0deg, #000000a1, transparent);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  transition: all 0.3s ease;
  transform: translateY(100%);
}

.sec-7-media:hover::after {
  transform: translateY(0px);
}

.sec-7-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.sec-7-card:hover .sec-7-media img {
  transform: scale(1.05);
}

.sec-7-social {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%) translateY(18px);
  display: flex;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
  z-index: 10;
}

.sec-7-card:hover .sec-7-social {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.sec-7-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #9bf28e;
  color: #111;
  text-decoration: none;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.sec-7-social a:hover {
  transform: translateY(-2px);
  background: #b8f7ac;
}

.sec-7-body {
  padding: 28px 18px;
}

.sec-7-body h4 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.2;
  color: #111;
}

.sec-7-body p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

@media (max-width: 1100px) {
  .sec-7-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sec-7 {
    padding: 60px 16px;
  }

  .sec-7-grid {
    grid-template-columns: 1fr;
  }
}



/* ====================
        sec-8
   ====================*/
.sec-8 {
  padding: 20px 20px 120px 20px;
  background: #f6f6f6;
}

.sec-8-container {
  max-width: 1420px;
  width: 90%;
  margin: 0 auto;
}

.sec-8-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 56px;
}

.sec-8-kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 14px;
}

.sec-8-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #000000;
  position: relative;
  flex: 0 0 auto;
}

.sec-8-kicker span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #000000;
  transform: translateY(-50%);
}

.sec-8-kicker span:first-child::after {
  left: 2px;
}

.sec-8-kicker span:last-child::after {
  right: 2px;
}

.sec-8-head-left h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  max-width: 550px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #111;
}

.sec-8-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 14px 26px;
  border-radius: 14px;
  max-width: 250px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  user-select: none;

  background-color: #c8f5a8;

  transition: all 0.4s ease;
}

.sec-8-btn::before {
  content: "";
  background: linear-gradient(88deg, transparent, #003D2B, transparent);
  position: absolute;
  height: 100%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 0;
  transition: transform 0.4s ease;
}

/* TEXT */
.sec-8-btn-text {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  position: relative;
  z-index: 4;
}

/* ICON WRAPPER */
.sec-8-btn-icon {
  width: 14px;
  height: 14px;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

/* MOVING CONTAINER (KEY PART) */
.sec-8-btn-icon-box {
  display: flex;
  width: 48px;
  gap: 16px;
  transition: transform 0.4s ease;
}

/* ARROWS */
.sec-8-btn-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* HOVER EFFECT */
.sec-8-btn:hover::before {
  transform: translateX(50%);
}

.sec-8-flow {
  position: relative;
  padding-top: 46px;
}

.sec-8-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 30px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* connector line behind cards */

.sec-8-line {
  position: absolute;
  width: 1263px;
  left: 147px;
  top: 56px;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background: repeating-linear-gradient(
    90deg,
    #003516 0 10px,
    transparent 10px 20px
  );
  background-size: 20px 2px;
  animation: sec8LineMove 0.5s linear infinite;
}

@keyframes sec8LineMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 20px 0;
  }
}

.sec-8-card {
  text-align: center;
  padding: 0 10px 8px;
  cursor: pointer;
  transition: transform 0.28s ease;
  min-width: 240px;
}

/* .sec-8-card:hover,
.sec-8-card.is-active {
  transform: translateY(-3px);
} */

/* important: solid card, not transparent */
.sec-8-icon-box {
  width: 108px;
  height: 108px;
  margin: 0 auto;
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.28s ease,
    all 0.6s ease,
    box-shadow 0.28s ease;
  position: relative;
}

.sec-8-card.is-active .sec-8-icon-box {
  background:
   linear-gradient(45deg, #ffffffb8, #c3f8929f), url(../images/sec-8-card-bg-img.avif) center / cover no-repeat
}

.sec-8-icon {
  position: relative;
  z-index: 1;
  font-size: 42px;
  color: #111;
  line-height: 1;
  transition:
    color 0.28s ease,
    transform 0.28s ease;
}

.sec-8-icon svg {
  stroke: #003516;
  width: 50px;
  height: 50px;
  filter: drop-shadow(0px 0px 7px #79eb9463);
}

.sec-8-card:hover .sec-8-icon-box,
.sec-8-card.is-active .sec-8-icon-box {
  transform: scale(1.04);
  box-shadow: 0 18px 38px rgba(126, 242, 138, 0.18);
}

.sec-8-card:hover .sec-8-icon,
.sec-8-card.is-active .sec-8-icon {
  color: #7ef28a;
}

.sec-8-num {
  width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 4px;
  background: linear-gradient(45deg, #003516, #c3f892);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -11px;
  left: calc(50% - 11px);
}

.sec-8-card h4 {
	margin: 16px auto 8px;
    font-size: 18px;
    line-height: 1.2;
    color: #111;
    max-width: 150px;
    text-align: center;
}

.sec-8-card p {
  margin: 0 auto;
  max-width: 240px;
  color: #777;
  font-size: 14px;
  line-height: 1.6;
}

.sec-8-footer {
  margin-top: 42px;
  text-align: center;
  font-size: 18px;
  color: #222;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.sec-8-footer a {
  color: #111;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  width: 142px;
}

.sec-8-footer a::before {
  content: "";
  position: absolute;
  background-color: #000;
  height: 1px;
  width: 100%;
  transform: translateX(-50%);
  z-index: 0;
  bottom: 0;
  transition: transform 0.4s ease;
}

.sec-8-footer a::after {
  content: "";
  position: absolute;
  background-color: #000;
  height: 1px;
  width: 100%;
  transform: translateX(-50%);
  z-index: 0;
  bottom: 0;
  transition: transform 0.4s ease;
}

.sec-8-footer a:hover::before {
  transform: translateX(-120%);
}

.sec-8-footer a:hover::after {
  transform: translateX(20%);
}


.sec-8-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 8px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  /* Firefox default (hidden) */
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

/* Show scrollbar in Firefox on hover */
.sec-8-track:hover {
  scrollbar-color: #003516 #f3f5f4;
}

/* Chrome, Edge, Safari */
.sec-8-track::-webkit-scrollbar {
  height: 6px;
}

/* hidden track by default */
.sec-8-track::-webkit-scrollbar-track {
  background: transparent;
}

/* hidden thumb by default */
.sec-8-track::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 5px;
}

/* SHOW on hover */
.sec-8-track:hover::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.sec-8-track:hover::-webkit-scrollbar-thumb {
  background: linear-gradient(
    90deg,
    transparent 0%,
    #79eb93 50%,
    transparent 100%
  );
}

/* optional hover effect on thumb */
.sec-8-track:hover::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    90deg,
    transparent 0%,
    #4f46e5 50%,
    transparent 100%
  );
}

@media (max-width: 980px) {
/*   .sec-8-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 0 8px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .sec-8-track {
    overflow-x: auto;


    scrollbar-width: thin;
    scrollbar-color: #79eb93 #f3f5f4;
  }


  .sec-8-track::-webkit-scrollbar {
    height: 6px; 
  }

  .sec-8-track::-webkit-scrollbar-track {
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.05);
  }

  .sec-8-track::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      #79eb93 50%,
      transparent 100%
    );
  }


  .sec-8-track::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
      90deg,
      transparent 0%,
      #4f46e5 50%,
      transparent 100%
    );
  } */

  .sec-8-card {
    min-width: 240px;
    scroll-snap-align: center;
    flex: 0 0 auto;
  }

  .sec-8-line {
    position: absolute;
    width: 1263px;
    left: 147px;
  }

  .sec-8-btn {
    margin-top: 0;
  }

  .sec-8-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .sec-8 {
    padding: 70px 16px 60px;
  }

  .sec-8-flow {
    padding-top: 42px;
  }

  .sec-8-footer {
    flex-direction: column;
    align-items: center;
  }
}




/* ====================
        sec-9
   ====================*/

.sec-9 {
  position: relative;
  padding: 120px 20px 170px 20px;
  background: url("../images/sec-9-bg-img-1.jpg")
    top/cover no-repeat;
  border-radius: 50px 50px 0px 0px;
  overflow: hidden;
}

/* dark overlay */
.sec-9-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* container */
.sec-9-container {
  position: relative;
  max-width: 1240px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

/* glass form */
.sec-9-form-card {
  width: 550px;
  padding: 50px;
  border-radius: 20px;
  background: rgb(255 255 255 / 64%);
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* kicker */
.sec-9-kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 14px;
}

.sec-9-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #000000;
  position: relative;
  flex: 0 0 auto;
}

.sec-9-kicker span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #000000;
  transform: translateY(-50%);
}

.sec-9-kicker span:first-child::after {
  left: 2px;
}

.sec-9-kicker span:last-child::after {
  right: 2px;
}

/* title */
.sec-9-form-card h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* desc */
.sec-9-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* form */
.sec-9-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* rows */
.sec-9-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* inputs */
.sec-9-form input,
.sec-9-form select,
.sec-9-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  outline: none;

  background: #f3f3f3;
  font-size: 14px;

  font-family: var(--font-primary);
}

.sec-9-form .field-box{
	position: relative;
    padding-bottom: 23px;
}

.sec-9-form .field-box .error-msg{
	position: absolute;
    bottom: 4px;
    left: 4px;
    font-size: 12px;
    color: #ff1414;
}

/* textarea */
.sec-9-form textarea {
  min-height: 120px;
  resize: none;
}

.sec-9-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 14px 26px;
  border-radius: 14px;
  max-width: 150px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  user-select: none;

  background-color: #c8f5a8;

  transition: all 0.4s ease;
}

.sec-9-btn::before {
  content: "";
  background: linear-gradient(88deg, transparent, #003D2B, transparent);
  position: absolute;
  height: 100%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 0;
  transition: transform 0.4s ease;
}

/* TEXT */
.sec-9-btn-text {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  position: relative;
  z-index: 4;
}

/* ICON WRAPPER */
.sec-9-btn-icon {
  width: 14px;
  height: 14px;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

/* MOVING CONTAINER (KEY PART) */
.sec-9-btn-icon-box {
  display: flex;
  width: 48px;
  gap: 16px;
  transition: transform 0.4s ease;
}

/* ARROWS */
.sec-9-btn-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* HOVER EFFECT */
.sec-9-btn:hover::before {
  transform: translateX(50%);
}

/* responsive */
@media (max-width: 900px) {
  .sec-9-container {
    justify-content: center;
  }

  .sec-9-form-card {
    width: 100%;
  }

  .sec-9-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .sec-9 {
    position: relative;
    padding: 60px 20px 100px 20px;
    border-radius: 30px 30px 0px 0px;
  }
}



/* ====================
        sec-10
   ====================*/

.sec-10 {
  padding: 90px 20px;
  background: #f5f5f5;
  border-radius: 50px 50px 0px 0px;
  margin-top: -50px;
  position: relative;
}

.sec-10-container {
  max-width: 1420px;
  margin: auto;
  width: 90%;
}

/* HEADER */
.sec-10-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.sec-10-header h2 {
  font-size: 44px;
  line-height: 1.2;
  max-width: 400px;
}

.sec-10-kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 14px;
}

.sec-10-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #000000;
  position: relative;
  flex: 0 0 auto;
}

.sec-10-kicker span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #000000;
  transform: translateY(-50%);
}

.sec-10-kicker span:first-child::after {
  left: 2px;
}

.sec-10-kicker span:last-child::after {
  right: 2px;
}

.sec-10-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding: 14px 26px;
  border-radius: 14px;
  max-width: 250px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  user-select: none;

  background-color: #c8f5a8;

  transition: all 0.4s ease;
}

.sec-10-btn::before {
  content: "";
  background: linear-gradient(88deg, transparent, #003D2B, transparent);
  position: absolute;
  height: 100%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 0;
  transition: transform 0.4s ease;
}

/* TEXT */
.sec-10-btn-text {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  position: relative;
  z-index: 4;
}

/* ICON WRAPPER */
.sec-10-btn-icon {
  width: 14px;
  height: 14px;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

/* MOVING CONTAINER (KEY PART) */
.sec-10-btn-icon-box {
  display: flex;
  width: 48px;
  gap: 16px;
  transition: transform 0.4s ease;
}

/* ARROWS */
.sec-10-btn-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* HOVER EFFECT */
.sec-10-btn:hover::before {
  transform: translateX(50%);
}

/* GRID (FIXED 50/50) */
.sec-10-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

/* LEFT STICKY */
.sec-10-left {
  position: sticky;
  top: 100px;
}

.sec-10-left .sec-10-left-image {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 20px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

/* IMAGE */
.sec-10-left .sec-10-left-image img {
  width: 100%;
  height: 100%;
  display: block;

  transform: scale(1.2);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  will-change: transform;
}

/* HOVER EFFECT */
.sec-10-left:hover .sec-10-left-image img {
  transform: scale(1);
}

/* SHINE LAYER */
.sec-10-left .sec-10-left-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%; /* start outside */

  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.116),
    transparent
  );
  transform: skewX(-20deg);

  pointer-events: none;
  z-index: 2;
}

/* HOVER TRIGGER */
.sec-10-left:hover .sec-10-left-image::before {
  animation: sec10Shine 0.9s ease;
}

.sec-10-left h3 {
  font-size: 22px;
  margin: 10px 0;
  transition: all 0.4s ease;
}

.sec-10-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

/* RIGHT LIST */
.sec-10-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sec-10-item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.sec-10-item .sec-10-right-image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

/* IMAGE */
.sec-10-item .sec-10-right-image img {
  width: 100%;
  height: 100%;
  display: block;

  transform: scale(1.2);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  will-change: transform;
}

/* HOVER EFFECT */
.sec-10-item:hover .sec-10-right-image img {
  transform: scale(1);
}

/* SHINE LAYER */
.sec-10-item .sec-10-right-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%; /* start outside */

  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.116),
    transparent
  );
  transform: skewX(-20deg);

  pointer-events: none;
  z-index: 2;
}

/* HOVER TRIGGER */
.sec-10-item:hover .sec-10-right-image::before {
  animation: sec10Shine 0.9s ease;
}

.sec-10-item h4 {
  font-size: clamp(1.375rem, 1.3471rem + 0.1274vw, 1.5rem);
  margin: 6px 0;
  transition: all 0.4s ease;
}

.sec-10-item div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 12px;
}

.sec-10-meta {
  font-size: 15px;
  color: #000000;
}

/* HOVER */
.sec-10-item:hover h4,
.sec-10-left h3:hover {
  color: #0009;
}

.sec-10 .sec-10-continue-reading {
  color: #111;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  width: 140px;
  font-size: 16px;
  text-align: center;
  padding-bottom: 4px;
}

.sec-10 .sec-10-continue-reading::before {
  content: "";
  position: absolute;
  background-color: #000;
  height: 1px;
  width: 100%;
  transform: translateX(-50%);
  z-index: 0;
  bottom: 0;
  transition: transform 0.4s ease;
}

.sec-10 .sec-10-continue-reading::after {
  content: "";
  position: absolute;
  background-color: #000;
  height: 1px;
  width: 100%;
  transform: translateX(-50%);
  z-index: 0;
  bottom: 0;
  transition: transform 0.4s ease;
}

.sec-10 .sec-10-continue-reading:hover::before {
  transform: translateX(-110%);
}

.sec-10 .sec-10-continue-reading:hover::after {
  transform: translateX(10%);
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .sec-10-grid {
    /* grid-template-columns: 1fr 1.5fr; */
  }
}

@media (max-width: 900px) {
  .sec-10-grid {
    /* grid-template-columns: 1fr; */
  }

  .sec-10-left {
    position: relative;
    top: 0;
  }

  .sec-10-item img {
    width: 100%;
    height: 200px;
  }

  .sec-10-header {
    gap: 20px;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .sec-10 {
    padding: 40px 20px 80px 20px;
    border-radius: 30px 30px 0px 0px;
  }

  .sec-10-item {
    flex-direction: column;
  }
  .sec-10-item .sec-10-right-image {
    width: 100%;
    height: auto;
  }

  .sec-10-header h2 {
    max-width: 100%;
  }
}

/* KEYFRAME */
@keyframes sec10Shine {
  0% {
    left: -120%;
  }
  100% {
    left: 140%;
  }
}
