:root {
  --primary: #17283e;
  --dark: #07111f;
  --orange: #f45b18;
  --green:#4A9885;
  --accent-pink: #f10295;
  --accent-pink-dark: #d90085;
  --white: #ffffff;
  --light: #f5f8fc;
  --text: #5d6675;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;

}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
button,
input,
textarea,
select,
strong {
  font-family: Arial, sans-serif;
}

body {
  color: var(--text);
  line-height: 1.5;
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 28%, #f7fbff 100%);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  font-size: 14px;
  margin: 0;
  font-weight: 300;
  text-align: left;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--primary);
}

section {
  padding: 56px 0;
}

::selection {
  background-color: var(--orange);
  color: #fff;
}

/* Topbar */
.topbar {
  background: #4A9885;
  color: var(--white);
  padding: 11px 0;
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar .topbar-rotator {
  margin: 0;
  font-size: 13px;
  display: grid;
  grid-template-areas: "stack";
  align-items: center;
  height: 1.45em;
  overflow: hidden;
}

.topbar .topbar-rotator span {
  grid-area: stack;
  display: block;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transform: translateY(16px);
  animation: jm-topbar-line-rotate 4.8s ease-in-out infinite;
  will-change: transform, opacity;
}

.topbar .topbar-rotator span:nth-of-type(2) {
  animation-delay: 2.4s;
}

.topbar .topbar-rotator .topbar-inline-cta {
  margin-left: 8px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.topbar i {
  color: #fff;
  margin-right: 6px;
}

.topbar a {
  color: var(--white);
  margin-left: 16px;
  font-size: 13px;
}

@keyframes jm-topbar-line-rotate {
  0% {
    transform: translateY(16px);
    opacity: 0;
    visibility: hidden;
  }

  12%,
  38% {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  50%,
  100% {
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar .topbar-rotator {
    display: block;
    height: auto;
    overflow: visible;
  }

  .topbar .topbar-rotator span {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .topbar .topbar-rotator span+span {
    display: none;
  }
}

@media (max-width: 767px) {
  .topbar .topbar-inner {
    justify-content: center;
    width: 100%;
  }

  .topbar .topbar-rotator {
    display: grid;
    grid-template-areas: "stack";
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 2.8em;
    overflow: hidden;
    text-align: center;
  }

  .topbar .topbar-rotator span {
    grid-area: stack;
    width: 100%;
    padding: 0 8px;
    white-space: normal;
    line-height: 1.35;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transform: translateY(110%);
    animation: jm-topbar-line-rotate-mobile 4.8s ease-in-out infinite;
    font-weight: 600;
  }

  .topbar .topbar-rotator span:nth-of-type(2) {
    animation-delay: 2.4s;
  }

  .topbar .topbar-inner>div {
    display: none;
  }
}

@keyframes jm-topbar-line-rotate-mobile {
  0% {
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
  }

  12%,
  38% {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  50%,
  100% {
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .topbar .topbar-rotator {
    display: block;
    height: auto;
    overflow: visible;
  }

  .topbar .topbar-rotator span {
    position: static;
    animation: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .topbar .topbar-rotator span+span {
    display: none;
  }
}
/* Navbar */
.jm-navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 35px rgba(23, 40, 62, 0.08);
  position: sticky !important;
  top: 0 !important;
  z-index: 1050;
  width: 100%;
}

.jm-navbar.is-fixed-top {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 1100;
}

.jm-navbar .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.navbar-brand img {
  max-width: 300px;
  height: auto;
  display: block;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1;
}

.jm-navbar .navbar-toggler {
  margin-left: auto;
}

.jm-navbar .jm-navbar-collapse {
  flex-basis: 100%;
}

.jm-navbar .jm-product-nav {
  width: 100%;
  align-items: center;
  gap: 1px;
  justify-content: center;
}

.jm-navbar.jm-navbar-search-layout .jm-header-search {
  position: relative;
  flex: 1 1 420px;
  max-width: 360px;
  margin-left: auto;
}

.jm-navbar.jm-navbar-search-layout .jm-header-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8c8f96;
  font-size: 14px;
  pointer-events: none;
}

.jm-navbar.jm-navbar-search-layout .l-header__search-input {
  width: 100%;
  border: 1px solid transparent;
  background: #efefef;
  color: #4f535a;
  border-radius: 999px;
  padding: 12px 16px 12px 36px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.jm-navbar.jm-navbar-search-layout .l-header__search-input::placeholder {
  color: #666a72;
}

.jm-navbar.jm-navbar-search-layout .l-header__search-input:focus {
  outline: none;
  border-color: rgba(23, 40, 62, 0.22);
  box-shadow: 0 0 0 0.14rem rgba(23, 40, 62, 0.12);
}

.jm-navbar.jm-navbar-search-layout .jm-product-nav {
  justify-content: flex-start;
  gap: 3px;
}

.jm-navbar.jm-navbar-search-layout .jm-navbar-collapse {
  border-top: 1px solid rgba(23, 40, 62, 0.1);
  padding-top: 6px;
}

.jm-navbar .nav-link {
  color: var(--primary);
  font-weight: 700;
  padding: 12px 14px !important;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  font-size: 13px;
}

.jm-navbar .nav-link:hover,
.jm-navbar .nav-link:focus,
.jm-navbar .nav-link.active {
  color: var(--orange);
}

.jm-navbar .jm-mega-item>.dropdown-toggle::after {
  display: none;
}



.jm-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(244, 91, 24, 0.24);
}

.jm-navbar .navbar-toggler-icon {
  position: relative;
  width: 1.25rem;
  height: 2px;
  display: inline-block;
  background: var(--primary);
  vertical-align: middle;
}

.jm-navbar .navbar-toggler-icon::before,
.jm-navbar .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.jm-navbar .navbar-toggler-icon::before {
  top: -6px;
}

.jm-navbar .navbar-toggler-icon::after {
  top: 6px;
}

.jm-navbar .jm-mega-item {
  position: static;
}

@media (min-width: 992px) {
  .jm-navbar .jm-nav-separator {
    width: 1px;
    height: 32px;
    margin: auto 8px;
    flex: 0 0 auto;
    background: var(--orange);
    list-style: none;
  }

  .jm-navbar .jm-nav-separator::before {
    content: none;
  }
}

@media (max-width: 991px) {
  .jm-navbar .jm-nav-separator {
    display: none;
  }

  .jm-navbar.jm-navbar-search-layout .navbar-brand {
    order: 1;
  }

  .jm-navbar.jm-navbar-search-layout .navbar-toggler {
    order: 2;
    margin-left: auto;
  }

  .jm-navbar.jm-navbar-search-layout .jm-header-search {
    order: 3;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 5px;
  }

  .jm-navbar.jm-navbar-search-layout .jm-navbar-collapse {
    order: 4;
    width: 100%;
  }

  .jm-navbar.jm-navbar-search-layout .l-header__search-input {
    font-size: 14px;
    padding: 10px 14px 10px 34px;
  }

  .jm-navbar.jm-navbar-search-layout .jm-header-search i {
    left: 12px;
    font-size: 13px;
  }
}


@media (max-width: 767px) {
  .jm-navbar.jm-navbar-search-layout .jm-header-search {
    margin-top: 4px;
    flex: 0 0 50%;
    width: 140px;
    max-width: 140px;
    margin-left: auto;
    margin-right: 0;
  }

  .jm-navbar.jm-navbar-search-layout .l-header__search-input {
    font-size: 10px;
    line-height: 1.1;
    padding: 6px 8px 6px 24px;
    border-radius: 14px;
    min-height: 28px;
  }

  .jm-navbar.jm-navbar-search-layout .jm-header-search i {
    left: 8px;
    font-size: 10px;
  }

}


.jm-navbar .jm-mega-menu {
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  border: 1px solid rgba(23, 40, 62, 0.08);
  border-radius: 0 0 10px 10px;
  margin-top: 0;
  padding: 0;
  box-shadow: 0 20px 50px rgba(23, 40, 62, 0.15);
}

.jm-navbar .jm-mega-menu-inner {
  background: #f7f8fc;
  padding: 22px 24px 24px;
}

.jm-navbar .jm-mega-title {
  color: #6d2ca8;
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(23, 40, 62, 0.12);
}

.jm-navbar .jm-mega-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jm-navbar .jm-mega-links li {
  margin: 0;
}

.jm-navbar .jm-mega-links a {
  display: inline-block;
  padding: 5px 0;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 12px;
}

.jm-navbar .jm-mega-links a:hover {
  color: var(--orange);
}

.jm-navbar .jm-category-item>.dropdown-toggle::after {
  display: none;
}

.jm-navbar .jm-category-menu {
  min-width: 200px;
  border: 1px solid rgba(23, 40, 62, 0.08);
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 16px 34px rgba(23, 40, 62, 0.14);
  max-height: 72vh;
  overflow-y: auto;
}

.jm-navbar .jm-category-menu .dropdown-item {
  color: var(--primary);
  font-weight: 600;
  padding: 8px 16px;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.jm-navbar .jm-category-menu .dropdown-item:hover,
.jm-navbar .jm-category-menu .dropdown-item:focus {
  color: var(--orange);
  background: rgba(244, 91, 24, 0.08);
}

.jm-navbar .jm-category-menu .dropdown-header {
  color: var(--green);
  font-weight: 800;
  font-size: 12px;
  border-bottom: 1.5px solid var(--orange);
  padding-bottom: 4px;
  padding-left: 0;
  padding-right: 0;
  margin-top: 8px;
  margin-bottom: 6px;
  margin-left: 16px;
  display: inline-block;
}

.quote-btn {
  background: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  font-weight: 800;
  display: inline-block;
  box-shadow: 0 12px 25px rgba(244, 91, 24, 0.28);
}

/* Main banner slider */
#carouselExampleControlsNoTouching {
  position: relative;
  box-shadow: 0 22px 50px rgba(23, 40, 62, 0.16);
  border-bottom: 1px solid rgba(23, 40, 62, 0.08);
}

.carousel-item img {
  width: 100% !important;
}

.jm-hero-indicators {
  left: 50%;
  right: auto;
  bottom: 16px;
  width: min(190px, calc(100% - 32px));
  margin: 0;
  padding: 9px 12px;
  transform: translateX(-50%);
  border-radius: 0;
}



.jm-hero-indicators [data-bs-target] {
  width: 30px;
  height: 4px;
  margin: 0 4px;
  border: 0;
  opacity: 1;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.78);
}

.jm-hero-indicators .active {
  background: rgba(23, 40, 62, 0.62);
}

.jm-review-strip {
  background: #fff;
  padding: 25px;
}

.jm-review-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 16px 0;
}

.jm-review-label {
  color: #131a27;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.jm-review-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.jm-review-star-box {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00b67a;
}

.jm-review-star-box.is-partial {
  background: linear-gradient(90deg, #00b67a 64%, #d8d8dc 64%);
}

.jm-review-star {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.jm-review-count {
  color: #000;
  font-size: 18px;
  line-height: 1.1;
}

.jm-review-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.jm-review-brand-star {
  color: #00b67a;
  font-size: 30px;
  line-height: 1;
}

.jm-review-brand-text {
  color: #17283e;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

@media(max-width: 767px){
  .jm-review-strip{
    padding: 10px;
  }
  .jm-review-label{
    font-size: 17px;
  }
  .jm-review-count{
    font-size: 14px;
  }
  .jm-review-brand-text{
    font-size: 17px;
  }
  .jm-review-strip-inner{
    gap: 10px;
  }
  .jm-review-star-box{
    width: 24px;
    height: 24px;
  }
  .jm-review-star{
    font-size: 18px;
  }
  .jm-review-brand-star{
    font-size: 18px;
  }
}


/* Promo Duo Section */
.jm-promo-duo-section {
  padding: 28px 0 24px;
  background: #d7d2d5;
}

.jm-promo-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.jm-promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  min-height: 296px;
  display: flex;
  align-items: center;
}

.jm-promo-card-dark {
  background:
    linear-gradient(112deg, rgba(8, 10, 16, 0.84) 0%, rgba(8, 10, 16, 0.7) 44%, rgba(8, 10, 16, 0.16) 100%),
    url("../img/main-img-16/two.webp") center/cover no-repeat;
}

.lite-promo-card {
  background:
    linear-gradient(112deg, rgba(8, 10, 16, 0.84) 0%, rgba(8, 10, 16, 0.7) 44%, rgba(8, 10, 16, 0.16) 100%),
    url("../img/main-img-16/one.webp") center/cover no-repeat;
}



.jm-promo-card-content {
  position: relative;
  z-index: 2;
  width: min(360px, 100%);
  padding: clamp(26px, 3vw, 38px);
}

.jm-promo-eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 8px;
  font-weight: 800;
}

.jm-promo-card-dark .jm-promo-eyebrow,
.jm-promo-card-dark h2,
.jm-promo-card-dark .jm-promo-subtitle {
  color: #fff;
}

.jm-promo-card-light .jm-promo-eyebrow,
.jm-promo-card-light h2,
.jm-promo-card-light .jm-promo-subtitle {
  color: #111827;
}

/* 1. Define the flash animation */
@keyframes flash-animation {
  0% { opacity: 0; }
  20% { opacity: 1; }  /* Reaches peak opacity of 0.4 (defined in background-color) */
  100% { opacity: 0; } /* Fades back to transparent within the 1s duration */
}

/* 2. Setup the card containers */
article.jm-promo-card.jm-promo-card-dark,
article.jm-promo-card.jm-promo-card-light {
  position: relative;
  overflow: hidden; /* Clips the flash to the card's rounded corners */
}

/* 3. Create the flash overlay using a pseudo-element */
article.jm-promo-card.jm-promo-card-dark::after,
article.jm-promo-card.jm-promo-card-light::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4); /* White at 0.4 opacity */
  opacity: 0;
  pointer-events: none; /* Allows user to click buttons/links through the flash */
  z-index: 10;
}

/* 4. Trigger the animation only once on hover */
article.jm-promo-card.jm-promo-card-dark:hover::after,
article.jm-promo-card.jm-promo-card-light:hover::after {
  animation: flash-animation 1s ease forwards;
}

.jm-promo-card h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
}

.jm-promo-subtitle {
  margin: 12px 0 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.jm-promo-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 35px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jm-promo-btn:hover {
  transform: translateY(-2px);
}

.jm-promo-btn-light {
  background: #ffffff;
  color: #d9029a;
  box-shadow: 0 10px 18px rgba(255, 255, 255, 0.22);
}

.jm-promo-btn-light:hover {
  color: #b10077;
}

.jm-promo-btn-pink {
  background: #d9029a;
  color: #ffffff;
  box-shadow: 0 12px 20px rgba(217, 2, 154, 0.24);
}

.jm-promo-btn-pink:hover {
  color: #ffffff;
}

.jm-promo-side-art {
  margin: 0;
  position: absolute;
  right: 18px;
  bottom: 0;
  width: min(46%, 260px);
  z-index: 1;
}

.jm-promo-side-art img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(17, 24, 39, 0.2));
}

@media (max-width: 991px) {
  .jm-promo-duo-grid {
    grid-template-columns: 1fr;
  }

  .jm-promo-card {
    min-height: 278px;
  }
}

@media (max-width: 767px) {
  .jm-promo-duo-section {
    padding: 22px 0 18px;
  }

  .jm-promo-card {
    min-height: 0;
    display: block;
  }

  .jm-promo-card-content {
    width: 100%;
    padding: 22px 18px 18px;
  }

  .jm-promo-eyebrow {
    font-size: 13px;
    letter-spacing: 6px;
  }

  .jm-promo-card h2 {
    font-size: 17px;
  }

  .jm-promo-subtitle {
    font-size: 16px;
  }

  .jm-promo-btn {
    min-width: 88px;
    height: 38px;
    font-size: 14px;
  }

  .jm-promo-card-light {
    padding-bottom: 10px;
  }

  .jm-promo-side-art {
    position: static;
    width: min(64%, 240px);
    margin-left: auto;
    margin-right: 10px;
    margin-top: -10px;
  }
}


/* Desktop hover dropdown */
@media (min-width: 992px) {
  .jm-navbar .jm-mega-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .jm-navbar .jm-mega-item:hover>.jm-mega-menu,
  .jm-navbar .jm-mega-item:focus-within>.jm-mega-menu,
  .jm-navbar .jm-mega-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .jm-navbar .jm-category-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .jm-navbar .jm-category-item:hover>.jm-category-menu,
  .jm-navbar .jm-category-item:focus-within>.jm-category-menu,
  .jm-navbar .jm-category-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

}



/* About Section */
.about-premium-section {
  position: relative;
  background:
    radial-gradient(circle at 5% 10%, rgba(244, 91, 24, 0.11), transparent 35%),
    radial-gradient(circle at 90% 90%, rgba(23, 40, 62, 0.15), transparent 38%),
    linear-gradient(145deg, #f5f8fc 0%, #ffffff 60%, #eef3fb 100%);
  overflow: hidden;
}

.about-premium-section::before,
.about-premium-section::after {
  /* content: ""; */
  position: absolute;
  pointer-events: none;
}

.about-premium-section::before {
  width: 260px;
  height: 260px;
  border: 1px solid rgba(23, 40, 62, 0.12);
  top: -100px;
  left: -90px;
}

.about-premium-section::after {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(244, 91, 24, 0.18);
  bottom: 26px;
  right: -55px;
  transform: rotate(26deg);
}

.about-premium-shell {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 40, 62, 0.08);
  padding: 44px;
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.1);
  position: relative;
  z-index: 2;
}

