@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #1c1c1c;
  color: #fff;
}


html,
body {
  width: 100%;
  /* clip preserves horizontal clipping without breaking position:sticky (e.g. #touchTrack canvas). */
  overflow-x: clip;
}

/* ================================================================================================== */

/* banner section */
.main {
  position: relative;
  height: 120vh;
  /* scroll space */
  overflow: hidden;
  padding-top: 80px;
  /* margin-top: 80px; */
}

/* Two background layers */
.bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* transition: opacity 0.6s ease; */
  z-index: -1;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.bg1 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.471), rgba(0, 0, 0, 0.63)),
    url("./../assets/images/banners/image-1.png");
  opacity: 1;

}

.bg2 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.13), rgba(0, 0, 0, 0.268)),
    url("./../assets/images/banners/image-2.png");
  opacity: 0;

}

/* Banner Content */
.banner-content {
  position: sticky;
  top: 22%;
  text-align: center;
  color: #fff;
  max-width: 1200px;
  margin: auto;
  padding: 0 10%;
}



.banner-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 65px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.banner-content h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #e0e0e0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  margin-bottom: 15px;
  text-transform: lowercase;
}

.banner-content p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #cccccc;
  max-width: 720px;
  margin: auto;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.banner-btn {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  margin-top: 25px;
  border-radius: 50px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;

  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.25);

  overflow: hidden;
  box-shadow: 0 10px 30px rgba(59, 58, 58, 0.45);
  transition: 0.4s ease;
}

/* TEXT ABOVE */
.banner-btn span,
.banner-btn {
  position: relative;
  z-index: 2;
}

/* GOLD SLIDE BACKGROUND */
.banner-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, #8EDFC0, #6FD4A9, #4FCB92); */
  background: linear-gradient(130deg, #b6b37f, #c9c552, #625f39);

  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s ease;
  z-index: 1;
}

/* HOVER */
.banner-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.banner-btn:hover {
  color: #000000;
  box-shadow: 0 15px 40px rgba(235, 237, 83, 0.49);
  transform: translateY(-5px);
}


[data-aos="fade-up"] {
  transform: translateY(40px);
  opacity: 0;
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

/* =========================
   Responsive Banner Section
========================= */

/* Large Screens (Desktops 1200px+) */
@media (min-width: 1400px) {
  .banner-content h1 {
    font-size: 72px;
  }

  .banner-content h3 {
    font-size: 32px;
  }

  .banner-content p {
    font-size: 18px;
  }
}

/* Laptops & Small Desktops */
@media (max-width: 1200px) {
  .banner-content h1 {
    font-size: 56px;
  }

  .banner-content h3 {
    font-size: 26px;
  }

  .banner-content p {
    font-size: 15px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .main {
    height: 90vh;
    padding-top: 70px;
  }

  .banner-content {
    top: 12%;
    padding: 0 6%;
  }

  .banner-content h1 {
    font-size: 46px;
    line-height: 1.2;
  }

  .banner-content h3 {
    font-size: 22px;
  }

  .banner-content p {
    font-size: 14px;
  }

  .banner-btn {
    padding: 10px 26px;
    font-size: 14px;
    letter-spacing: 1.5px;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .main {
    height: 100vh;
    padding-top: 60px;
  }

  .banner-content {
    top: 18%;
    padding: 0 5%;
  }

  .banner-content h1 {
    font-size: 34px;
    line-height: 1.25;
  }

  .banner-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .banner-content p {
    font-size: 13px;
    line-height: 1.6;
  }

  .banner-btn {
    margin-top: 20px;
    padding: 10px 22px;
    font-size: 13px;
    letter-spacing: 1.2px;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .banner-content {
    top: 20%;
    padding: 0 4%;
  }

  .banner-content h1 {
    font-size: 29px;
  }

  .banner-content h3 {
    font-size: 18px;
  }

  .banner-content p {
    font-size: 12.5px;
  }

  .banner-btn {
    padding: 9px 20px;
    font-size: 12px;
    letter-spacing: 1px;
  }
}

/* ===================================================================================================== */
/* ---------------- background video section ------------------- */

.ambience-section {
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
}

.ambience-pin {
  position: relative;
  top: auto;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: #000 url("/assets/images/curtain-frames/frame_0001.jpg") center center / cover no-repeat;
}

.ambience-pin::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.35) 38%,
      rgba(0, 0, 0, 0.72) 100%);
  z-index: 1;
  pointer-events: none;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.ambience-frame-canvas {
  position: absolute;
  left: 0;
  right: 0;
  top: -2%;
  bottom: -4%;
  width: 100%;
  height: 106%;
  display: block;
  background: #000;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

video {
  object-fit: cover;
  filter: brightness(0.7);
}

.ambience-hero {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 6%;
  z-index: 2;
}

.ambience-hero span {
  letter-spacing: 3px;
  font-size: 14px;
  opacity: 0.8;
}

.ambience-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 90px);
  margin: 15px 0;
}

.ambience-hero p {
  max-width: 750px;
  font-size: 18px;
  line-height: 1.7;
  color: #ddd;
}

.climate-temp-wave {
  position: absolute;
  top: 26%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.wave-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(240, 247, 243, 0.664);
  transform: scale(0.65);
  opacity: 0;
}

.wave-ring-1 {
  animation: climateWave 2.2s linear infinite;
}

.wave-ring-2 {
  animation: climateWave 2.2s linear infinite 0.7s;
}

.wave-ring-3 {
  animation: climateWave 2.2s linear infinite 1.4s;
}

.temp-core {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: #ffffffe2;
  border: 1px solid rgba(173, 255, 204, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.temp-core-image {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.temp-readout {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 600;
  color: #d7ffe8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  letter-spacing: 0.4px;
}

@keyframes climateWave {
  0% {
    transform: scale(0.65);
    opacity: 0.8;
  }

  70% {
    opacity: 0.2;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* FEATURES GRID */
.ambience-features {
  position: absolute;
  bottom: 5%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 5%;
  color: #fff;
  z-index: 2;
}

.feature{
  padding: 14px 14px 15px;
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(214, 255, 234, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.feature h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: #ccc;
}

/* ---------------- Tablet + mobile: pinned stage (hero → scroll → features on video) ---------------- */

@media (max-width: 1024px) {
  .ambience-section {
    min-height: 100vh;
    background: #000;
  }

  .ambience-pin {
    position: relative;
    top: auto;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: block;
    padding: 0;
  }

  .bg-video {
    object-position: 70% center;
  }

  .ambience-hero {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 6%;
    max-width: 100%;
    z-index: 3;
  }

  .ambience-hero h2 {
    font-size: clamp(30px, 4.8vw, 46px);
    line-height: 1.2;
  }

  .ambience-hero p {
    font-size: 15px;
    line-height: 1.6;
    max-width: min(92vw, 760px);
    margin-left: auto;
    margin-right: auto;
  }

  .climate-temp-wave {
    top: 18%;
    left: auto;
    right: 6%;
    transform: none;
  }

  /* Scrubbed opacity on rings; disable keyframes until we rely on opacity only on mobile */
  .climate-temp-wave .wave-ring {
    animation: none;
  }

  .ambience-features {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    width: 100%;
    margin-top: 0;
    padding: 0 5%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    z-index: 2;
    max-height: min(52vh, 420px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ambience-features .feature {
    background: rgba(180, 222, 190, 0.16);
    border: 1px solid rgba(214, 255, 234, 0.16);
    border-radius: 12px;
    padding: 12px 12px 13px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
}

/* ---------------- Mobile (max-width: 768px) ---------------- */

@media (max-width: 768px) {
  .bg-video {
    object-position: 72% center;
    filter: brightness(0.62);
  }

  .ambience-pin::after {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.62) 0%,
        rgba(0, 0, 0, 0.34) 38%,
        rgba(0, 0, 0, 0.86) 100%);
  }

  .ambience-hero span {
    font-size: 13px;
    letter-spacing: 1.8px;
  }

  .ambience-hero h2 {
    font-size: clamp(28px, 7.2vw, 36px);
    line-height: 1.22;
    margin: 12px 0;
  }

  .ambience-hero p {
    font-size: 13px;
    line-height: 1.58;
    max-width: 100%;
  }

  .climate-temp-wave {
    top: 16%;
    right: 5%;
    width: 72px;
    height: 72px;
  }

  .temp-core-image {
    width: 22px;
    height: 22px;
  }

  .temp-readout {
    left: 50%;
    top: calc(100% + 8px);
    transform: translateX(-50%);
    font-size: 12px;
  }

  .ambience-features {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    max-height: min(56vh, 480px);
  }

  .ambience-features .feature {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(231, 255, 242, 0.148);
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.277);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 12px 12px 13px;
  }

  .feature h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .feature p {
    font-size: 12px;
    line-height: 1.52;
  }
}

/* ---------------- Small Mobile (max-width: 480px) ---------------- */

@media (max-width: 480px) {
  .bg-video {
    object-position: 74% center;
  }

  .ambience-pin {
    min-height: 100dvh;
    height: 100dvh;
    max-height: 100dvh;
  }

  .ambience-hero {
    padding: 0 5%;
  }

  .ambience-hero h2 {
    font-size: 27px;
  }

  .ambience-hero p {
    font-size: 13px;
    line-height: 1.45;
  }

  .climate-temp-wave {
    right: 4%;
    width: 64px;
    height: 64px;
  }

  .temp-core-image {
    width: 19px;
    height: 19px;
  }

  .temp-readout {
    font-size: 11px;
  }

  .ambience-features {
    gap: 8px;
    padding: 0 4%;
    max-height: min(58vh, 520px);
  }

  .ambience-features .feature {
    border-radius: 11px;
    padding: 10px 10px 11px;
  }

  .feature h4 {
    font-size: 14px;
  }

  .feature p {
    font-size: 11px;
  }
}

/* ========================================================================================================================= */

/* time-schedule section */
/* section */
.scroll-bg-section {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

/* background layers */
.scroll-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  z-index: 0;
}

/* first bg */
.bg-one {
  background-image:
    linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .25)),
    url("./../assets/images/banners/time-schedule1.png");
  opacity: 1;
}

/* second bg */
.bg-two {
  background-image:
    linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .25)),
    url("./../assets/images/banners/time-schedule2.png");
}

/* shared content */
.scroll-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  padding: 0 5%;
  box-sizing: border-box;
}

/* FIRST CONTENT */
.content-one {
  flex-direction: column;
  padding: 0;
  opacity: 0;
  max-width: 100%;
}

.content-one span {
  letter-spacing: 3px;
  font-size: 18px;
  opacity: .8;
}

.content-one h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 110px);
  margin: 15px 0;
  line-height: 1.12;
}

