  .founder-section .faq-left-items-2 .sec-title .title.text-white.mt-4 {
    max-width: 430px;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
  }

  .founder-cards-row {
    --bs-gutter-y: 1.5rem;
  }

  .founder-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    padding: 32px 28px;
    overflow: hidden;
    border: 1px solid rgba(12, 47, 37, 0.1);
    border-radius: 28px;
    background:
      radial-gradient(circle at top right, rgba(255, 216, 0, 0.18), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 248, 237, 0.96) 100%);
    box-shadow: 0 22px 55px rgba(12, 47, 37, 0.16);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }

  .founder-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--theme-color1) 0%, var(--theme-color2) 100%);
  }

  .founder-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 216, 0, 0.45);
    box-shadow: 0 30px 65px rgba(12, 47, 37, 0.22);
  }

  .founder-card__header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
  }

  .founder-card__image-wrap {
    position: relative;
    flex: 0 0 112px;
    width: 112px;
    height: 112px;
  }

  .founder-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border: 4px solid var(--theme-color-white);
    border-radius: 50%;
    box-shadow: 0 16px 35px rgba(12, 47, 37, 0.18);
  }

  .founder-card__role {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--theme-color2);
    color: var(--theme-color-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .founder-card__role i {
    color: var(--theme-color1);
  }

  .founder-card__name {
    margin: 0 0 8px;
    color: var(--theme-color2);
    font-size: 28px;
    line-height: 1.15;
  }

  .founder-card__designation {
    margin: 0;
    color: #5e716c;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
  }

  .founder-card__summary {
    margin: 0;
    color: #51645f;
    font-size: 16px;
    line-height: 1.85;
  }

  .founder-card > p:not(.founder-card__summary) {
    display: none;
  }

  .founder-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: auto 0 0;
    padding: 24px 0 0;
    list-style: none;
    border-top: 1px solid rgba(12, 47, 37, 0.12);
  }

  .founder-card__tag {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(12, 47, 37, 0.06);
    color: var(--theme-color2);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
  }

  .founder-section__lead {
    max-width: 430px;
    margin: 20px 0 0;
    color: #5c716b;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
  }

  .founder-section--plain {
    background: transparent;
    position: relative;
    overflow: hidden;
  }

  .founder-section--plain .container {
    position: relative;
    z-index: 1;
  }

  .founder-section--plain .founder-shape1 {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.95;
    -webkit-animation-name: moveLeftRight;
    animation-name: moveLeftRight;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
  }

  .founder-section--plain .founder-shape2 {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.95;
    -webkit-animation: moveRightToLeft 10s linear infinite alternate;
    animation: moveRightToLeft 10s linear infinite alternate;
  }

  .founder-section--plain .faq-left-items-2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: none;
    height: 100%;
  }

  .founder-section--plain .faq-left-items-2 .sec-title .title {
    color: var(--theme-color2);
  }

  .founder-section__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .founder-section__detail {
    padding: 18px 18px 16px;
    border: 1px solid rgba(12, 47, 37, 0.1);
    border-radius: 20px;
    background:
      radial-gradient(circle at top right, rgba(255, 216, 0, 0.12), transparent 38%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 248, 237, 0.96) 100%);
    box-shadow: 0 12px 28px rgba(12, 47, 37, 0.08);
  }

  .founder-section__detail-title {
    display: block;
    margin-bottom: 8px;
    color: var(--theme-color2);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
  }

  .founder-section__detail-text {
    margin: 0;
    color: #5e716c;
    font-size: 14px;
    line-height: 1.7;
  }

  .founder-section--plain .faq-left-items-2 .faq-image {
    max-width: none;
    margin-top: 0;
    flex: 1;
  }

  .founder-section--plain .faq-left-items-2 .faq-image img {
    display: block;
    min-height: 360px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-mask-image: none;
    mask-image: none;
    border-radius: 28px;
    box-shadow: 0 22px 55px rgba(12, 47, 37, 0.12);
  }

  .about-section-soft {
    background: linear-gradient(180deg, #fbfcf7 0%, #f3f6ea 100%);
  }

  .main-header.header-style-one .header-lower .main-box,
  .sticky-header .inner-container {
    overflow: visible;
  }

  .main-header.header-style-one .header-lower .logo {
    position: relative;
    z-index: 3;
    margin-right: 18px;
  }

  .main-header.header-style-one .header-lower .logo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: -14px 0;
    padding: 10px 18px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 34px rgba(12, 47, 37, 0.12);
        /* border-top: 10px solid #4f2e25; */
    border-bottom: 10px solid #4f2e25;
  }

  .main-header.header-style-one .header-lower .logo img {
    display: block;
    width: auto !important;
    max-width: clamp(170px, 17vw, 220px);
    max-height: 105px;
    object-fit: contain;
  }

  .sticky-header .logo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 24px rgba(12, 47, 37, 0.1);
        /* border-top: 10px solid #4f2e25; */
    border-bottom: 10px solid #4f2e25;
  }

  .sticky-header .logo img {
    display: block;
    width: auto !important;
    max-width: 170px;
    max-height: 60px;
    object-fit: contain;
  }

  .mobile-menu .nav-logo img {
    display: block;
    width: auto;
    max-width: 170px;
    max-height: 64px;
    object-fit: contain;
  }

  .footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
  }

  .footer-logo img {
    display: block;
    width: auto;
    max-width: 210px;
    max-height: 86px;
    object-fit: contain;
  }





  .product-category-section::after {
    content: "";
    position: absolute;
    top: -160px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 216, 0, 0.16) 0%, rgba(255, 216, 0, 0) 72%);
    pointer-events: none;
  }

  .product-category-section .container {
    position: relative;
    z-index: 1;
  }

  .product-category-header {
    margin-bottom: 40px;
  }

  .product-category-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .product-category-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--theme-color1);
    box-shadow: 0 0 0 6px rgba(255, 216, 0, 0.16);
  }

  .product-category-title {
    margin: 0;
    color: var(--theme-color-white);
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
  }

  .product-category-intro {
    max-width: 520px;
    margin: 0 0 0 auto;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.9;
  }

  .product-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .product-category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(12, 47, 37, 0.12);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 247, 239, 0.98) 100%);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  }

  .product-category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--theme-color1) 0%, rgba(255, 255, 255, 0.82) 100%);
  }

  .product-category-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 216, 0, 0.48);
    box-shadow: 0 30px 56px rgba(0, 0, 0, 0.28);
  }

  .product-category-card__media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #0c2d24;
  }

  .product-category-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 32, 25, 0.02) 20%, rgba(5, 32, 25, 0.48) 100%);
  }

  .product-category-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
  }

  .product-category-card:hover .product-category-card__media img {
    transform: scale(1.08);
  }

  .product-category-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 16px;
    padding: 24px 24px 26px;
  }

  .product-category-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .product-category-card__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(255, 216, 0, 0.2);
    color: var(--theme-color2);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .product-category-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(12, 47, 37, 0.08);
    color: #4d615b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .product-category-card__name {
    margin: 0;
    color: var(--theme-color2);
    font-size: 26px;
    line-height: 1.16;
  }

  .product-category-card__meta {
    margin: 0;
    color: #586b66;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
  }

  .blog-video-section .container {
    position: relative;
    z-index: 1;
  }

  .blog-video-shell {
    max-width: 1120px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(12, 47, 37, 0.08);
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 26px 60px rgba(12, 47, 37, 0.14);
  }

  .blog-video-shell video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #dfe8d8;
  }

  .hero-slider-section {
    padding: 0;
    background: transparent !important;
    overflow: hidden;
  }

  .hero-slider-section::before {
    display: none;
  }

  .hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
  }

  .hero-slider .swiper-slide {
    height: auto;
  }

  .hero-slide {
    position: relative;
    min-height: clamp(720px, 100vh, 960px);
    padding: 470px 0 100px;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .hero-slide__media,
  .hero-slide__overlay {
    position: absolute;
    inset: 0;
  }

  .hero-slide__media {
    z-index: 0;
  }

  .hero-slide__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-slide__overlay {
    z-index: 1;
    background: linear-gradient(111.29deg, rgba(12, 47, 37, 0.39) 28%, rgba(12, 47, 37, 0.22) 70%, rgba(12, 47, 37, 0.08) 100%);
  }

  .hero-slider-section .hero-items {
    position: relative;
    z-index: 2;
  }

  .hero-slider-controls {
    position: absolute;
    right: 32px;
    bottom: 32px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-slider-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: var(--theme-color-white);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  }

  .hero-slider-arrow:hover {
    background: var(--theme-color1);
    color: var(--theme-color2);
    transform: translateY(-2px);
  }

  .hero-slider-arrow i {
    font-size: 18px;
  }

  .strengths-section .sec-title {
    max-width: 760px;
    margin: 0 auto;
  }

  .strengths-grid {
    margin-top: 14px;
  }

  .strength-card {
    position: relative;
    height: 100%;
    padding: 32px 30px;
    border: 1px solid rgba(12, 47, 37, 0.1);
    border-radius: 28px;
    background:
      radial-gradient(circle at top right, rgba(255, 216, 0, 0.14), transparent 36%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 248, 237, 0.98) 100%);
    box-shadow: 0 18px 45px rgba(12, 47, 37, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }

  .strength-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: 86px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--theme-color1) 0%, var(--theme-color2) 100%);
  }

  .strength-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 216, 0, 0.45);
    box-shadow: 0 24px 55px rgba(12, 47, 37, 0.14);
  }

  .strength-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    border-radius: 22px;
    background: var(--theme-color2);
    color: var(--theme-color1);
    box-shadow: 0 14px 28px rgba(12, 47, 37, 0.16);
  }

  .strength-card__icon i {
    font-size: 30px;
  }

  .strength-card__title {
    margin: 0 0 14px;
    color: var(--theme-color2);
    font-size: 28px;
    line-height: 1.18;
  }

  .strength-card__text {
    margin: 0;
    color: #5b6d69;
    font-size: 16px;
    line-height: 1.85;
  }

  @media (max-width: 1199.98px) {
    .main-header.header-style-one .header-lower .logo a {
      margin: 0;
      padding: 8px 14px;
      border-radius: 20px;
    }

    .main-header.header-style-one .header-lower .logo img {
      max-width: 180px;
      max-height: 64px;
    }

    .hero-slide {
      padding-top: 250px;
    }
  }

  @media (max-width: 991.98px) {
    .hero-slide {
      padding-top: 170px;
    }

    .product-category-intro {
      margin-left: 0;
    }

    .product-category-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 767.98px) {
    .hero-slide {
      min-height: 680px;
      padding: 150px 0 90px;
    }

    .hero-slide__overlay {
      background: linear-gradient(180deg, rgba(12, 47, 37, 0.88) 18%, rgba(12, 47, 37, 0.42) 64%, rgba(12, 47, 37, 0.8) 100%);
    }

    .founder-section__details {
      grid-template-columns: 1fr;
    }

    .hero-slider-controls {
      right: 20px;
      bottom: 20px;
    }

    .hero-slider-arrow {
      width: 48px;
      height: 48px;
    }

    .strength-card {
      padding: 28px 24px;
      border-radius: 24px;
    }

    .strength-card__title {
      font-size: 24px;
    }

    .product-category-header {
      margin-bottom: 30px;
    }

    .product-category-title {
      font-size: 34px;
    }

    .product-category-intro {
      font-size: 16px;
      line-height: 1.8;
    }

    .product-category-grid {
      grid-template-columns: 1fr;
    }

    .product-category-card {
      border-radius: 20px;
    }

    .product-category-card__body {
      padding: 18px 18px 20px;
    }

    .product-category-card__name {
      font-size: 21px;
    }

    .main-header.header-style-one .header-lower .logo img {
      max-width: 160px;
      max-height: 56px;
    }

    /* .sticky-header .logo img {
      max-width: 200px;
      max-height: 200px;
    } */

    .footer-logo {
      padding: 10px 14px;
      border-radius: 18px;
    }

    .footer-logo img {
      max-width: 170px;
      max-height: 70px;
    }

    .blog-video-shell {
      border-radius: 22px;
    }

    .founder-card {
      padding: 28px 22px;
      border-radius: 24px;
    }

    .founder-card__header {
      flex-direction: column;
      align-items: flex-start;
    }

    .founder-card__image-wrap {
      width: 104px;
      height: 104px;
    }

    .founder-card__name {
      font-size: 24px;
    }
  }