.about-premium-visual {
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(7, 17, 31, 0.25);
}

.about-premium-visual img {
  width: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.45s ease;
}

.about-premium-visual:hover img {
  transform: scale(1.08);
}

.about-experience-badge {
  position: absolute;
  left: 20px;
  top: 20px;
  max-width: calc(100% - 40px);
  background: rgba(7, 17, 31, 0.8);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
}

.about-experience-badge i {
  color: var(--orange);
}

.about-float-card {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 40, 62, 0.08);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 12px 30px rgba(7, 17, 31, 0.15);
  animation: float-card 3.8s ease-in-out infinite;
}

.about-float-card i {
  width: 42px;
  height: 42px;
  background: rgba(244, 91, 24, 0.12);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.about-float-card h3 {
  font-size: 19px;
  margin-bottom: 6px;
  color: var(--primary);
}

.about-float-card p {
  font-size: 14px;
  color: var(--text);
  text-align: left;
  font-weight: 400;
}

.about-premium-content {
  animation: about-rise 0.7s ease both;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 9px 16px;
  background: var(--green);
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.9px;
}

.about-premium-content h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-premium-content>p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
  text-align: left;
  margin-bottom: 22px;
}

.about-highlights {
  display: grid;
  gap: 12px;
}

.about-highlight-item {
  border: 1px solid rgba(23, 40, 62, 0.1);
  background: #fff;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(23, 40, 62, 0.11);
}

.about-highlight-item i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  flex-shrink: 0;
}