.content-one p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.65;
  color: #ddd;
}

/* SECOND CONTENT */
.content-two {
  display: grid;
  grid-template-columns: auto auto auto;
  column-gap: 96px;
  width: fit-content;
  margin: auto;
  opacity: 0;
  align-items: center;
  justify-content: center;
}

/* TEXT ABOVE ANDROID */
.device-text {
  max-width: 420px;
  text-align: left;
  opacity: 0;
}

.device-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 14px;
}

.device-text p {
  font-size: 17px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* ANDROID */
.phone-img {
  justify-self: center;
  width: 200px;
  margin-top: 0;
}

/* WATCH */
.watch-wrapper {
  justify-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-right: 80px;
}

.watch-img {
  width: 88px;
  margin-top: 0;
}

.watch-text {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: lowercase;
  opacity: 0;
}


/* ------------------ RESPONSIVE FIXES ------------------ */

/* Large screens */
@media (min-width: 1440px) {
  .content-two {
    column-gap: 200px;
  }

  .device-text h3 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
  }

  .device-text p {
    font-size: 16px;
  }

  .phone-img {
    width: 250px;
  }

  .watch-img {
    width: 100px;
  }
}

/* Tablets (<= 1024px) */
@media (max-width: 1024px) {

  .content-two {
    grid-template-columns: 1fr auto 1fr;
    column-gap: 40px;
  }

  .device-text h3 {
    font-size: clamp(30px, 4.2vw, 40px);
  }

  .device-text p {
    font-size: 15px;
  }

  .phone-img {
    width: 230px;
    margin-top: 0;
  }

  .watch-img {
    width: 75px;
    margin-top: 0;
  }

  .watch-text {
    font-size: 14px;
  }

  .watch-wrapper {
    margin-right: 0;
  }

}

/* Mobile: keep content-two clear of fixed 80px header */
@media (max-width: 900px) {
  .scroll-bg-section {
    --scroll-mobile-header-offset: calc(80px + env(safe-area-inset-top));
  }

  .scroll-bg-section .scroll-content.content-two {
    justify-content: flex-start;
    padding-top: calc(var(--scroll-mobile-header-offset) + 18px);
    padding-bottom: max(18px, env(safe-area-inset-bottom));
  }
}

/* Small Tablets & Large Mobiles (<= 768px) */
@media (max-width: 768px) {
  .scroll-bg-section {
    height: 100svh;
    min-height: 100svh;
  }

  .scroll-bg-section .scroll-bg {
    min-height: 100%;
    background-size: cover;
    background-position: center 42%;
  }

  .scroll-content {
    padding: max(16px, env(safe-area-inset-top))
      max(20px, env(safe-area-inset-right))
      max(16px, env(safe-area-inset-bottom))
      max(20px, env(safe-area-inset-left));
    align-items: center;
    justify-content: center;
  }

  .content-one h2 {
    font-size: clamp(32px, 8vw, 42px);
  }

  .content-one span {
    font-size: 14px;
  }

  .content-one p {
    font-size: 15px;
  }

  .content-two {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    padding-top: calc(var(--scroll-mobile-header-offset, 80px) + 12px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .device-text {
    max-width: 100%;
    text-align: center;
  }

  .device-text h3 {
    font-size: clamp(28px, 6vw, 36px);
  }

  .device-text p {
    font-size: 15px;
  }

  .phone-img {
    width: 200px;
    margin-top: 0;
  }

  .watch-wrapper {
    margin-top: 8px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    justify-self: center;
    align-items: center;
  }

  .watch-img {
    width: 68px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .watch-text {
    font-size: 13px;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }

}

/* Mobile (<= 480px) */
@media (max-width: 480px) {

  .scroll-bg-section {
    height: 100svh;
    min-height: 100svh;
  }

  .scroll-bg-section .scroll-bg {
    background-position: center 38%;
  }

  .scroll-content {
    padding: max(12px, env(safe-area-inset-top))
      max(16px, env(safe-area-inset-right))
      max(12px, env(safe-area-inset-bottom))
      max(16px, env(safe-area-inset-left));
  }

  .content-one h2 {
    font-size: clamp(28px, 9vw, 32px);
    line-height: 1.2;
  }

  .content-one p {
    font-size: 14px;
    line-height: 1.5;
  }

  .content-two {
    gap: 18px;
    padding-top: calc(var(--scroll-mobile-header-offset, 80px) + 8px);
  }

  .device-text h3 {
    font-size: 28px;
  }

  .device-text p {
    font-size: 14px;
  }

  .phone-img {
    width: 180px;
  }

  .watch-img {
    width: 56px;
  }

  .watch-text {
    font-size: 12px;
    letter-spacing: 1px;
  }

}

/* Short viewports (landscape phones, notched bars) */
@media (max-height: 520px) and (orientation: landscape) {
  .scroll-bg-section {
    min-height: 100svh;
  }

  .scroll-bg-section .scroll-bg {
    background-position: center 30%;
  }

  .scroll-content {
    padding-top: max(8px, env(safe-area-inset-top));
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }

  .content-one h2 {
    font-size: clamp(24px, 5vh, 36px);
    margin: 8px 0;
  }

  .content-one p {
    font-size: 13px;
    line-height: 1.45;
  }

  .content-two {
    gap: 12px;
    padding-top: 12px;
  }

  .device-text h3 {
    font-size: clamp(22px, 4.5vh, 30px);
    margin-bottom: 8px;
  }

  .phone-img {
    width: 140px;
  }

  .watch-img {
    width: 48px;
  }
}

/* Extra Small Devices (<= 360px) */
@media (max-width: 360px) {

  .scroll-bg-section .scroll-bg {
    background-position: center 36%;
  }

  .content-one h2 {
    font-size: 28px;
  }

  .device-text h3 {
    font-size: 28px;
  }

  .device-text p {
    font-size: 13px;
  }

  .phone-img {
    width: 150px;
  }

  .watch-img {
    width: 48px;
  }

}




/* ========================================================================================================================= */

/* touch frames section  */


.sequence-track {
  height: 420vh;
  position: relative;
}

.sequence-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #000;
}

#sequenceCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.sequence-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.overlay-text {
  position: absolute;
  z-index: 2;
  width: min(70ch, 86vw);
  text-align: center;
  pointer-events: none;
  transition: opacity 220ms ease-out, transform 220ms ease-out;
}

.overlay-text h2 {
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
}

.overlay-text p {
  color: #d2d8e4;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .sequence-track {
    height: 350vh;
  }
}

@media (max-width: 768px) {
  .sequence-track {
    height: 280vh;
  }

  .overlay-text {
    width: 90vw;
  }
}


/* ========================================================================================================================= */

/* feature-section */
.features {
  position: relative;
  padding: clamp(76px, 8vw, 120px) 6%;
  background:
    radial-gradient(ellipse 60% 34% at 12% 8%, rgba(65, 134, 110, 0.2), transparent 62%),
    radial-gradient(ellipse 48% 34% at 90% 90%, rgba(113, 195, 162, 0.12), transparent 58%),
    #050505;
  color: #fff;
  z-index: 20;
  overflow: hidden;
  isolation: isolate;
}

.features::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
  opacity: 0.36;
  pointer-events: none;
  z-index: -1;
}

.features-container {
  max-width: 1220px;
  margin: auto;
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 62px);
  color: #ffffff;
  letter-spacing: 0;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 26px);
}

.feature-card-box {
  position: relative;
  min-height: 286px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  text-align: left;
  border-radius: 22px;
  border: 1px solid rgba(113, 195, 162, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    linear-gradient(180deg, #111, #080a09);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.34),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  cursor: pointer;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
}

.feature-card-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(113, 195, 162, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(65, 134, 110, 0.16), transparent 44%);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.feature-card-box::after {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #367861, #71c3a2, #dff5ea);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.feature-card-box i {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid rgba(113, 195, 162, 0.2);
  background: rgba(113, 195, 162, 0.08);
  font-size: 36px;
  background: linear-gradient(135deg, #DFF5EA, #71c3a2, #367861);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(108, 207, 173, 0.45));
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.feature-card-box h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(19px, 2vw, 22px);
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-card-box p {
  position: relative;
  z-index: 1;
  font-size: 14.5px;
  color: #cfcfcf;
  line-height: 1.7;
  margin: 0;
}

.feature-card-box.active,
.feature-card-box:focus-visible {
  border-color: rgba(113, 195, 162, 0.58);
  background:
    linear-gradient(145deg, rgba(65, 134, 110, 0.18), rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, #111, #070a09);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.42),
    0 20px 48px rgba(65, 134, 110, 0.16);
}

.feature-card-box.active::before,
.feature-card-box:hover::before {
  opacity: 1;
}

.feature-card-box.active::after {
  transform: scaleX(1);
}

.feature-card-box:focus-visible {
  outline: 2px solid #71c3a2;
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .feature-card-box:hover {
    transform: translateY(-10px);
    border-color: rgba(113, 195, 162, 0.48);
    box-shadow:
      0 30px 70px rgba(0, 0, 0, 0.42),
      0 16px 40px rgba(65, 134, 110, 0.16);
  }

  .feature-card-box:hover i,
  .feature-card-box.active i {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(65, 134, 110, 0.18);
  }
}

@media (max-width: 1024px) {
  .feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .features {
    padding: 74px 20px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .feature-card-box {
    min-height: auto;
    padding: 24px 22px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .feature-card-box,
  .feature-card-box::before,
  .feature-card-box::after,
  .feature-card-box i {
    transition: none !important;
  }
}

/* ============================================================================================================================ */
/* ================= SECTION ================= */

.showcase-section {
  position: relative;
  padding: clamp(72px, 8vw, 118px) 5%;
  background:
    radial-gradient(ellipse 62% 38% at 12% 8%, rgba(65, 134, 110, 0.24), transparent 60%),
    radial-gradient(ellipse 48% 34% at 88% 82%, rgba(126, 207, 173, 0.16), transparent 56%),
    #000;
  overflow: hidden;
  isolation: isolate;
}

.showcase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
  opacity: 0.34;
  pointer-events: none;
  z-index: -1;
}

/* ================= HEADER ================= */

.showcase-top-heading {
  width: fit-content;
  margin: 0 auto clamp(10px, 1vw, 14px);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(126, 207, 173, 0.22);
  background: rgba(126, 207, 173, 0.09);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  color: #7ecfad;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(65, 134, 110, 0.12);
}

.showcase-description {
  width: min(100%, 780px);
  margin: 0 auto clamp(28px, 4vw, 48px);
  text-align: center;
  color: #d6ddd9;
  font-size: clamp(0.92rem, 1.25vw, 1.06rem);
  line-height: 1.65;
}

/* ================= LAYOUT ================= */

.showcase-container {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(720px, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  position: relative;
  z-index: 1;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 30px;
  border: 1px solid rgba(126, 207, 173, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.34),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  backdrop-filter: blur(14px);
}

/* ================= LEFT ================= */

.showcase-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 16px);
  min-width: 0;
}

/* TITLE */
.showcase-title {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: left;
  max-width: 760px;
}

/* LIST */
.showcase-taglines {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
  justify-items: start;
}

.showcase-taglines li {
  position: relative;
  width: fit-content;
  max-width: 100%;
  min-height: 48px;
  padding: 13px 16px 13px 42px;
  border-radius: 16px;
  border: 1px solid rgba(126, 207, 173, 0.12);
  background: rgba(255, 255, 255, 0.045);
  font-size: clamp(0.84rem, 1.08vw, 0.95rem);
  line-height: 1.45;
  color: #e2e2e2;
  cursor: pointer;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  transition: transform 0.28s ease, color 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

/* bullet */
.showcase-taglines li::before {
  content: "\2713";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(126, 207, 173, 0.16);
  color: #9fe2c5;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 0 0 4px rgba(65, 134, 110, 0.1);
}

/* ✨ HOVER */
.showcase-taglines li:hover {
  transform: translateX(5px);
  color: #ffffff;
  border-color: rgba(126, 207, 173, 0.36);
  background: rgba(65, 134, 110, 0.16);
  box-shadow: 0 14px 34px rgba(65, 134, 110, 0.12);
}

.showcase-taglines li.active {
  transform: translateX(5px);
  color: #ffffff;
  border-color: rgba(126, 207, 173, 0.36);
  background: rgba(65, 134, 110, 0.16);
  box-shadow: 0 14px 34px rgba(65, 134, 110, 0.12);
}

.showcase-taglines li:focus-visible {
  outline: 2px solid #7ecfad;
  outline-offset: 3px;
}

/* ================= STORE ================= */

.store-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: left;
  margin-top: clamp(14px, 2vw, 22px);
}

.store-box {
  position: relative;
  width: clamp(160px, 35%, 190px);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(4, 10, 8, 0.72);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s ease, filter 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.store-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.34) 48%, transparent 68%);
  opacity: 0;
  transform: translateX(-90%);
  transition: opacity 0.35s ease, transform 0.55s ease;
}

.store-box img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

/* ✨ PREMIUM HOVER */
.store-box:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(126, 207, 173, 0.48);
  background:
    linear-gradient(135deg, rgba(126, 207, 173, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(4, 10, 8, 0.82);
  box-shadow: 0 22px 48px rgba(65, 134, 110, 0.18);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.42));
}

.store-box:hover::before {
  opacity: 1;
  transform: translateX(90%);
}

.store-box:focus-visible {
  outline: 2px solid #7ecfad;
  outline-offset: 4px;
}

/* ================= IMAGE ================= */

.showcase-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: clamp(360px, 40vw, 520px);
}

.showcase-phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 500px);
  min-height: clamp(360px, 42vw, 520px);
}

.showcase-phone-stage::before {
  content: "";
  position: absolute;
  width: min(76%, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 207, 173, 0.28), rgba(65, 134, 110, 0.1) 46%, transparent 68%);
  filter: blur(6px);
}

.showcase-image img,
.showcase-phone-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: clamp(300px, 30vw, 430px);
  max-height: clamp(350px, 44vw, 560px);
  object-fit: contain;
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.45));
}

.showcase-floating-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(126, 207, 173, 0.24);
  background: rgba(4, 10, 8, 0.72);
  color: #dff5ea;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.showcase-floating-chip i {
  color: #9fe2c5;
  font-size: 17px;
}

.chip-scenes {
  top: 18%;
  left: 2%;
}

.chip-secure {
  right: 1%;
  bottom: 22%;
}