.about-highlight-item span {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.about-metrics {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.about-metric-card {
  text-align: center;
  padding: 18px 10px 14px;
  background: #f7f8fa;
  border: 1px solid #d6dce5;
  min-height: 106px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-metric-card strong {
  display: block;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--green);
}

.about-metric-card span {
  margin-top: 8px;
  display: block;
  font-size: 17px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.about-cta-btn {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 14px 26px rgba(255, 255, 255, 0.32);
}

.about-cta-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 30px rgba(255, 255, 255, 0.36);
}

/* Mission and Vision Section */
.jm-mission-vision-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(244, 91, 24, 0.16), transparent 34%),
    radial-gradient(circle at 88% 84%, rgba(74, 152, 133, 0.2), transparent 34%),
    linear-gradient(160deg, #fff7ef 0%, #f3f8ff 52%, #ecf6ff 100%);
}

.jm-mission-vision-section::before,
.jm-mission-vision-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.jm-mission-vision-section::before {
  width: 280px;
  height: 280px;
  border: 1px dashed rgba(23, 40, 62, 0.18);
  top: -130px;
  right: -90px;
  transform: rotate(18deg);
}

.jm-mission-vision-section::after {
  width: 220px;
  height: 220px;
  border: 1px solid rgba(244, 91, 24, 0.25);
  bottom: -100px;
  left: -70px;
  transform: rotate(-24deg);
}

.jm-mission-vision-shell {
  position: relative;
  z-index: 1;
  padding: 42px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 40, 62, 0.1);
  box-shadow: 0 24px 58px rgba(7, 17, 31, 0.1);
}

.jm-mv-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  font-size: 12px;
  font-weight: 800;
  color: #f45b18;
  background: rgba(244, 91, 24, 0.12);
  padding: 9px 16px;
  margin-bottom: 16px;
}

.jm-mv-head {
  max-width: 840px;
  margin: 0 auto 30px;
}

.jm-mv-head h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.24;
  margin-bottom: 12px;
  color: var(--primary);
  text-align: center;
}

.jm-mv-head p {
  color: #4d5c73;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
  text-align: center;
}

.jm-mv-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.jm-mv-panel {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 24px 22px 22px;
  border: 1px solid rgba(23, 40, 62, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  box-shadow: 0 14px 30px rgba(23, 40, 62, 0.08);
}

.jm-mv-panel::after {
  content: attr(data-label);
  position: absolute;
  right: 12px;
  top: 14px;
  font-size: clamp(28px, 4.6vw, 50px);
  font-weight: 800;
  line-height: 1;
  color: rgba(23, 40, 62, 0.05);
  pointer-events: none;
}

.jm-mv-panel.is-mission {
  border-top: 4px solid #f45b18;
}

.jm-mv-panel.is-vision {
  border-top: 4px solid #4a9885;
}

.jm-mv-panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 800;
  color: var(--primary);
  background: rgba(23, 40, 62, 0.07);
  padding: 8px 11px;
  margin-bottom: 12px;
}

.jm-mv-panel-tag i {
  color: #f45b18;
}

.jm-mv-panel h3 {
  font-size: 19px;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--primary);
}

.jm-mv-panel p {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #465974;
  text-align: left;
}

.jm-mv-list {
  display: grid;
  gap: 9px;
}

.jm-mv-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.jm-mv-list li i {
  margin-top: 3px;
  color: #1fae5d;
  font-size: 12px;
}

.jm-mv-values {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.jm-mv-value {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(23, 40, 62, 0.1);
  border-top: 3px solid transparent;
  padding: 14px 14px 12px;
}

.jm-mv-value:nth-child(1) {
  border-top-color: #f45b18;
}

.jm-mv-value:nth-child(2) {
  border-top-color: #17283e;
}

.jm-mv-value:nth-child(3) {
  border-top-color: #4a9885;
}

.jm-mv-value h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--primary);
}

.jm-mv-value p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #50617b;
  text-align: left;
}

/* Products Hero */
.jm-products-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
    url("../img/heading-img/heading.jpeg") center center / cover no-repeat fixed;
  padding: 64px 0;
  text-align: center;
}

.jm-products-hero h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.jm-products-hero span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 8px;
  font-size: clamp(14px, 2.2vw, 17px);
  letter-spacing: 0.8px;
}

/* Products Section */
.jm-products-section {
  padding-top: 20px;
}

.jm-products-section .prod-grid {
  position: relative;
}

.jm-products-section .feature-box.media-box {
  padding: 0;
  margin-top: 0;
}

.jm-products-section .prod-grid .feature-box {
  border: 1px solid #e5e5e5;
  background: #fff;
  overflow: hidden;
  transition: 0.45s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.jm-products-section .prod-grid:hover .feature-box {
  box-shadow: 0 2px 8px rgba(128, 128, 128, 0.21);
}

.jm-products-section .feature-box figure {
  margin: 0;
  padding: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.jm-products-section .prod-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jm-products-section .product-image {
  position: relative;
  overflow: hidden;
}

.jm-products-section .product-overlay {
  position: absolute;
  width: 100%;
  height: 44px;
  line-height: 44px;
  bottom: -44px;
  left: 0;
  z-index: 6;
  transition: bottom 0.3s ease-in-out;
}

.jm-products-section .product:hover .product-overlay {
  bottom: 0;
}

.jm-products-section .product-overlay a {
  display: block;
  float: left;
  width: 50%;
  font-size: 13px;
  color: #333;
  background-color: #f5f5f5;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.jm-products-section .product-overlay a:last-child {
  border-right: 0;
}

.jm-products-section .product-overlay a i {
  position: relative;
  top: 1px;
  font-size: 14px;
  margin-right: 3px;
}

.jm-products-section .product-overlay a:hover {
  background-color: var(--dark);
  color: #fff;
}

.jm-products-section .fbox-desc {
  padding: 16px 10px 20px;
  margin-top: auto;
}

.jm-products-section .fbox-desc h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  line-height: 1.35;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.jm-products-cta {
  margin-top: 28px;
}

.jm-view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  background: linear-gradient(90deg, #f45b18 0%, #df4d0d 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 14px 26px rgba(244, 91, 24, 0.32);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.jm-view-all-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 30px rgba(244, 91, 24, 0.36);
}

/* Print With Us Section */
.jm-print-with-us-section {
  padding: 54px 0 66px;
  background:
    radial-gradient(circle at 8% 18%, rgba(244, 91, 24, 0.12), transparent 34%),
    linear-gradient(145deg, #f5f8ff 0%, #eef3fb 50%, #fff1e8 100%);
}

.jm-print-with-us-section .container {
  max-width: 1280px;
}

.jm-print-with-us-shell {
  background: transparent;
  border-radius: 8px;
}

.jm-print-with-us-head h2 {
  font-size: clamp(40px, 5vw, 52px);
  line-height: 1;
  font-weight: 600;
  color: #000;
  margin-bottom: 46px;
  font-size: 34px;
}

.jm-print-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.jm-print-card {
  border-radius: 15px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #dbe4f0;
  box-shadow: 0 10px 24px rgba(23, 40, 62, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.jm-print-card-image {
  position: relative;
  aspect-ratio: 1 / 1.12;
  overflow: hidden;
  background: #eef2f8;
}

.jm-print-card-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.jm-print-card-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.jm-print-card-hover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  text-align: center;
  padding: 14px 16px 16px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.jm-print-card-hover p {
  color: #000;
  font-size: 12px;
  text-align: center;
  line-height: 1.45;
  margin-bottom: 8px;
}

.jm-print-card-explore {
  color: var(--orange);
  font-size: 14px;
  text-decoration: none;
  pointer-events: auto;
}

.jm-print-card-explore:hover {
  color: #ffd7c4;
  text-decoration: none;
}

.jm-print-card:hover .jm-print-card-hover,
.jm-print-card:focus-within .jm-print-card-hover {
  opacity: 1;
  transform: translateY(0);
}

.jm-print-card-content {
  text-align: center;
  padding: 26px 14px 30px;
  background: var(--white);
  flex: 1;
}

.jm-print-card-content h3 {
  margin: 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
}

.jm-print-card-cta {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.jm-print-card-cta:hover {
  color: #df4d0d;
  text-decoration: none;
}

.jm-print-view-all-wrap {
  margin-top: 24px;
  text-align: center;
}

.jm-print-view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 12px 28px;
  /* border-radius: 999px; */
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.32);
}

.jm-print-view-all-btn:hover {
  background: #df4d0d;
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(223, 77, 13, 0.34);
}

@media (max-width: 991px) {
  .jm-print-with-us-head h2 {
    font-size: 25px;
    margin-bottom: 30px;
    font-size: clamp(34px, 7vw, 44px);
  }

  .jm-print-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .jm-print-card-content {
    padding: 18px 10px 20px;
  }

  .jm-print-card-hover {
    padding: 12px 10px 14px;
  }

  .jm-print-card-hover p {
    font-size: 13px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .jm-print-with-us-section {
    padding: 38px 0 46px;
  }

  .jm-print-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jm-print-card-content h3 {
    font-size: 20px;
  }

  .jm-print-card-cta {
    font-size: 15px;
  }

  .jm-print-card-hover {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    padding: 10px 12px 12px;
  }

  .jm-print-card.is-active .jm-print-card-hover {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .jm-print-with-us-head h2 {
    font-size: 23px;
  }
}

@media (max-width: 480px) {
  .jm-print-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Design Services Section */
.jm-design-section {
  background-color: #050816;
  background-image:
    linear-gradient(135deg, rgba(6, 13, 51, 0.904) 0%, rgba(13, 7, 43, 0.753) 42%, rgba(10, 15, 46, 0.8) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.jm-design-intro {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(23, 40, 62, 0.1);
  padding: clamp(20px, 2.6vw, 30px);
  box-shadow: 0 18px 34px rgba(7, 17, 31, 0.08);
}

.jm-design-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--green);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
}

.jm-design-intro h2 {
  font-size: 25px;
  margin-bottom: 14px;
  font-weight: 700;
  color: var(--primary);
}

.jm-design-intro>p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

.jm-design-points {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.jm-design-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.jm-design-points li i {
  color: var(--green);
  margin-top: 2px;
}

.jm-design-btn {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 24px rgba(255, 255, 255, 0.32);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.jm-design-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(255, 255, 255, 0.37);
}

.jm-design-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(23, 40, 62, 0.1);
  padding: 14px;
  box-shadow: 0 14px 24px rgba(7, 17, 31, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.jm-design-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 91, 24, 0.45);
  box-shadow: 0 18px 32px rgba(7, 17, 31, 0.1);
}

.jm-design-media {
  margin: 0 0 14px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eef2f8;
}

.jm-design-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.jm-design-card:hover .jm-design-media img {
  transform: scale(1.03);
}

.jm-design-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 12px;
  background: rgba(244, 91, 24, 0.12);
}

.jm-design-icon i {
  color: var(--orange);
  font-size: 18px;
}

.jm-design-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
  text-align: center;
}

.jm-design-card p {
  color: var(--text);
  line-height: 1.65;
  font-size: 14px;
}

/* Client Logo Card Custom Styling */
.jm-design-card.client-logo-card .jm-design-media {
  margin-bottom: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid #f1f4f9; */
}

.jm-design-card.client-logo-card .jm-design-media img {
  object-fit: contain;
  padding: 16px;
  max-height: 100%;
  max-width: 100%;
}

.jm-design-slider-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jm-design-slider {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}




.jm-design-slider:not(.owl-loaded) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.jm-design-slider .jm-design-slide {
  height: 100%;
}

.jm-design-slider .jm-design-card {
  margin: 0;
}

.jm-design-slider .owl-dots {
  margin-top: 14px;
}

.jm-design-slider .owl-dot span {
  width: 9px;
  height: 9px;
  background: rgba(23, 40, 62, 0.3);
  transition: all 0.25s ease;
}

.jm-design-slider .owl-dot.active span {
  background: var(--orange);
  width: 22px;
}

.jm-design-note {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--dark);
  color: #fff;
  font-size: 13px;
  line-height: 1.6;
}

.jm-design-note strong {
  color: #ffd7c4;
}

@media(max-width: 991px) {
  .jm-design-slider-col {
    justify-content: flex-start;
  }
}

@media(max-width: 767px) {
  .jm-design-card p {
    font-size: 12px;
  }

  .jm-design-slider:not(.owl-loaded) {
    grid-template-columns: 1fr;
  }
}

/* Why Choose Section */

.jm-why-left {
  position: relative;
}

.jm-why-top-img {
  width: 100%;
}

.jm-why-content-wrap {
  padding: 50px clamp(20px, 6vw, 80px) 0 clamp(18px, 4vw, 50px);
}

.jm-why-content-wrap h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 34px;
  color: #000;
  font-weight: 600;
}

.jm-why-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
}

.jm-why-icon {
  width: 50px;
  margin-right: 15px;
  flex-shrink: 0;
}

.jm-why-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.jm-why-text {
  width: calc(100% - 65px);
}

.jm-why-text h3 {
  font-size: clamp(18px, 2.4vw, 22px);
  margin-bottom: 8px;
  color: #000;
  font-weight: 500;
}

.jm-why-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #1f1f1f;
  text-align: left;
}

.jm-why-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background-color: var(--dark);
  color: #fff;
  padding: 13px 34px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.35s ease;
}