/* ✨ INTERACTIVE */
.showcase-image:hover img,
.showcase-phone-stage:hover img {
  transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.45));
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .showcase-container {
    grid-template-columns: minmax(650px, 1.35fr) minmax(280px, 0.65fr);
    gap: clamp(16px, 2.6vw, 28px);
  }

  .showcase-title {
    font-size: clamp(1.4rem, 2.1vw, 1.9rem);
  }

  .showcase-taglines li {
    font-size: 0.86rem;
  }

  .store-box {
    width: clamp(144px, 34%, 166px);
    height: 48px;
  }

  .showcase-image img {
    max-width: clamp(250px, 30vw, 340px);
    max-height: clamp(280px, 34vw, 410px);
  }

  .showcase-phone-stage {
    min-height: clamp(330px, 38vw, 460px);
  }
}

@media (max-width: 992px) {
  .showcase-section {
    padding: clamp(44px, 7vw, 64px) 5%;
  }

  .showcase-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: clamp(14px, 2.8vw, 24px);
    padding: clamp(18px, 4vw, 28px);
  }

  .showcase-image {
    order: -1;
    min-height: auto;
    margin-bottom: 4px;
  }

  .showcase-text {
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .showcase-taglines {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0 4px 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(126, 207, 173, 0.48) rgba(255, 255, 255, 0.08);
  }

  .showcase-taglines::-webkit-scrollbar {
    height: 6px;
  }

  .showcase-taglines::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
  }

  .showcase-taglines::-webkit-scrollbar-thumb {
    background: rgba(126, 207, 173, 0.48);
    border-radius: 999px;
  }

  .showcase-taglines li {
    text-align: left;
    width: max-content;
  }

  .store-buttons {
    justify-content: center;
  }

  .store-box {
    width: clamp(150px, 32vw, 172px);
    height: 50px;
  }

  .showcase-image img {
    max-width: min(68vw, 320px);
    max-height: min(42vh, 320px);
  }

  .showcase-phone-stage {
    min-height: clamp(300px, 58vw, 380px);
  }
}

@media (max-width: 768px) {
  .showcase-section {
    padding: clamp(48px, 8vw, 64px) 14px;
  }

  .showcase-top-heading {
    font-size: 12px;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
  }

  .showcase-description {
    width: min(100%, 94vw);
    margin-bottom: 18px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .showcase-title {
    font-size: clamp(1.24rem, 5.4vw, 1.55rem);
    white-space: normal;
    text-align: left;
  }

  .showcase-taglines {
    gap: 10px;
    padding: 0;
  }

  .showcase-taglines li {
    font-size: 0.82rem;
    padding: 12px 14px 12px 40px;
    line-height: 1.45;
  }

  .store-buttons {
    gap: 10px;
    justify-content: center;
  }

  .store-box {
    width: min(172px, calc(50% - 8px));
    height: 48px;
  }

  .store-box img {
    object-fit: contain;
  }

  .showcase-image {
    min-height: auto;
  }

  .showcase-image img {
    max-width: min(92vw, 320px);
    max-height: min(44vh, 300px);
  }

  .showcase-floating-chip {
    padding: 8px 11px;
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .showcase-section {
    padding: 46px 12px 52px;
  }

  .showcase-top-heading {
    font-size: 26px;
  }

  .showcase-description {
    font-size: 0.84rem;
    line-height: 1.52;
    margin-bottom: 12px;
  }

  .showcase-title {
    font-size: clamp(1.14rem, 5.8vw, 1.38rem);
    margin-bottom: 15px;
  }

  .showcase-taglines li {
    font-size: 0.76rem;
    padding: 12px 12px 12px 38px;
  }

  .store-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: min(100%, 220px);
    margin-inline: auto;
  }

  .store-box {
    width: 100%;
    height: 54px;
  }

  .showcase-image img {
    max-width: min(82vw, 285px);
    max-height: min(42vh, 260px);
  }

  .chip-scenes {
    left: 0;
    top: 14%;
  }

  .chip-secure {
    right: 0;
    bottom: 18%;
  }
}

@media (max-width: 420px) {
  .showcase-top-heading {
    font-size: 24px;
  }

  .showcase-title {
    font-size: 1.04rem;
  }

  .showcase-taglines li {
    font-size: 0.7rem;
    padding-left: 38px;
  }

  .showcase-taglines li::before {
    top: 12px;
    width: 16px;
    height: 16px;
  }

  .store-box {
    width: 100%;
    height: 50px;
  }

  .showcase-image img {
    max-width: min(76vw, 245px);
    max-height: min(37vh, 225px);
  }

  .showcase-floating-chip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-taglines li,
  .store-box,
  .showcase-image img {
    transition: none;
  }
}

/* =================================================================================================================================== */
.innovation-section {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 140px 20px 100px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

/* RING */

.ring-wrapper {
  position: relative;
  width: 800px;
  max-width: 90%;
  margin: 0 auto;
  transform: translateY(-68%);
}

.ring-wrapper img {
  width: 100%;
  opacity: 0.95;
  filter: drop-shadow(0 0 40px rgba(113, 195, 162, 0.25));
}

/* TEXT INSIDE RING */

.ring-text {
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
}

.ring-text h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  background: linear-gradient(135deg, #DFF5EA, #71c3a2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ring-text p {
  margin-top: 12px;
  font-size: 16px;
  color: #ccc;
}

/* STATS */

.stats-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: -28% auto 0;
  flex-wrap: wrap;
}

.stat-box {
  flex: 1;
  min-width: 220px;
  transition: 0.3s;
}

.stat-box h3 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}

.stat-box p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.6;
}

/* HOVER */

.stat-box:hover {
  transform: translateY(-8px);
}

.stat-box:hover h3 {
  background: linear-gradient(135deg, #DFF5EA, #71c3a2, #367861);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* RESPONSIVE */

@media(max-width:992px) {

  .ring-wrapper {
    transform: translateY(-40%);
  }

  .stats-container {
    margin-top: -15%;
    gap: 40px;
  }
}

@media(max-width:768px) {

  .ring-wrapper {
    width: 350px;
    transform: translateY(-20%);
  }

  .ring-text {
    position: absolute;
    top: 52%;
    left: 50%;
  }

  .ring-text h2 {
    font-size: 22px;
  }

  .ring-text p {
    font-size: 12px;
  }

  .stats-container {
    flex-direction: column;
    margin-top: 20px;
  }

  .stat-box h3 {
    font-size: 34px;
  }
}


/* ================================================================================================================= */
/* ================= SECTION ================= */

.sk-video-section{
  position: relative;
  width: 100%;
  min-height: clamp(420px, 88vh, 980px);
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 82% 78%, rgba(255,255,255,0.06), transparent 42%),
    #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(44px, 7vw, 88px) clamp(12px, 2.2vw, 28px);
  overflow: hidden;
}


/* ================= VIDEO WRAPPER ================= */

.sk-video-wrapper{
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: min(1080px, 100%);
  border-radius: clamp(12px, 1.8vw, 24px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 24px 66px rgba(0,0,0,0.82);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.sk-video-wrapper::before{
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.08), transparent 60%);
  opacity: 0.48;
  transition: opacity 0.35s ease;
}

.sk-video-wrapper::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at center, transparent 52%, rgba(0,0,0,0.18) 100%);
  opacity: 0.72;
  transition: opacity 0.35s ease;
}


/* HOVER PREMIUM EFFECT */

.sk-video-wrapper:hover{
  transform: translateY(-4px) scale(1.008);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.24),
    0 34px 96px rgba(0,0,0,0.88),
    0 0 38px rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
}

.sk-video-wrapper:hover::before,
.sk-video-wrapper:focus-within::before{
  opacity: 0.88;
}

.sk-video-wrapper:hover::after,
.sk-video-wrapper:focus-within::after{
  opacity: 0.48;
}

.sk-video-wrapper:focus-within{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.42);
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.2),
    0 32px 90px rgba(0,0,0,0.85);
}


/* ================= IFRAME ================= */

.sk-video-wrapper iframe{
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  max-height: none;
  display: block;
  border: none;
}


/* ================= RESPONSIVE ================= */

@media (max-width:1024px){

  .sk-video-wrapper iframe{
    aspect-ratio: 16 / 9;
  }

}

@media (max-width:768px){

  .sk-video-section{
    min-height: auto;
    padding: clamp(40px, 10vw, 64px) 12px;
  }

  .sk-video-wrapper{
    border-radius: 14px;
    transform: none;
  }

  .sk-video-wrapper iframe{
    min-height: 0;
  }

}