.jm-why-btn:hover {
  background: #000;
  color: #fff;
}

.jm-why-right {
  text-align: right;
}

.jm-why-right img {
  width: 85%;
  margin-left: auto;
}

.jm-why-modern-section {
  position: relative;
  overflow: hidden;
}



.jm-why-modern-shell {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 4vw, 44px);
}

.jm-why-modern-intro {
  padding-right: 10px;
}

.jm-why-modern-kicker {
  display: inline-block;
  padding: 9px 14px;
  background: rgba(23, 40, 62, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.jm-why-modern-intro h2 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.12;
  color: var(--primary);
  margin-bottom: 14px;
}

.jm-why-modern-intro p {
  color: #46556b;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 400;
}

.jm-why-modern-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.jm-why-modern-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.jm-why-modern-list i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}

.jm-why-modern-proof {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.jm-why-modern-proof-item {
  border: 1px solid rgba(23, 40, 62, 0.1);
  background: #fff;
  padding: 14px 12px;
  text-align: center;
}

.jm-why-modern-proof-item strong {
  display: block;
  color: var(--orange);
  font-size: 26px;
  line-height: 1;
}

.jm-why-modern-proof-item span {
  margin-top: 6px;
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary);
}

.jm-why-modern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.jm-why-modern-card {
  position: relative;
  border: 1px solid rgba(23, 40, 62, 0.1);
  background: #fff;
  padding: 22px 18px 18px;
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.jm-why-modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f45b18, #ff9f58);
}

.jm-why-modern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(7, 17, 31, 0.15);
}

.jm-why-modern-card.is-primary {
  background: linear-gradient(135deg, #17283e 0%, #223e63 100%);
  border-color: transparent;
  transform: translateY(-14px);
}

.jm-why-modern-card.is-primary::before {
  background: linear-gradient(90deg, #9fc3ff, #ffffff);
}

.jm-why-modern-card.is-accent {
  background: linear-gradient(135deg, #fff2ea 0%, #ffffff 82%);
}

.jm-why-modern-card.is-offset {
  transform: translateY(14px);
}

.jm-why-modern-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(23, 40, 62, 0.15);
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  background: #fff;
}

.jm-why-modern-card.is-primary .jm-why-modern-num {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.jm-why-modern-card h3 {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 20px;
  color: var(--primary);
}

.jm-why-modern-card p {
  font-size: 14px;
  line-height: 1.68;
  font-weight: 400;
  color: #4a5c73;
}

.jm-why-modern-card.is-primary h3,
.jm-why-modern-card.is-primary p {
  color: #f5f9ff;
}

@media (max-width: 991px) {
  .jm-why-modern-intro {
    padding-right: 0;
  }

  .jm-why-modern-grid {
    margin-top: 8px;
  }

  .jm-why-modern-card.is-primary,
  .jm-why-modern-card.is-offset {
    transform: none;
  }
}

@media (max-width: 767px) {
  .jm-why-modern-intro h2 {
    font-size: 24px;
  }

  .jm-why-modern-intro p {
    font-size: 13px;
    line-height: 1.72;
  }

  .jm-why-modern-proof {
    grid-template-columns: 1fr;
  }

  .jm-why-modern-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .jm-why-modern-card h3 {
    font-size: 18px;
  }

  .jm-why-modern-card p {
    font-size: 13px;
  }
}

@media(max-width: 767px) {
  .jm-why-content-wrap h2 {
    font-size: 22px;
  }

  .jm-why-text p {
    font-size: 12px;
  }
}

/* Life Moments */
.jm-life-moments-section {
  background: #D0CAD4;
}

.jm-life-moments-head {
  margin-bottom: 18px;
}

.jm-life-moments-head h2 {
  font-size: clamp(32px, 4vw, 46px);
  color: #111;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.jm-life-video-wrap {
  max-width: 760px;
  margin: 0 auto 42px;
}

.jm-life-video-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.jm-life-video-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.jm-life-video-box:not(.is-playing) iframe {
  visibility: hidden;
}

.jm-life-video-trigger {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.42) 0%, rgba(7, 17, 31, 0.7) 100%);
  transition: background-color 0.24s ease, opacity 0.24s ease;
}

.jm-life-video-trigger:hover {
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.34) 0%, rgba(7, 17, 31, 0.62) 100%);
}

.jm-life-video-play-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(244, 91, 24, 0.94);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 12px 26px rgba(244, 91, 24, 0.36);
}

.jm-life-video-play-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.jm-life-video-box.is-playing .jm-life-video-trigger {
  opacity: 0;
  pointer-events: none;
}

.jm-life-features-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.jm-life-feature {
  text-align: center;
  padding: 8px 10px 0;
}

.jm-life-icon {
  width: 86px;
  height: 82px;
  margin: 0 auto 12px;
  position: relative;
  display: inline-grid;
  place-items: center;
  color: #090b12;
  font-size: 39px;
  line-height: 1;
  isolation: isolate;
  --blob-size: 36px;
  --blob-x: 22px;
  --blob-y: 34px;
  --blob-rotate: -16deg;
  --blob-radius: 56% 44% 52% 48% / 60% 42% 58% 40%;
}

.jm-life-icon::before {
  content: "";
  position: absolute;
  width: var(--blob-size);
  height: var(--blob-size);
  left: var(--blob-x);
  top: var(--blob-y);
  transform: rotate(var(--blob-rotate));
  border-radius: var(--blob-radius);
  background: #DB00A1;
  z-index: -1;
}

.jm-life-icon i {
  color: #070a12;
  font-size: 50px;
  line-height: 1;
}

.jm-life-icon--trust {
  --blob-size: 33px;
  --blob-x: 31px;
  --blob-y: 38px;
  --blob-rotate: -24deg;
  --blob-radius: 62% 38% 54% 46% / 63% 44% 56% 37%;
}

.jm-life-icon--reward {
  --blob-size: 35px;
  --blob-x: 22px;
  --blob-y: 34px;
  --blob-rotate: 14deg;
  --blob-radius: 58% 42% 49% 51% / 55% 45% 55% 45%;
}