@media (max-width:480px){

  .sk-video-section{
    padding: 36px 8px;
  }

  .sk-video-wrapper{
    border-radius: 12px;
  }

  .sk-video-wrapper iframe{
    aspect-ratio: 16 / 9;
  }

}

@media (max-width:360px){
  .sk-video-wrapper iframe{
    aspect-ratio: 16 / 9;
  }
}

@media (hover: none){
  .sk-video-wrapper:hover{
    transform: none;
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.08),
      0 24px 66px rgba(0,0,0,0.82);
    border-color: rgba(255,255,255,0.14);
  }
}


/* ================================================================================================= */
/* ------------------------- client-section -------------------------- */
.clients-section {
  position: relative;
  min-height: clamp(640px, 92vh, 900px);
  overflow: hidden;
  background: black;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(52px, 7vw, 96px);
  color: #fff;
  isolation: isolate;
}

/* Transparent black overlay for whole section */
.clients-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  /* adjust opacity if needed */
  z-index: 2;
}

/* WAVY BACKGROUND */
.waves {
  position: absolute;
  inset: 0;
  background:
    black;
  animation: waveMove 12s ease-in-out infinite alternate;
}

@keyframes waveMove {
  0% {
    transform: scale(1) translateX(0);
  }

  100% {
    transform: scale(1.05) translateX(-40px);
  }
}


/* CONTENT */
.clients-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  padding: 0 6% clamp(28px, 4vh, 48px);
  margin: 0 auto;
}

.clients-content h2 {
  font-size: clamp(38px, 7vw, 65px);
  margin-bottom: 16px;
  line-height: 1.12;
  white-space: normal;
}

.clients-content p {
  font-size: clamp(14px, 1.50vw, 16px);
  line-height: 1.65;
  opacity: 0.9;
}

/* BUTTON CONTAINER */
.clients-btn {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  width: max-content;
  margin-inline: auto;
  z-index: 10;
}

/* BUTTON */
.clients-btn span {
  position: relative;
  display: inline-block;
  padding: 14px 42px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  background: linear-gradient(90deg, rgb(91, 152, 91), rgb(175, 174, 128));
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  box-shadow: 0 10px 40px rgba(112, 147, 110, 0.484);
  z-index: 1;
  /* 🔑 important */
}

/* 🔥 ANIMATED BORDER (ALWAYS RUNNING) */
.clients-btn span::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;

  background: linear-gradient(90deg,
      #63c58c,
      #96a076,
      #c0fa91,
      #63c58c);
  background-size: 300% 100%;
  animation: borderRun 4s linear infinite;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  z-index: 2;
}

/* BORDER RUNNING */
@keyframes borderRun {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }
}

/* BUBBLES */
.bubble {
  position: absolute;
  border-radius: 50%;

  /* Glass + bulb color */
  background:
    radial-gradient(circle at 30% 30%,
      #fffde7 0%,
      #fff59d 25%,
      #ffeb3b 45%,
      #fbc02d 65%,
      rgba(251, 192, 45, 0.7) 100%);

  /* 3D glass shine */
  box-shadow:
    inset -12px -12px 25px rgba(255, 255, 255, 0.35),
    inset 10px 10px 30px rgba(255, 193, 7, 0.45),
    0 0 35px rgba(255, 235, 59, 0.55),
    0 0 80px rgba(255, 215, 0, 0.35);

  backdrop-filter: blur(8px);
  opacity: 0.9;
  filter: saturate(1.2) contrast(1.05);
}

/* ✨ Inner reflection */
.bubble::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 22%;
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent 70%);
  filter: blur(2px);
}

.clients-content,
.clients-btn {
  z-index: 5;
}

.waves,
.bubble {
  z-index: 1;
}


/* 🔥 Soft glow pulse */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 30px rgba(255, 235, 59, 0.4);
  }

  100% {
    box-shadow: 0 0 70px rgba(255, 235, 59, 0.75);
  }
}

.bubble {
  animation: glowPulse 5s ease-in-out infinite alternate;
}


.b1 {
  width: 220px;
  height: 220px;
  top: 14%;
  left: 10%;
}

.b2 {
  width: 280px;
  height: 280px;
  top: 6%;
  right: 10%;
}

.b3 {
  width: 180px;
  height: 180px;
  bottom: 18%;
  left: 25%;
}

.b4 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: 20%;
}

/* 🔥 STRONG FLOATING ANIMATIONS */
@keyframes floatStrongTR {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-20px, 20px);
  }

  50% {
    transform: translate(-35px, -15px);
  }

  75% {
    transform: translate(-15px, 30px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes floatStrongBL {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(20px, -20px);
  }

  50% {
    transform: translate(35px, 15px);
  }

  75% {
    transform: translate(15px, -30px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* ================= WHITE LOGO SECTION ================= */
.clients-logos-wrapper {
  position: relative;
  width: 100%;
  margin-top: auto;
  background: #fff;
  border-top-left-radius: clamp(34px, 5vw, 90px);
  border-top-right-radius: clamp(34px, 5vw, 90px);
  padding: clamp(56px, 5vw, 68px) 6% clamp(34px, 4vw, 50px);
  z-index: 4;
  box-shadow: 0 -20px 44px rgba(0, 0, 0, 0.22);
}

/* LOGO GRID */
.clients-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.7vw, 22px);
  align-items: center;
  justify-items: center;
}

/* LOGO IMAGE */
.clients-logos img {
  width: clamp(98px, 9vw, 132px);
  height: clamp(54px, 5.4vw, 72px);
  object-fit: contain;
  opacity: 0.88;
  padding: 8px 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 245, 0.94));
  border: 1px solid rgba(34, 34, 34, 0.08);
  box-shadow: 0 8px 18px rgba(23, 28, 23, 0.08);
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

/* HOVER EFFECT */
.clients-logos img:hover {
  transform: translateY(-4px) scale(1.06);
  opacity: 1;
  filter: saturate(1.08);
  box-shadow: 0 14px 26px rgba(58, 99, 79, 0.2);
}

.clients-logos img:active {
  transform: translateY(-1px) scale(1.02);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1199px) {
  .clients-section {
    min-height: 82vh;
    padding-top: clamp(44px, 5vw, 72px);
  }
}

@media (max-width: 992px) {
  .clients-section {
    min-height: auto;
  }

  .clients-logos-wrapper {
    margin-top: auto;
  }

  .clients-logos {
    grid-template-columns: repeat(4, 1fr);
  }

  .clients-content h2 {
    font-size: clamp(32px, 5.8vw, 54px);
  }
}


@media (max-width: 768px) {
  .clients-section {
    min-height: auto;
    padding-top: 56px;
    overflow: clip;
  }

  .clients-logos-wrapper {
    margin-top: auto;
  }

  .clients-content {
    padding-bottom: 26px;
  }

  .clients-content h2 {
    font-size: 32px;
  }

  .clients-content p {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .clients-btn span {
    padding: 12px 34px;
    font-size: 16px;
  }

  .clients-logos-wrapper {
    border-top-left-radius: 44px;
    border-top-right-radius: 44px;
    padding-top: 72px;
  }

  .clients-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .b2,
  .b4 {
    display: none;
  }

  .b1 {
    width: 120px;
    height: 120px;
    top: 5%;
    right: 10%;
    left: auto;
    animation:
      glowPulse 4s ease-in-out infinite alternate,
      floatStrongTR 4s ease-in-out infinite;
  }

  .b3 {
    width: 170px;
    height: 170px;
    bottom: 50%;
    left: 8%;
    animation:
      glowPulse 4s ease-in-out infinite alternate,
      floatStrongBL 5s ease-in-out infinite;
  }
}

@media (max-width: 600px) {

  .clients-logos-wrapper {
    padding: 90px 6% 50px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }

  .clients-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .clients-logos img {
    width: 110px;
    height: 60px;
  }

  .clients-btn span {
    font-size: 16px;
    padding: 12px 36px;
  }
}

@media (max-width: 480px) {

  .clients-content h2 {
    font-size: 24px;
    text-align: center;
    line-height: 1.3;
  }

  .clients-btn {
    top: -26px;
  }

  .clients-logos {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* ============================================================================================================================= */
/* =========================
   SMART SOCIETY SECTION
========================= */
.ss-section {
  padding: 100px 6%;
  background: #fff;
  overflow: hidden;
}

/* =========================
   HEADING
========================= */
.ss-heading {
  text-align: center;
  margin-bottom: 60px;
}

.ss-heading h2 {
  font-size: 42px;
  font-weight: 600;
  color: #000;
}

.ss-heading span {
  background: #41866e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ss-heading p {
  color: #777;
  margin-top: 10px;
}

/* =========================
   GRID
========================= */
.ss-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* =========================
   CARD
========================= */
.ss-card {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s ease;
}

/* IMAGE */
.ss-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  /* start zoomed */
  transition: transform 0.6s ease;
}

/* =========================
   OVERLAY (BOTTOM DARK → TOP LIGHT)
========================= */
.ss-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.786) 0%,
      rgba(0, 0, 0, 0.484) 40%,
      rgba(0, 0, 0, 0.142) 70%,
      rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

/* =========================
   CENTER CONTENT
========================= */
.ss-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  text-align: center;
  z-index: 2;
  width: 80%;
  transition: 0.4s ease;
}

/* TEXT */
.ss-content h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.9);
}