.jm-life-icon--bespoke {
  --blob-size: 37px;
  --blob-x: 26px;
  --blob-y: 30px;
  --blob-rotate: -8deg;
  --blob-radius: 49% 51% 43% 57% / 60% 38% 62% 40%;
}

.jm-life-icon--sample {
  --blob-size: 35px;
  --blob-x: 24px;
  --blob-y: 33px;
  --blob-rotate: -18deg;
  --blob-radius: 53% 47% 58% 42% / 49% 54% 46% 51%;
}

.jm-life-icon--eco {
  --blob-size: 34px;
  --blob-x: 34px;
  --blob-y: 30px;
  --blob-rotate: 22deg;
  --blob-radius: 61% 39% 46% 54% / 45% 58% 42% 55%;
}



.jm-life-feature h3 {
  font-size: 20px;
  line-height: 1.28;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.jm-life-feature p {
  text-align: center;
  color: #2f2f2f;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .jm-life-features-grid.owl-loaded {
    display: block;
  }

  .jm-life-features-grid.owl-carousel .jm-life-feature {
    max-width: 360px;
    margin: 0 auto;
    padding: 8px 14px 0;
  }

  .jm-life-features-grid.owl-carousel .owl-dots {
    margin-top: 12px;
    text-align: center;
  }

  .jm-life-features-grid.owl-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: #c9cfdb;
  }

  .jm-life-features-grid.owl-carousel .owl-dot.active span {
    background: var(--orange);
  }
}

/* Clients */
.jm-clients-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(244, 91, 24, 0.08), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(23, 40, 62, 0.1), transparent 36%),
    linear-gradient(160deg, #f7f9fd 0%, #ffffff 68%, #eef3fb 100%);
}

.jm-clients-head {
  margin-bottom: 28px;
}

.jm-clients-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 14px;
  background: var(--green);
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.jm-clients-head h2 {
  font-size: clamp(26px, 3.2vw, 34px);
  color: var(--primary);
  font-weight: 700;
}

.jm-client-logo-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100px;
  /* background: rgba(255, 255, 255, 0.92); */
  /* border: 1px solid rgba(23, 40, 62, 0.09); */
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 10px 22px rgba(7, 17, 31, 0.08); */
  transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}

.jm-client-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(244, 91, 24, 0.14), rgba(23, 40, 62, 0.16)); */
  opacity: 0;
  transition: opacity 0.34s ease;
  z-index: 1;
}

.jm-client-logo-card::after {
  content: none;
}

.jm-client-logo-card img {
  position: relative;
  z-index: 0;
  max-height: 100px;
  width: auto;
  object-fit: contain;
  opacity: 0.88;
  transform: scale(1);
  transition: opacity 0.34s ease, transform 0.34s ease;
}

.jm-clients-carousel .jm-client-logo-card {
  min-height: 110px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jm-clients-carousel .jm-client-logo-card img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

.jm-clients-carousel .owl-dots {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.jm-clients-carousel .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  background: rgba(23, 40, 62, 0.2) !important;
  border-radius: 50% !important;
  display: block;
  transition: all 0.3s ease !important;
}

.jm-clients-carousel .owl-dot.active span {
  width: 35px !important;
  background: var(--orange) !important;
  border-radius: 10px !important;
}

.jm-client-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 91, 24, 0.36);
  /* box-shadow: 0 18px 34px rgba(7, 17, 31, 0.14); */
}

.jm-client-logo-card:hover::before {
  opacity: 1;
}

.jm-client-logo-card:hover img {
  transform: scale(1.12);
  opacity: 1;
}

.jm-client-indicators {
  position: static;
  margin: 18px 0 25px;
}

.jm-client-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  background-color: rgba(23, 40, 62, 0.35);
}

.jm-client-indicators .active {
  background-color: var(--orange);
}

.jm-theme-arrow-control {
  width: 40px;
  height: 40px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 1;
  background: var(--orange);
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.jm-theme-arrow-control i {
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(7, 17, 31, 0.26);
}

.jm-theme-arrow-control.carousel-control-prev {
  left: 16px;
}

.jm-theme-arrow-control.carousel-control-next {
  right: 16px;
}

.jm-theme-arrow-control:hover {
  background: var(--orange);
  border-color: var(--white);
  transform: translateY(-50%) scale(1.05);
}

#clientLogoCarousel .jm-theme-arrow-control.carousel-control-prev {
  left: -2px;
}

#clientLogoCarousel .jm-theme-arrow-control.carousel-control-next {
  right: -2px;
}

@media (max-width: 991px) {
  .jm-theme-arrow-control {
    width: 50px;
    height: 50px;
  }

  .jm-theme-arrow-control i {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .jm-theme-arrow-control {
    width: 24px;
    height: 24px;
  }

  .jm-theme-arrow-control i {
    font-size: 12px;
  }

  .jm-clients-carousel .jm-client-logo-card {
    min-height: 150px;
    padding: 15px;
  }

  .jm-clients-carousel .jm-client-logo-card img {
    max-height: 120px !important;
  }
}

@keyframes float-card {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes about-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.jm-category-item .last-dropwown {
  left: -45px !important;
}



/* Tablet */
@media (max-width: 991px) {
  section {
    padding: 48px 0;
  }

  .navbar-brand img {
    max-width: 200px;
  }

  .jm-navbar .navbar-toggler {
    border: 1px solid rgba(23, 40, 62, 0.2);
    padding: 7px 10px;
  }

  .jm-navbar .jm-navbar-collapse {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(23, 40, 62, 0.12);
  }

  .jm-navbar .jm-product-nav {
    gap: 4px;
    align-items: stretch !important;
  }

  .jm-navbar .nav-link {
    /* padding: 10px 2px !important; */
    white-space: normal;
    border-bottom: 0;
  }



  .jm-navbar .jm-mega-item>.dropdown-toggle::after {
    display: none;
  }

  .jm-navbar .jm-category-item>.dropdown-toggle::after {
    display: none;
  }

  .jm-navbar .jm-mega-menu {
    min-width: 100%;
    position: static;
    box-shadow: none;
    border: 1px solid rgba(23, 40, 62, 0.08);
    margin-top: 6px;
    border-radius: 10px;
  }

  .jm-navbar .jm-mega-item .jm-mega-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .jm-navbar .jm-category-menu {
    min-width: 100%;
    position: static;
    box-shadow: none;
    border: 1px solid rgba(23, 40, 62, 0.08);
    margin-top: 6px;
    border-radius: 10px;
    max-height: none;
  }



  .jm-navbar .jm-mega-menu-inner {
    padding: 14px;
  }

  .jm-navbar .jm-mega-title {
    font-size: 18px;
    margin-top: 6px;
  }

  .jm-navbar .quote-btn {
    width: 100%;
    text-align: center;
    margin-top: 6px;
  }

  /* .carousel-item img {
    aspect-ratio: 16 / 8;
  } */

  .about-premium-shell {
    padding: 28px;
  }

  .about-premium-visual img {
    min-height: 320px;
  }

  .about-float-card {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 14px;
    animation: none;
  }

  .jm-mission-vision-shell {
    padding: 28px;
  }

  .jm-mv-head {
    margin-bottom: 24px;
  }

  .jm-mv-duo {
    grid-template-columns: 1fr;
  }

  .jm-mv-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jm-products-hero {
    background-attachment: scroll;
  }

  .jm-design-card h3 {
    font-size: 18px;
  }

  .jm-why-choose-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .jm-why-content-wrap {
    padding: 30px 24px 0;
  }

  .jm-why-right {
    position: static;
    text-align: center;
    margin-top: 30px;
  }

  .jm-why-right img {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .jm-life-video-wrap {
    max-width: 700px;
    margin-bottom: 34px;
  }

  .jm-life-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 14px;
  }

  .jm-life-feature h3 {
    font-size: 24px;
  }

  .jm-client-control {
    display: none;
  }
}

/* Mobile */
@media (max-width: 767px) {
  section {
    padding: 40px 0;
  }

  p {
    font-size: 13px;
  }

  .navbar-brand img {
    max-width: 165px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    width: 1rem;
    height: 1rem;
  }

  /* .carousel-item img {
    aspect-ratio: 4 / 3;
  } */

  .about-premium-shell {
    padding: 22px 16px;
  }

  .about-premium-visual img {
    min-height: 0;
  }

  .about-experience-badge {
    left: 12px;
    top: 12px;
    max-width: calc(100% - 24px);
    font-size: 10px;
    padding: 8px 10px;
    gap: 6px;
  }

  .about-float-card {
    padding: 12px;
  }

  .about-float-card h3 {
    font-size: 16px;
  }

  .about-float-card p {
    font-size: 12px;
  }

  .about-kicker {
    font-size: 11px;
    padding: 8px 12px;
  }

  .about-premium-content h2 {
    font-size: 28px;
    line-height: 1.24;
  }

  .about-premium-content>p {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-highlight-item {
    align-items: flex-start;
  }

  .about-highlight-item span {
    font-size: 13px;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }

  .about-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .jm-mission-vision-shell {
    padding: 22px 16px;
  }

  .jm-mv-kicker {
    font-size: 11px;
    padding: 8px 12px;
  }

  .jm-mv-head h2 {
    font-size: 28px;
    line-height: 1.24;
  }

  .jm-mv-head p {
    font-size: 12px;
    line-height: 1.7;
  }

  .jm-mv-panel {
    padding: 20px 16px 16px;
  }

  .jm-mv-panel::after {
    font-size: 34px;
    right: 10px;
    top: 12px;
  }

  .jm-mv-panel h3 {
    font-size: 17px;
  }

  .jm-mv-panel p {
    font-size: 12px;
  }

  .jm-mv-list li {
    font-size: 12px;
  }

  .jm-mv-values {
    grid-template-columns: 1fr;
  }

  .jm-mv-value h4 {
    font-size: 16px;
  }

  .jm-mv-value p {
    font-size: 12px;
  }

  .jm-products-hero {
    padding: 44px 0;
  }

  .jm-products-section .product-overlay {
    position: static;
    height: auto;
    line-height: 1.2;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
  }

  .jm-products-section .product-overlay a {
    float: none;
    width: 50%;
    padding: 10px 8px;
    font-size: 12px;
  }

  .jm-view-all-btn {
    width: 100%;
  }

  .jm-design-intro h2 {
    font-size: 17px;
  }

  .jm-design-intro p {
    font-size: 12px;
  }

  .jm-design-btn {
    width: 100%;
    justify-content: center;
  }

  .jm-design-card {
    padding: 18px 16px;
  }

  .jm-why-choose-section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .jm-why-content-wrap {
    padding: 20px 0 0;
  }

  .jm-why-point {
    margin-bottom: 20px;
  }

  .jm-why-icon {
    width: 38px;
    margin-right: 12px;
  }

  .jm-why-icon img {
    width: 38px;
    height: 38px;
  }

  .jm-why-text {
    width: calc(100% - 50px);
  }

  .jm-why-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 11px 20px;
  }

  .jm-life-moments-head h2 {
    font-size: 33px;
  }

  .jm-life-video-wrap {
    margin-bottom: 30px;
  }

  .jm-life-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .jm-life-icon {
    width: 72px;
    height: 70px;
    font-size: 32px;
    --blob-size: 28px;
    --blob-x: 18px;
    --blob-y: 30px;
  }

  .jm-life-icon i {
    font-size: 0.95em;
  }

  .jm-life-icon--trust {
    --blob-size: 26px;
    --blob-x: 27px;
    --blob-y: 33px;
  }

  .jm-life-icon--reward {
    --blob-size: 27px;
    --blob-x: 18px;
    --blob-y: 30px;
  }

  .jm-life-icon--bespoke {
    --blob-size: 27px;
    --blob-x: 22px;
    --blob-y: 27px;
  }

  .jm-life-icon--sample {
    --blob-size: 27px;
    --blob-x: 19px;
    --blob-y: 29px;
  }

  .jm-life-icon--eco {
    --blob-size: 26px;
    --blob-x: 27px;
    --blob-y: 27px;
  }

  .jm-life-feature h3 {
    font-size: 22px;
  }

  .jm-life-feature p {
    font-size: 12px;
  }

  .jm-client-logo-card {
    min-height: 82px;
    padding: 12px;
  }

  .jm-client-logo-card img {
    max-height: 44px;
  }

  #clientLogoCarousel .carousel-item .row>[class*="col-"]:nth-child(odd) .jm-client-logo-card img {
    max-height: 36px;
  }

  #clientLogoCarousel .carousel-item .row>[class*="col-"]:nth-child(even) .jm-client-logo-card img {
    max-height: 50px;
  }
}

@media (max-width: 575px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  section {
    padding: 34px 0;
  }

  .about-metric-card strong {
    font-size: 32px;
  }

  .about-metric-card span {
    font-size: 14px;
  }

  .about-premium-content h2 {
    font-size: 20px;
  }

  .jm-mv-head h2 {
    font-size: 20px;
  }

  .jm-products-section .product-overlay a {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .jm-products-section .product-overlay a:last-child {
    border-bottom: 0;
  }

  .jm-life-moments-head h2 {
    font-size: 28px;
  }

  .jm-life-features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .jm-life-feature {
    max-width: 320px;
    margin: 0 auto;
  }

  .jm-clients-kicker {
    font-size: 11px;
    padding: 8px 12px;
  }

  .jm-design-note {
    font-size: 12px;
  }
}

/* Touch-device usability for hover-dependent actions */
@media (hover: none),
(pointer: coarse) {
  .jm-products-section .product-overlay {
    position: static;
    height: auto;
    line-height: 1.2;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
  }

  .jm-products-section .product-overlay a {
    float: none;
    width: 50%;
    padding: 10px 8px;
  }
}


/* Latest Insights */
.jm-insights-section {
  background:
    radial-gradient(circle at 8% 14%, rgba(244, 91, 24, 0.12), transparent 34%),
    linear-gradient(160deg, #f5f8ff 0%, #fff8f3 100%);
}

.jm-insights-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.3;
  color: #000;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 700;
}

.jm-insights-viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(23, 40, 62, 0.2);
  background: rgba(255, 255, 255, 0.86);
  padding: 11px 28px;
  font-size: 16px;
  color: var(--primary);
  transition: all 0.35s ease;
}

.jm-insights-viewall:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.jm-insight-card {
  display: block;
  color: #000;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(23, 40, 62, 0.1);
  box-shadow: 0 14px 32px rgba(7, 17, 31, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jm-insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(7, 17, 31, 0.13);
}

.jm-insight-img {
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
}

.jm-insight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.8s ease;
}

.jm-insight-card:hover .jm-insight-img img {
  transform: scale(1.12);
}

.jm-insight-card h3 {
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.45;
  margin: 0 8px 0 0;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.jm-insights-carousel:not(.owl-loaded) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.jm-insights-carousel .jm-insight-slide {
  height: 100%;
}

.jm-insights-carousel .jm-insight-card {
  height: 100%;
}

.jm-insights-carousel .owl-stage {
  display: flex;
}

.jm-insights-carousel .owl-item {
  display: flex;
}

.jm-insights-carousel .owl-item .jm-insight-slide {
  width: 100%;
}

.jm-insights-carousel .owl-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.jm-insights-carousel .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  background: rgba(23, 40, 62, 0.26) !important;
  border-radius: 999px !important;
}

.jm-insights-carousel .owl-dot.active span {
  width: 30px !important;
  background: var(--orange) !important;
}

@media (max-width: 991px) {
  .jm-insights-carousel:not(.owl-loaded) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .jm-insights-carousel:not(.owl-loaded) {
    grid-template-columns: 1fr;
  }
}


/* contact css */
.jm-contact-section {
  background: #0b1421 linear-gradient(180deg, #0b1421 0%, #070d17 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.contact-wrapper {
  background: linear-gradient(90deg, #0b14216e 0%, #0b1421bd 35%, rgba(11, 20, 33, 0.75) 55%, rgba(11, 20, 33, 0.1) 100%), url('../img/contact/cont.webp') center/cover no-repeat;
  padding: 48px 48px;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(11, 20, 33, 0.25);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-details-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding-right: 15px;
}

.contact-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.contact-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.5;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info-list li i {
  font-size: 20px;
  color: #ffffff;
  width: 24px;
  text-align: center;
}

.contact-info-list li div {
  font-size: 15px;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.4;
}

.contact-info-list li div a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-info-list li div a:hover {
  opacity: 0.8;
}

.contact-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0 0 24px;
}

.contact-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social-btn:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
  color: #ffffff;
}

.social-btn.google {
  background: #4285f4;
}

.social-btn.pinterest {
  background: #e60023;
}

.social-btn.facebook {
  background: #1877f2;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.x-twitter {
  background: #000000;
}

.social-btn.behance {
  background: #1769ff;
}

.social-btn.youtube {
  background: #ff0000;
}

/* Floating contact form card */
.contact-card-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  color: #17283e;
  width: 100%;
}

.contact-card-box label {
  font-weight: 700;
  color: #17283e;
  margin-bottom: 6px;
  font-size: 12px;
}

.contact-card-box .form-control {
  border: 1px solid #dcdfe6;
  border-radius: 12px !important;
  padding: 11px 16px;
  font-weight: 500;
  color: #17283e;
  font-size: 13px;
  background: #f8fafc;
  transition: all 0.2s ease;
}

.contact-card-box .form-control::placeholder {
  color: #a0aec0;
}

.contact-card-box .form-control:focus {
  border-color: #0b1421;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(11, 20, 33, 0.1);
}

.contact-card-box textarea.form-control {
  height: auto;
  resize: none;
}

.contact-card-box .captcha-box {
  border-radius: 12px;
  overflow: hidden;
  height: 44px;
  background: #0b1421;
}

.contact-card-box #refreshCaptcha {
  border-radius: 6px;
}

.contact-card-box .submit-btn {
  border: none;
  background: #0b1421;
  color: #ffffff;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 24px;
  width: 100%;
  transition: all 0.2s ease;
  box-shadow: 0 10px 24px rgba(11, 20, 33, 0.25);
  cursor: pointer;
}

.contact-card-box .submit-btn:hover {
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(244, 91, 24, 0.35);
}

@media (max-width: 991px) {
  .jm-contact-section {
    background: #0b1421;
    padding: 60px 0;
  }
  .contact-wrapper {
    background: #0b1421;
    padding: 36px 24px;
    border-radius: 16px;
    box-shadow: none;
    border: none;
  }
  .contact-subtitle {
    margin-bottom: 24px;
  }
}

.jm-contact-info-strip {
  position: relative;
  margin-top: 26px;
  padding: 8px 0 0;
  background: linear-gradient(180deg, #f1f4f9 0%, #eceff4 100%);
  overflow: hidden;
}

.jm-contact-info-strip::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  top: -280px;
  right: -120px;
  background: radial-gradient(circle, rgba(244, 91, 24, 0.18), rgba(244, 91, 24, 0));
  pointer-events: none;
}

.jm-contact-strip-shell {
  position: relative;
  padding: 24px 24px 22px;
  border-radius: 28px;
  background: linear-gradient(138deg, #ffffff 0%, #f3f7f6 100%);
  border: 1px solid rgba(74, 152, 133, 0.18);
  box-shadow: 0 20px 48px rgba(74, 152, 133, 0.08);
  overflow: hidden;
}

.jm-contact-strip-shell::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 152, 133, 0.12), rgba(74, 152, 133, 0));
  pointer-events: none;
}