.ss-content p {
  font-size: 14px;
  color: #eee;
  margin-bottom: 18px;
  line-height: 1.5;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

/* =========================
   HOVER EFFECTS 🔥
========================= */

/* zoom OUT */
.ss-card:hover img {
  transform: scale(1);
}

/* lift */
.ss-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* content perfect center */
.ss-card:hover .ss-content {
  transform: translate(-50%, -50%);
}

/* AOS + interaction polish for ss-cards */
.ss-card[data-aos] {
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.ss-card[data-aos].aos-animate:hover {
  transform: translateY(-10px) scale(1.01);
}

/* =========================
   RESPONSIVE
========================= */

/* Laptop */
@media (max-width: 1200px) {
  .ss-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */
@media (max-width: 768px) {
  .ss-section {
    padding: 80px 5%;
  }

  .ss-heading h2 {
    font-size: 30px;
  }

  .ss-card {
    height: 360px;
  }
}

/* Mobile */
@media (max-width: 500px) {
  .ss-cards {
    grid-template-columns: 1fr;
  }

  .ss-heading h2 {
    font-size: 26px;
  }

  .ss-heading p {
    font-size: 13px;
  }

  .ss-card {
    height: 300px;
  }

  .ss-content {
    width: 90%;
  }

  .ss-content h3 {
    font-size: 18px;
  }

  .ss-content p {
    font-size: 12px;
  }
}

/* ============================================================================================================================== */


.smart-orbit-section {
  min-height: 100vh;
  background: #f7f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

/* heading */

.orbit-header h2 {
  color: #000;
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 600;
}

.orbit-header h2 span {
  background: #41866e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.orbit-header p {
  color: #5d5d5d;
  max-width: 880px;
  margin: auto;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 80px;
}

/* container */

.orbit-container {
  position: relative;
  width: 520px;
  height: 520px;
}

/* center device */

.center-device {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  z-index: 3;
}

.center-device img {
  width: 100%;
  filter: drop-shadow(0 0 25px rgba(0, 255, 149, 0.249));
}

/* green glow circle */

.green-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 149, 0.044), transparent 70%);
  z-index: -1;
}

/* orbit base */

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/* inner orbit */

.inner-orbit {
  width: 350px;
  height: 350px;
  border: 1px dashed #2f896a;
}

/* outer orbit */

.outer-orbit {
  width: 550px;
  height: 550px;
  border: 1px dashed #367861;
}

/* icons */

.orbit-icon {
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DFF5EA, #71c3a2, #367861);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.orbit-icon img {
  width: 30px;
}

/* icon positions */

.inner-orbit .orbit-icon:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.inner-orbit .orbit-icon:nth-child(2) {
  bottom: 0;
  left: 15%;
}

.inner-orbit .orbit-icon:nth-child(3) {
  bottom: 0;
  right: 15%;
}

.outer-orbit .orbit-icon:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.outer-orbit .orbit-icon:nth-child(2) {
  bottom: 0;
  left: 20%;
}

.outer-orbit .orbit-icon:nth-child(3) {
  bottom: 0;
  right: 20%;
}

/* ================= LARGE SCREENS ================= */

@media (max-width:1200px) {

  .orbit-container {
    width: 450px;
    height: 450px;
  }

  .center-device {
    width: 200px;
  }

  .inner-orbit {
    width: 300px;
    height: 300px;
  }

  .outer-orbit {
    width: 480px;
    height: 480px;
  }

  .green-glow {
    width: 420px;
    height: 420px;
  }

}

/* ================= TABLET ================= */

@media (max-width:900px) {

  .orbit-header h2 {
    font-size: 34px;
  }

  .orbit-header p {
    font-size: 15px;
    margin-bottom: 60px;
  }

  .orbit-container {
    width: 380px;
    height: 380px;
  }

  .center-device {
    width: 180px;
  }

  .inner-orbit {
    width: 260px;
    height: 260px;
  }

  .outer-orbit {
    width: 420px;
    height: 420px;
  }

  .green-glow {
    width: 350px;
    height: 350px;
  }

  .orbit-icon {
    width: 50px;
    height: 50px;
  }

  .orbit-icon img {
    width: 30px;
  }

}

/* ================= MOBILE ================= */

@media (max-width:600px) {

  .smart-orbit-section {
    padding: 60px 15px;
  }

  .orbit-header h2 {
    font-size: 26px;
  }

  .orbit-header p {
    font-size: 14px;
    margin-bottom: 50px;
  }

  .orbit-container {
    width: 300px;
    height: 300px;
  }

  .center-device {
    width: 140px;
  }

  .inner-orbit {
    width: 200px;
    height: 200px;
  }

  .outer-orbit {
    width: 320px;
    height: 320px;
  }

  .green-glow {
    width: 260px;
    height: 260px;
  }

  .orbit-icon {
    width: 42px;
    height: 42px;
  }

  .orbit-icon img {
    width: 24px;
  }

}

/* ================= SMALL MOBILE ================= */

@media (max-width:400px) {

  .orbit-container {
    width: 260px;
    height: 260px;
  }

  .center-device {
    width: 120px;
  }

  .inner-orbit {
    width: 180px;
    height: 180px;
  }

  .outer-orbit {
    width: 280px;
    height: 280px;
  }

  .green-glow {
    width: 220px;
    height: 220px;
  }

  .orbit-icon {
    width: 38px;
    height: 38px;
  }

  .orbit-icon img {
    width: 20px;
  }

}

/* =========================================================================================================================== */
/* ================= SECTION ================= */
/* ================= SECTION WITH BACKGROUND ================= */

.features-section {
  padding: 110px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.features-section.bg-image {
  background: url('/assets/images/banners/smart-socity-banner-img.png') center/cover no-repeat;
}

/* DARK OVERLAY */
.features-section.bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.492);
  /* adjust darkness */
  z-index: 0;
}

/* subtle glow */
.features-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 255, 150, 0.06), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* ================= HEADER ================= */

.features-header {
  position: relative;
  z-index: 2;
}

.features-header h2 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 12px;
  font-weight: 600;
}

.features-header p {
  color: #cfd6dd;
  max-width: 650px;
  margin: auto;
  margin-bottom: 70px;
  font-size: 16px;
}

/* ================= GRID ================= */

.features-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* Society features (index): GSAP animates outer card; inner surface lifts on hover/focus */
.features-section .feature-card.society-feature-card {
  opacity: 0;
  transform: translateY(56px);
  transition: border-color 0.45s ease, box-shadow 0.45s ease, background 0.45s ease;
}

.features-section .society-card-surface {
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.features-section .society-feature-card:hover .society-card-surface,
.features-section .society-feature-card:focus-within .society-card-surface {
  transform: translateY(-10px) scale(1.02);
  filter: brightness(1.06);
}

.features-section .society-feature-card:focus-visible {
  outline: 2px solid rgba(0, 255, 150, 0.55);
  outline-offset: 4px;
}

.features-section .society-feature-card:hover,
.features-section .society-feature-card:focus-within {
  border-color: rgba(32, 138, 94, 0.4);
  box-shadow: 0 15px 45px rgba(127, 222, 181, 0.22);
}

/* ================= CARD (GLASS EFFECT 🔥) ================= */

.feature-card {
  background: rgba(1, 1, 1, 0.163);
  border: 1px solid rgba(229, 229, 229, 0.282);
  border-radius: 20px;
  padding: 35px;
  text-align: left;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.563);

  transform: translateY(60px);
  opacity: 0;

  transition: all 0.5s ease;
}

/* hover */
.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border: 1px solid rgba(32, 138, 94, 0.4);
  box-shadow: 0 15px 45px rgba(0, 255, 150, 0.1);
}

/* ================= ICON ================= */

.icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;


  background: rgba(14, 79, 52, 0.1);
  border: 1px solid rgba(0, 255, 150, 0.3);

  box-shadow: 0 0 15px rgba(0, 255, 150, 0.2);

  transition: 0.3s ease;
}

.icon i {
  font-size: 22px;
  background: linear-gradient(135deg, #DFF5EA, #71c3a2, #367861);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* icon hover */
.feature-card:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(0, 255, 150, 0.4);
}

/* ================= TEXT ================= */

.feature-card h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 20px;
}

.feature-card p {
  color: #cbd5df;
  font-size: 15px;
  line-height: 1.7;
}

/* ================= ANIMATION ================= */

.feature-card.show {
  transform: translateY(0);
  opacity: 1;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-header h2 {
    font-size: 34px;
  }
}

@media(max-width: 500px) {
  .features-section {
    padding: 80px 5%;
  }

  .features-header h2 {
    font-size: 26px;
  }

  .features-header p {
    font-size: 14px;
  }
}

/* ========================================================================================================================= */


/* ================= SECTION ================= */

.hsmart-section {
  background: radial-gradient(circle at top, #0a0a0a, #000);
  color: #fff;
  padding: 120px 6% 240px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* glow */
.hsmart-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 150, 0.12), transparent);
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
}

.hsmart-container h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

/* ================= ICON GRID ================= */

.icon-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  margin: 90px 0;

}

.icon-box {
  cursor: pointer;
  transition: all 0.4s ease;
  padding-top: 40px;
}

.icon-box img {
  width: 85px;
  height: 85px;
  padding: 16px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.5),
    inset 0 0 10px rgba(255, 255, 255, 0.05);

  transition: all 0.4s ease;
}

/* hover */
.icon-box:hover img {
  transform: translateY(-10px) scale(1.08);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(0, 255, 150, 0.3);
}

.icon-box span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #cfd6dd;
  transition: 0.3s;
}

.icon-box:hover span {
  color: #00ff9c;
}

/* ================= TITLE ================= */

.middle-title {
  font-size: 34px;
  margin-top: 110px;
  color: #fff;
}

/* ================= CARD SECTION ================= */

.hsmart-cards {
  margin-top: -160px;
  padding-bottom: 120px;
  background: #0a0a0a;
}

/* GRID */
.card-wrap {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.hsmart-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
  height: 500px;
}

/* IMAGE */
.hsmart-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* 🔥 STATIC BLACK GRADIENT (NO HOVER CHANGE) */
.hsmart-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.733) 20%,
      rgba(0, 0, 0, 0.671) 50%,
      transparent 100%);
}

/* CONTENT */
.card-content {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 40px;
  text-align: center;
  color: #fff;

  transition: 0.4s ease;
}

.card-content h3 {
  font-size: 26px;
  margin-bottom: 10px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.541);
}

.card-content p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #d0d6dd;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.471);
}

/* BUTTON */
.card-content button {
  background: linear-gradient(135deg, #DFF5EA, #71c3a2, #367861);
  color: #000;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card-content button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(0, 255, 149, 0.108);
}

.card-action-link {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #DFF5EA, #71c3a2, #367861);
  color: #000;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card-action-link:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(0, 255, 149, 0.108);
}

.partner-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 9, 6, 0.72);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 9999;
}

.partner-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.partner-modal-card {
  width: min(720px, 94vw);
  background: linear-gradient(165deg, #0e1512, #141e1a);
  border: 1px solid rgba(132, 220, 181, 0.34);
  border-radius: 20px;
  padding: 28px 26px 24px;
  color: #e7f3ec;
  box-shadow: 0 28px 45px rgba(0, 0, 0, 0.45), 0 0 22px rgba(95, 205, 156, 0.16);
  position: relative;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.28s ease;
}

.partner-modal-overlay.show .partner-modal-card {
  transform: translateY(0) scale(1);
}

.partner-modal-header {
  margin-bottom: 16px;
}

.partner-modal-kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9de5c4;
  margin-bottom: 8px;
  font-weight: 600;
}

.partner-modal-header h3 {
  font-size: 32px;
  margin-bottom: 8px;
}

.partner-modal-copy {
  color: #b8d5c8;
  font-size: 14px;
  margin-bottom: 0;
}

.partner-modal-body {
  border-top: 1px solid rgba(166, 230, 200, 0.18);
  padding-top: 16px;
}

.partner-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(163, 245, 204, 0.12);
  color: #b2f7d5;
  cursor: pointer;
}

.partner-modal-close i {
  font-size: 20px;
}

.partner-modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.partner-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.partner-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.partner-form-group label {
  color: #ccf3df;
  font-size: 13px;
  font-weight: 500;
}