.jm-contact-strip-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(23, 40, 62, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 40, 62, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.5;
  pointer-events: none;
}

.jm-contact-strip-head {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
}

.jm-contact-strip-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(244, 91, 24, 0.28);
  background: rgba(244, 91, 24, 0.06);
}

.jm-contact-strip-head h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.25rem, 1.02rem + 0.84vw, 2rem);
  line-height: 1.2;
  font-weight: 800;
  max-width: 520px;
}

.jm-contact-info-row {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.jm-contact-info-card {
  --card-shift: 0px;
  position: relative;
  height: 100%;
  min-height: 170px;
  border-radius: 22px;
  border: 1px solid rgba(74, 152, 133, 0.12);
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 30px rgba(23, 40, 62, 0.05);
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  transform: translateY(var(--card-shift));
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.jm-contact-info-row>[class*="col-"]:nth-child(2) .jm-contact-info-card {
  --card-shift: 12px;
}

.jm-contact-info-row>[class*="col-"]:nth-child(3) .jm-contact-info-card {
  --card-shift: 6px;
}

.jm-contact-info-card::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  top: -65px;
  left: -42px;
  background: radial-gradient(circle, rgba(74, 152, 133, 0.08), rgba(74, 152, 133, 0));
  pointer-events: none;
}

.jm-contact-info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(140deg, rgba(244, 91, 24, 0.2), rgba(74, 152, 133, 0.2)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.jm-contact-info-card:hover {
  transform: translateY(calc(var(--card-shift) - 8px));
  border-color: rgba(74, 152, 133, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 16px 38px rgba(74, 152, 133, 0.12);
}

.jm-contact-info-index {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  color: rgba(23, 40, 62, 0.06);
  pointer-events: none;
}

.jm-contact-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, rgba(74, 152, 133, 0.12), rgba(74, 152, 133, 0.04));
  border: 1px solid rgba(74, 152, 133, 0.25);
  color: var(--green);
  font-size: 22px;
}

.jm-contact-info-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.jm-contact-info-value {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.14rem, 0.98rem + 0.44vw, 1.46rem);
  line-height: 1.32;
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.jm-contact-info-value:hover {
  color: var(--orange);
}

.jm-contact-info-meta {
  margin: 0;
  color: rgba(23, 40, 62, 0.65);
  font-size: 13px;
  font-weight: 500;
}


.contact-image-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}


.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 91, 24, 0.12);
  color: #f45b18;
  padding: 10px 18px;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-form-box h3 {
  font-size: 35px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
}

.contact-form-box {
  padding: 45px 35px;
  background: #fff;
  border: 1px solid rgba(23, 40, 62, 0.08);
}

.contact-form-box label {
  font-weight: 700;
  color: #17283e;
  margin-bottom: 8px;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
  /* height: 54px; */
  border: 1px solid #e0e6ef;
  padding: 12px 16px;
  font-weight: 500;
  color: #17283e;
  box-shadow: none;
  font-size: 12px;
}

.contact-form-box .form-control {
  border-radius: 0px;

}

.contact-form-box textarea.form-control {
  height: auto;
  resize: none;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
  border-color: #f45b18;
  box-shadow: 0 0 0 4px rgba(244, 91, 24, 0.12);
}

.captcha-box {
  height: 45px;
  background: #17283e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 20px;
}

#captchaText {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 5px;
  user-select: none;
}

#refreshCaptcha {
  width: 38px;
  height: 38px;
  border: none;
  background: #f45b18;
  color: #ffffff;
}

#captchaMsg {
  margin: 0;
  font-weight: 700;
}

.submit-btn {
  border: none;
  background: #f45b18;
  color: #ffffff;
  padding: 15px 34px;
  font-weight: 800;
  transition: 0.3s;
  box-shadow: 0 14px 30px rgba(244, 91, 24, 0.28);
}

.submit-btn:hover {
  background: #17283e;
}

.map iframe {
  width: 100%;
  height: 450px;
}



@media (max-width: 991px) {
  .jm-contact-strip-shell {
    padding: 30px 22px 24px;
    border-radius: 24px;
  }

  .jm-contact-strip-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .jm-contact-strip-head h2 {
    max-width: 100%;
  }

  .jm-contact-info-card {
    min-height: 155px;
    padding: 18px 16px 16px;
    --card-shift: 0px;
  }

  .jm-contact-info-row>[class*="col-"]:nth-child(2) .jm-contact-info-card,
  .jm-contact-info-row>[class*="col-"]:nth-child(3) .jm-contact-info-card {
    --card-shift: 0px;
  }

  .contact-image-box img {
    min-height: 420px;
  }

  .contact-image-overlay,
  .contact-form-box {
    padding: 35px 25px;
  }
}

@media (max-width: 767px) {
  .jm-contact-info-strip {
    margin-top: 20px;
    padding-top: 0;
  }

  .jm-contact-strip-shell {
    padding: 24px 16px 18px;
    border-radius: 20px;
  }

  .jm-contact-strip-kicker {
    font-size: 11px;
    padding: 6px 12px;
  }

  .jm-contact-strip-head h2 {
    font-size: 1.35rem;
  }

  .jm-contact-info-card {
    min-height: 140px;
    padding: 16px 14px 14px;
  }

  .jm-contact-info-index {
    font-size: 30px;
    right: 12px;
    top: 10px;
  }

  .jm-contact-info-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .jm-contact-info-value {
    font-size: 18px;
  }


  .contact-image-overlay,
  .contact-form-box {
    padding: 30px 20px;
  }

  .contact-image-overlay h2,
  .contact-form-box h3 {
    font-size: 22px;
    line-height: 1.25;
  }

  #captchaText {
    font-size: 18px;
    letter-spacing: 3px;
  }

  .contact-form-box .form-control {
    font-size: 12px;
  }

  .map iframe {
    width: 100%;
    height: 250px;
  }
}

@media (max-width: 575px) {
  .contact-wrapper {
    padding: 20px 16px;
  }

  .contact-image-box img {
    min-height: 320px;
  }

  .contact-image-overlay,
  .contact-form-box {
    padding: 28px 18px;
  }

  .contact-image-overlay h2,
  .contact-form-box h3 {
    font-size: 19px;
  }

  .captcha-box {
    padding: 0 10px 0 12px;
  }

  #captchaText {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .submit-btn {
    width: 100%;
  }
}

/* contact css end */


/* faq css start */
.jm-faq-section {
  padding: 68px 0 56px;
}

.jm-faq-shell {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(23, 40, 62, 0.08);
  box-shadow: 0 18px 42px rgba(23, 40, 62, 0.08);
  border-radius: 20px;
  padding: 34px;
}

.jm-faq-intro {
  background: #f3f8ff;
  border: 1px solid rgba(23, 40, 62, 0.08);
  border-radius: 16px;
  padding: 26px 22px;
}

.jm-faq-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.jm-faq-intro h2 {
  font-size: 31px;
  line-height: 1.22;
  font-weight: 800;
  color: #17283e;
  margin-bottom: 12px;
}

.jm-faq-intro p {
  font-size: 14px;
  color: #4a5b71;
  line-height: 1.7;
  margin-bottom: 18px;
}

.jm-faq-points {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.jm-faq-points li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: #17283e;
  font-weight: 600;
}

.jm-faq-points i {
  color: var(--orange);
  margin-top: 3px;
}

.jm-faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #17283e;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.jm-faq-cta:hover {
  background: #0f1d2e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23, 40, 62, 0.25);
}

.jm-faq-accordion .accordion-item {
  border: 1px solid #dce6f3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 8px 22px rgba(23, 40, 62, 0.06);
}

.jm-faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.jm-faq-accordion .accordion-button {
  font-size: 16px;
  font-weight: 700;
  color: #17283e;
  padding: 18px 20px;
  background: #fff;
}

.jm-faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.jm-faq-accordion .accordion-button:not(.collapsed) {
  color: #17283e;
  background: #eff5ff;
  box-shadow: inset 0 -1px 0 #dce6f3;
}

.jm-faq-accordion .accordion-button::after {
  transform: scale(0.9);
}

.jm-faq-accordion .accordion-body {
  font-size: 14px;
  color: #4a5b71;
  line-height: 1.75;
  padding: 14px 20px 20px;
  background: #fff;
}

@media (max-width: 991px) {
  .jm-faq-shell {
    padding: 24px;
  }

  .jm-faq-intro h2 {
    font-size: 27px;
  }
}

@media (max-width: 575px) {
  .jm-faq-section {
    padding: 54px 0 42px;
  }

  .jm-faq-shell {
    border-radius: 16px;
    padding: 18px;
  }

  .jm-faq-intro {
    padding: 18px 15px;
  }

  .jm-faq-intro h2 {
    font-size: 23px;
  }

  .jm-faq-accordion .accordion-button {
    font-size: 15px;
    padding: 16px;
  }

  .jm-faq-accordion .accordion-body {
    padding: 12px 16px 16px;
  }
}

/* faq css end */






/* blog detail  */



.blogs-detail h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blogs-detail h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

#recent-blog a {
  margin: 10px 0px;
  display: inline-block;
  color: var(--blue);
  font-size: 16px;
}

#recent-blog img {
  width: 100px;
}

.blogs-detail ul li {
  line-height: 2;
  list-style: disc;
  font-size: 14px;
}

/* Tablet Landscape */
@media screen and (max-width:1200px) {
  #recent-blog a {
    margin: 8px 0px;
    font-size: 14px;
  }

  #recent-blog img {
    width: 120px;
  }

  .blogs-detail ul li {
    font-size: 12px;
  }
}