.partner-modal-form input,
.partner-modal-form textarea {
  width: 100%;
  border-radius: 11px;
  border: 1px solid rgba(177, 219, 200, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: #eff9f2;
  padding: 12px 13px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.partner-modal-form input::placeholder,
.partner-modal-form textarea::placeholder {
  color: #9eb5aa;
}

.partner-modal-form textarea {
  min-height: 112px;
  resize: vertical;
}

.partner-submit-btn {
  border: none;
  border-radius: 28px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #d6f7e4, #8fe0bc, #4ea97d);
  color: #073a24;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(92, 193, 150, 0.2);
}

.partner-modal-form input:focus,
.partner-modal-form textarea:focus {
  border-color: rgba(134, 228, 183, 0.95);
  box-shadow: 0 0 0 3px rgba(121, 219, 172, 0.18);
}

.partner-modal-form input.invalid,
.partner-modal-form textarea.invalid {
  border-color: #ff8888;
}

.partner-success {
  margin-top: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #daf8e6, #bff0d6);
  color: #1c6141;
  padding: 11px 13px;
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.partner-success i {
  font-size: 18px;
}

.partner-success.show {
  display: inline-flex;
}

@media (max-width: 768px) {
  .partner-modal-card {
    width: min(94vw, 560px);
    padding: 22px 18px 18px;
  }

  .partner-modal-header h3 {
    font-size: 27px;
  }

  .partner-form-row {
    grid-template-columns: 1fr;
  }
}

/* ================= HOVER (ONLY IMAGE + CARD) ================= */

.hsmart-card:hover img {
  transform: scale(1.12);
}

.hsmart-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

/* ================= RESPONSIVE ================= */

/* Tablet + small laptops */
@media (max-width: 1024px) {
  .hsmart-section {
    padding: 96px 5% 190px;
  }

  .hsmart-container h2 {
    font-size: clamp(30px, 4.1vw, 36px);
  }

  .hsmart-container > p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 92%;
    margin: 0 auto;
  }

  .icon-scroll {
    margin: 70px 0 48px;
  }

  .icon-track {
    gap: 28px;
  }

  .icon-box {
    min-width: 124px;
  }

  .icon-box img {
    width: 74px;
    height: 74px;
    padding: 13px;
    border-radius: 15px;
  }

  .icon-box span {
    font-size: 13px;
  }

  .middle-title {
    margin-top: 74px;
    font-size: clamp(28px, 4.2vw, 34px);
  }

  .hsmart-cards {
    margin-top: -116px;
    padding: 0 5% 96px;
  }

  .card-wrap {
    max-width: 960px;
    gap: 26px;
  }

  .hsmart-card {
    height: 420px;
  }

  .card-content {
    padding: 30px 24px;
  }

  .card-content h3 {
    font-size: 24px;
  }
}

/* Tablet portrait + large mobile */
@media (max-width: 768px) {
  .hsmart-section {
    padding: 74px 5% 50px;
  }

  .hsmart-container h2 {
    font-size: clamp(24px, 6.2vw, 32px);
    line-height: 1.24;
    margin-bottom: 15px;
  }

  .hsmart-container > p {
    font-size: 14px;
    line-height: 1.65;
    max-width: 94%;
    margin: 0 auto;
  }

  .hsmart-container > p br,
  .middle-title br {
    display: none;
  }

  .icon-scroll {
    margin: 20px 0 10px;
  }

  .icon-track {
    gap: 18px;
  }

  .icon-box {
    min-width: 120px;
    padding-top: 12px;
  }

  .icon-box img {
    width: 64px;
    height: 64px;
    padding: 11px;
    border-radius: 13px;
  }

  .icon-box span {
    font-size: 14px;
    line-height: 1.35;
  }

  .middle-title {
    margin-top: 50px;
    line-height: 1.3;
    font-size: clamp(22px, 5.6vw, 30px);
  }

  .hsmart-cards {
    margin-top: -84px;
    padding: 0 5% 84px;
  }

  .card-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hsmart-card {
    height: 320px;
    border-radius: 14px;
  }

  .card-content {
    padding: 22px 16px;
  }

  .card-content h3 {
    font-size: 20px;
    line-height: 1.25;
  }

  .card-content p {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .card-action-link,
  .card-content button {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 22px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hsmart-section {
    padding: 62px 4.5% 120px;
  }

  .hsmart-container h2 {
    font-size: clamp(22px, 7vw, 28px);
    margin-bottom: 10px;
  }

  .hsmart-container > p {
    font-size: 13px;
    line-height: 1.6;
    max-width: 98%;
    margin: 0 auto 6px;
  }

  .icon-scroll {
    margin: 14px 0 6px;
  }

  .icon-box {
    min-width: 132px;
    padding-top: 4px;
  }

  .icon-box img {
    width: 82px;
    height: 82px;
    padding: 13px;
    border-radius: 16px;
  }

  .icon-box span {
    font-size: 11px;
    margin-top: 8px;
    line-height: 1.3;
  }

  .middle-title {
    margin-top: 22px;
    margin-bottom: 0;
    font-size: clamp(20px, 6.2vw, 24px);
  }

  .hsmart-cards {
    margin-top: -68px;
    padding: 0 4.5% 72px;
  }

  .hsmart-card {
    height: 285px;
  }

  .card-content {
    padding: 18px 14px;
  }

  .card-content h3 {
    font-size: 18px;
  }

  .card-content p {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .card-action-link,
  .card-content button {
    width: auto;
    max-width: 100%;
    font-size: 12px;
    padding: 9px 16px;
  }
}

/* ==================================================================================================
   Featured products section (home)
================================================================================================== */
.featured-products-section {
  position: relative;
  isolation: isolate;
  padding: 82px 6%;
  background: #f7f2f2;
  overflow: hidden;
}

.featured-products-section::before,
.featured-products-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.featured-products-section::before {
  width: 520px;
  height: 520px;
  left: -160px;
  top: -220px;
  background: radial-gradient(circle, rgba(65, 134, 110, 0.08), transparent 68%);
}

.featured-products-section::after {
  width: 470px;
  height: 470px;
  right: -150px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(121, 243, 145, 0.07), transparent 70%);
}

.featured-products-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.featured-products-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 42px;
}

.featured-products-head h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #0a3226;
  letter-spacing: -0.02em;
  text-shadow: 0 14px 34px rgba(11, 93, 66, 0.12);
  margin-bottom: 12px;
}

.featured-products-head p {
  font-size: 15px;
  line-height: 1.7;
  color: #395049;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.featured-product-card {
  background: linear-gradient(165deg, #ffffff 0%, #f6fcf9 100%);
  border: 1px solid rgba(93, 140, 112, 0.18);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 16px 34px rgba(14, 39, 30, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

@media (hover: hover) and (pointer: fine) {
  .featured-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(65, 134, 110, 0.34);
    box-shadow:
      0 24px 52px rgba(14, 39, 30, 0.14),
      0 0 0 1px rgba(65, 134, 110, 0.1);
  }
}

.featured-product-image-wrap {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(150deg, #f9fcfb 0%, #edf5f1 100%);
}

.featured-product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {
  .featured-product-card:hover .featured-product-image-wrap img {
    transform: scale(1.04);
  }
}

.featured-product-content {
  padding: 20px 20px 24px;
  text-align: center;
}

.featured-product-content h3 {
  font-size: 22px;
  color: #123327;
  margin-bottom: 10px;
  line-height: 1.28;
}

.featured-product-content p {
  font-size: 14px;
  line-height: 1.68;
  color: #425952;
  margin-bottom: 16px;
}

.featured-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(135deg, #0b5d42 0%, #096343 52%, #0a3f30 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(11, 93, 66, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.featured-product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11, 93, 66, 0.34);
  filter: brightness(1.05);
  color: #fff;
}

@media (max-width: 1024px) {
  .featured-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .featured-products-section {
    padding: 68px 5%;
  }

  .featured-products-head {
    margin-bottom: 34px;
  }

  .featured-products-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .featured-product-image-wrap {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .featured-products-section {
    padding: 56px 4%;
  }

  .featured-products-head h2 {
    font-size: 28px;
  }

  .featured-product-content h3 {
    font-size: 20px;
  }

  .featured-product-btn {
    width: 100%;
  }
}

/* removed duplicate hsmart mobile overrides */

/* ================= AUTO SCROLL ================= */

.icon-scroll {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin: 90px 0;
  cursor: grab;
}

.icon-scroll:active {
  cursor: grabbing;
}

.icon-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollIcons 25s linear infinite;
}

/* Reverse direction */
.icon-track.reverse {
  animation-direction: reverse;
}

/* Hover pause */
.icon-scroll:hover .icon-track {
  animation-play-state: paused;
}

/* Keep design same */
.icon-box {
  min-width: 140px;
  text-align: center;
}

/* smooth infinite */
@keyframes scrollIcons {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive speed */
@media (max-width: 768px) {
  .icon-track {
    animation-duration: 20s;
  }
}

@media (max-width: 480px) {
  .icon-track {
    animation-duration: 16s;
  }
}








* {
  scroll-behavior: smooth;
}

.showcase-item,
.product-step,
.feature-card {
  will-change: transform, opacity;
}

/* ==================================================================================================
   Featured products hard override (keep at end)
================================================================================================== */
.featured-products-section {
  display: block;
  position: relative;
  isolation: isolate;
  padding: 82px 6%;
  background: #f7f2f2;
  overflow: hidden;
}

.featured-products-section [data-aos] {
  opacity: 1;
}

.featured-products-section .featured-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.featured-products-section .featured-product-card {
  background: linear-gradient(165deg, #ffffff 0%, #f6fcf9 100%);
  border: 1px solid rgba(93, 140, 112, 0.18);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 16px 34px rgba(14, 39, 30, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.featured-products-section .featured-product-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(125deg, rgba(113, 195, 162, 0.22), transparent 36%, rgba(59, 113, 94, 0.2));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.featured-products-section .featured-product-card:hover {
  /* transform: translateY(-10px); */
  border-color: rgba(65, 134, 110, 0.42);
  box-shadow: 0 24px 52px rgba(14, 39, 30, 0.18);
}

.featured-products-section .featured-product-card:hover::before {
  opacity: 1;
}

.featured-products-section .featured-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e8fff5;
  background: rgba(7, 58, 41, 0.86);
  border: 1px solid rgba(174, 235, 207, 0.35);
  backdrop-filter: blur(5px);
}

.featured-products-section .featured-product-image-wrap {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 24px;
  background: #ffffff;
}

.featured-products-section .featured-product-image-wrap img {
  border-radius: 12px;
}

.featured-products-section .featured-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 24px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(135deg, #0b5d42 0%, #096343 52%, #0a3f30 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.featured-products-section .featured-product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 93, 66, 0.35);
  filter: brightness(1.04);
}

.featured-products-section .featured-product-btn i {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.featured-products-section .featured-product-btn:hover i {
  transform: translateX(3px);
}

.featured-products-section .featured-product-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 16px;
}

.featured-products-section .featured-product-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #154233;
  background: #edf8f2;
  border: 1px solid rgba(65, 134, 110, 0.2);
  padding: 6px 10px;
  border-radius: 999px;
}

.featured-products-section .featured-product-meta i {
  font-size: 15px;
  color: #0b5d42;
}

@media (max-width: 1024px) {
  .featured-products-section .featured-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .featured-products-section {
    padding: 68px 5%;
  }

  .featured-products-section .featured-products-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .featured-products-section .featured-product-badge {
    font-size: 10px;
    padding: 6px 10px;
  }

  .featured-products-section .featured-product-content {
    padding: 18px 16px 20px;
  }

  .featured-products-section .featured-product-content h3 {
    font-size: 19px;
  }

  .featured-products-section .featured-product-content p {
    font-size: 13px;
  }

  .featured-products-section .featured-product-meta {
    justify-content: flex-start;
  }
}