/* Tablet Portrait */
@media screen and (max-width:992px) {
  #recent-blog img {
    width: 200px;
  }
}

/* Phone Landscape */
@media screen and (max-width:767px) {
  .blogs-detail {
    padding-top: 10px;
  }

  .blogs-detail h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  #recent-blog {
    margin-top: 20px;
  }

  .blogs-detail h5 {
    font-size: 18px;
  }

  .blogs-detail p {
    text-align: justify;
  }

  .blogs-detail h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
  }
}

/* blog details end */



/* enq page css start ===========================================================*/
.enq-post {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;

}

.enq-post img {
  border-radius: 5px;
}

.enq-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.enq-detail h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}

.enq-detail ul {
  padding-left: 10px;
}

.enq-detail ul li {
  list-style: disc;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 500;
  color: #000;
}

.enq-btn button {
  background-color: var(--orange);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}

.enq-form-btn {
  background-color: var(--orange);
  color: #fff;
}

.enq-form-btn:hover {
  background-color: var(--orange);
  color: #fff;
}


@media(max-width: 767px) {
  .enq-detail ul li {
    font-size: 12px;
    line-height: 1.7;
  }

  .enq-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .enq-post img {
    margin-bottom: 12px;
  }

}

/* enquire page css end ============================================================*/


/* ===========================
   Modern Light Footer CSS
=========================== */

.jm-footer {
  background: linear-gradient(180deg, #fffefb 0%, #f5f9ff 100%);
  position: relative;
  padding-top: 68px;
  border-top: 1px solid rgba(23, 40, 62, 0.08);
}

.jm-footer::before {
  display: none;
}

.jm-footer::after {
  display: none;
}

.footer-top {
  padding-bottom: 40px;
}

.footer-widget h2 {
  font-size: 22px;
  font-weight: 700;
  color: #17283e;
  margin-bottom: 20px;
}

.footer-widget h2::after {
  display: none;
}

.footer-logo {
  display: flex;
  /* justify-content: center; */
}

.footer-logo img {
  max-width: 300px;
  height: auto;
  margin-bottom: 16px;
}

.footer-widget p {
  color: #56667f;
  line-height: 1.8;
  margin-bottom: 0;
  font-size: 14px;
  text-align: left;
}

.footer-brand-text {
  max-width: 420px;
}

.footer-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.footer-social a {
  color: var(--orange) !important;
  font-size: 20px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social a i {
  color: var(--orange) !important;
}

.footer-social a:hover {
  color: var(--orange) !important;
  transform: translateY(-2px);
}

.footer-social a:hover i {
  color: var(--orange) !important;
}

.footer-social a[aria-label="Facebook"],
.footer-social a[aria-label="Facebook"] i,
.footer-social a[aria-label="Facebook"]:hover,
.footer-social a[aria-label="Facebook"]:hover i {
  color: #1877f2 !important;
}

.footer-social a[aria-label="Instagram"],
.footer-social a[aria-label="Instagram"]:hover {
  color: #e1306c !important;
}

.footer-social a[aria-label="Instagram"] i,
.footer-social a[aria-label="Instagram"]:hover i {
  color: #e1306c !important;
  background: linear-gradient(45deg,
      #feda75 0%,
      #fa7e1e 25%,
      #d62976 50%,
      #962fbf 75%,
      #4f5bd5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-social a[aria-label="X"],
.footer-social a[aria-label="X"] i,
.footer-social a[aria-label="X"]:hover,
.footer-social a[aria-label="X"]:hover i {
  color: #000000 !important;
}

.footer-social a[aria-label="YouTube"],
.footer-social a[aria-label="YouTube"] i,
.footer-social a[aria-label="YouTube"]:hover,
.footer-social a[aria-label="YouTube"]:hover i {
  color: #ff0000 !important;
}

.footer-social a[aria-label="Behance"],
.footer-social a[aria-label="Behance"] i,
.footer-social a[aria-label="Behance"]:hover,
.footer-social a[aria-label="Behance"]:hover i {
  color: #0057ff !important;
}

.footer-social a[aria-label="Pinterest"],
.footer-social a[aria-label="Pinterest"] i,
.footer-social a[aria-label="Pinterest"]:hover,
.footer-social a[aria-label="Pinterest"]:hover i {
  color: #e60023 !important;
}

.footer-social a[aria-label="Google"],
.footer-social a[aria-label="Google"]:hover {
  color: #4285f4 !important;
}

.footer-social a[aria-label="Google"] i,
.footer-social a[aria-label="Google"]:hover i {
  background: linear-gradient(90deg,
      #4285f4 0%,
      #db4437 33%,
      #f4b400 66%,
      #0f9d58 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links li a {
  color: #45546c;
  transition: color 0.2s ease;
  padding-left: 0;
  font-size: 14px;
}

.footer-links li a:hover {
  color: var(--orange);
}

.footer-contact {
  display: grid;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-contact a,
.footer-address {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 0 0 12px;
  border-bottom: 1px dashed #dfe5ee;
  color: #17283e;
  background: transparent;
  box-shadow: none;
  transition: color 0.2s ease;
}

.footer-contact a:last-child,
.footer-address:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.footer-contact a:hover {
  color: #17283e;
  transform: none;
}

.footer-contact i,
.footer-address i {
  min-width: 18px;
  color: var(--orange);
  font-size: 12px;
  margin-top: 4px;
}

.footer-contact span,
.footer-address span {
  color: #3f4d62;
  line-height: 1.55;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(23, 40, 62, 0.08);
  padding: 14px 0 16px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: nowrap;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #576680;
  font-weight: 600;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-widget h2 {
    font-size: 26px;
  }

  .footer-logo {
    justify-content: start;
  }

  .footer-contact a,
  .footer-address {
    text-align: left;
  }

  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .footer-widget p {
    font-size: 12px;
  }

  .footer-logo img {
    width: 220px;
  }
}

@media (max-width: 575px) {
  .jm-footer {
    padding-top: 40px;
  }

  .footer-widget h2 {
    font-size: 22px;
  }

  .footer-links li a {
    font-size: 13px;
  }

  .footer-links li {
    margin-bottom: 7px;
  }

  .footer-contact span,
  .footer-address span {
    font-size: 13px;
  }

  .footer-social {
    gap: 12px;
  }

  .footer-contact a,
  .footer-address {
    gap: 8px;
  }
}

/* Floating Quick Contact */
.jm-float-contact {
  position: fixed;
  left: 0;
  bottom: 108px;
  z-index: 1090;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.jm-float-toggle {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0 20px 20px 0;
  background: #1c2230;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(7, 17, 31, 0.28);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.jm-float-toggle:hover {
  background: #121823;
}

.jm-float-contact.is-open .jm-float-toggle {
  transform: translateX(2px);
}

.jm-float-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 0;
  opacity: 0;
  /* overflow: hidden; */
  pointer-events: none;
  transform: translateY(-8px);
  transition: max-height 0.28s ease, opacity 0.24s ease, transform 0.24s ease;
}

.jm-float-contact.is-open .jm-float-actions {
  max-height: 140px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.jm-float-btn {
  width: 40px;
  height: 40px;
  border-radius: 0 14px 14px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 19px;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(8, 22, 10, 0.22);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.jm-float-whatsapp {
  background: linear-gradient(180deg, #25d366 0%, #18b553 100%);
}

.jm-float-call {
  background: linear-gradient(180deg, #1ab54f 0%, #0b8f3b 100%);
}

.jm-float-btn:hover {
  color: #ffffff;
  transform: translateX(2px);
  filter: brightness(0.98);
}

@media (max-width: 767px) {
  .jm-float-contact {
    bottom: 90px;
  }
}

/* Testimonial Section */
.jm-testimonial-section {
  padding: 80px 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.jm-testimonial-section::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50px;
  right: 10%;
  font-size: 150px;
  color: rgba(23, 40, 62, 0.04);
  pointer-events: none;
}

.jm-testimonial-head {
  margin-bottom: 50px;
}

.jm-testimonial-kicker {
  display: block;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.jm-testimonial-head h2 {
  font-size: clamp(30px, 4.5vw, 42px);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 15px;
}

.jm-testimonial-card {
  background: var(--white);
  padding: 40px;
  border: 1px solid rgba(23, 40, 62, 0.08);
  box-shadow: 0 15px 45px rgba(7, 17, 31, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.jm-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 55px rgba(7, 17, 31, 0.1);
}

.jm-testimonial-quote-icon {
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 25px;
  opacity: 0.6;
}

.jm-testimonial-stars {
  color: #ffc107;
  font-size: 14px;
  margin-bottom: 15px;
}

.jm-testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 25px;
  flex-grow: 1;
}

.jm-testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.jm-testimonial-author img {
  width: 55px !important;
  height: 55px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 8px 16px rgba(7, 17, 31, 0.15);
  flex-shrink: 0;
}

.jm-testimonial-author-info h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

.jm-testimonial-author-info span {
  font-size: 13px;
  color: var(--orange);
  font-weight: 700;
}

.jm-testimonial-section .owl-dots {
  margin-top: 40px !important;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.jm-testimonial-section .owl-dot span {
  width: 12px !important;
  height: 12px !important;
  background: rgba(23, 40, 62, 0.2) !important;
  display: block;
  transition: all 0.3s ease !important;
  border-radius: 50% !important;
}

.jm-testimonial-section .owl-dot.active span {
  width: 35px !important;
  background: var(--orange) !important;
  border-radius: 10px !important;
}

@media (max-width: 767px) {
  .jm-testimonial-text {
    font-size: 12px;
  }
}


