:root {
  --jp-blue: #203c82;
  --jp-blue-dark: #10265f;
  --jp-orange: #ea6b2d;
  --jp-orange-soft: #fff0e7;
  --jp-dark-navy: #071a43;
  --jp-warm-white: #fcfcfa;
  --jp-ink: #162038;
  --jp-muted: #68738a;
  --jp-bg: #f8fafd;
  --jp-line: #e6eaf2;
  --jp-white: #fff;
  --shadow: 0 24px 70px rgba(23, 49, 111, .12);
  --radius: 28px;
  --ease-premium: cubic-bezier(.2, .8, .2, 1)
}

/* *{box-sizing:border-box}html{scroll-behavior:smooth}body{font-family:'Montserrat',sans-serif;color:var(--jp-ink);background:#fff;overflow-x:hidden}a{text-decoration:none}img{max-width:100%}.section-pad{padding:100px 0}.text-orange{color:var(--jp-orange)!important}.text-blue{color:var(--jp-blue)!important}.bg-soft{background:var(--jp-bg)} */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--jp-ink);
  background: #fff;
  overflow-x: hidden;
  max-width: 100%;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.bg-soft {
  background: var(--jp-bg);
}

.text-blue {
  color: var(--jp-blue) !important;
}

.text-orange {
  color: var(--jp-orange) !important;
}

.section-pad {
  padding: 100px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--jp-blue)
}

.eyebrow:before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--jp-orange)
}

.display-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.06
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.08
}

.lead-copy {
  color: #000;
  font-size: 1.06rem;
  line-height: 1.8;
  font-weight: 500
}

/* Header */
.navbar {
  padding: 20px 0;
  background: rgba(255, 255, 255, .66);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .42);
  border-top: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: 0 5px 24px rgba(16, 38, 95, .035);
  transition: all .35s var(--ease-premium)
}

.navbar.navbar-scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 10px 35px rgba(16, 38, 95, .08)
}

.navbar-brand {
  display: flex;
  align-items: center
}

.navbar-brand img {
  height: 76px;
  width: auto;
  object-fit: contain;
  transition: height .35s var(--ease-premium)
}

.navbar.navbar-scrolled .navbar-brand img {
  height: 64px
}

.nav-link {
  position: relative;
  font-weight: 700;
  color: #29334a !important;
  margin: 0 4px;
  padding-bottom: 4px !important
}

.nav-link:hover,
.nav-link.active {
  color: var(--jp-orange) !important
}

.nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--jp-orange);
  transition: right .3s var(--ease-premium)
}

.nav-link:hover:after,
.nav-link.active:after {
  right: 0
}

@media(max-width:991px) {
  .navbar-brand img {
    height: 58px
  }

  .navbar.navbar-scrolled .navbar-brand img {
    height: 52px
  }
}

.btn-brand {
  border: 0;
  background: linear-gradient(135deg, var(--jp-orange), #ff8a46);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  padding: 13px 23px;
  box-shadow: 0 10px 28px rgba(234, 107, 45, .25);
  transition: transform .28s var(--ease-premium), box-shadow .28s var(--ease-premium), background .28s var(--ease-premium)
}

.btn-brand:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(234, 107, 45, .35);
  background: linear-gradient(135deg, #dd5c1f, var(--jp-orange))
}

.btn-outline-brand {
  border: 1.5px solid rgba(32, 60, 130, .2);
  color: var(--jp-blue);
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 22px;
  background: #fff;
  transition: background .28s var(--ease-premium), color .28s var(--ease-premium)
}

.btn-outline-brand:hover {
  background: var(--jp-blue);
  color: #fff
}

.btn-brand i,
.btn-outline-brand i,
a.fw-bold i {
  transition: transform .28s var(--ease-premium)
}

.btn-brand:hover i,
.btn-outline-brand:hover i,
a.fw-bold:hover i {
  transform: translateX(3px)
}

.hero-carousel-section {
  position: relative;
  padding: 150px 0 40px;
  overflow: hidden;
  background: radial-gradient(circle at 85% 15%, rgba(234, 107, 45, .10), transparent 28%), radial-gradient(circle at 15% 85%, rgba(32, 60, 130, .10), transparent 28%), linear-gradient(180deg, #fff 0%, #f8faff 100%)
}

.hero-carousel-head {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center
}

.hero-carousel-head h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  max-width: 820px;
  margin: 0 auto
}

.hero-carousel-head h1 span {
  color: var(--jp-orange)
}

.hero-carousel {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.hero-carousel .carousel-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 70px
}

.hero-carousel-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--jp-blue);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(16, 38, 95, .2);
  transition: .2s
}

.hero-carousel-arrow:hover {
  background: var(--jp-orange);
  color: #fff
}

.hero-carousel .carousel-indicators {
  margin-bottom: 16px
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .6);
  border: 0;
  opacity: 1;
  transition: .25s
}

.hero-carousel .carousel-indicators .active {
  background: var(--jp-orange);
  width: 26px;
  border-radius: 6px
}

.hero-cta-bar {
  max-width: 820px;
  margin: 36px auto 0;
  text-align: center
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center
}

.stat strong {
  display: block;
  font-family: 'Poppins';
  font-size: 1.55rem;
  color: var(--jp-blue)
}

.stat span {
  color: var(--jp-muted);
  font-size: .86rem
}

.banner-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow)
}

.banner-frame img {
  width: 100%;
  display: block;
  object-fit: cover
}

.banner-frame-wide img {
  aspect-ratio: 4/3;
  object-fit: cover
}

.kavach-panel-photo {
  padding: 0;
  overflow: hidden
}

.kavach-panel-photo img {
  max-height: none;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block
}

.scroll-hero-photo {
  width: 100%;
  border-radius: 22px;
  display: block;
  object-fit: cover
}

.trust-strip {
  margin-top: 0px;
  position: relative;
  z-index: 3
}

.trust-card {
  background: #fff;
  border: 1px solid var(--jp-line);
  box-shadow: 0 20px 55px rgba(17, 43, 97, .08);
  border-radius: 24px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

.cert-pill {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #27324a;
  font-weight: 800
}

.cert-pill span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--jp-bg);
  display: grid;
  place-items: center;
  color: var(--jp-blue);
  font-size: 1.15rem
}

.category-card {
  height: 100%;
  border: 1px solid var(--jp-line);
  border-radius: var(--radius);
  padding: 32px;
  background: #fff;
  transition: transform .35s var(--ease-premium), box-shadow .35s var(--ease-premium), border-color .35s var(--ease-premium);
  position: relative;
  overflow: hidden
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(234, 107, 45, .28)
}

.category-card:after {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(234, 107, 45, .08);
  right: -70px;
  top: -75px
}

.icon-box {
  width: 62px;
  height: 62px;
  border-radius: 19px;
  background: linear-gradient(145deg, #eef3ff, #fff);
  display: grid;
  place-items: center;
  color: var(--jp-blue);
  font-size: 1.5rem;
  margin-bottom: 26px;
  transition: transform .35s var(--ease-premium)
}

.category-card:hover .icon-box {
  transform: scale(1.035)
}

.category-card h3 {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 1.35rem
}

.category-card p {
  color: var(--jp-muted);
  line-height: 1.7
}

.product-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #101a33;
  aspect-ratio: 4/5;
  box-shadow: 0 0 0 rgba(16, 38, 95, 0);
  transition: transform .4s var(--ease-premium), box-shadow .4s var(--ease-premium)
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(16, 38, 95, .22)
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease-premium)
}

.product-card:hover img {
  transform: scale(1.035)
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 17, 39, .92), rgba(7, 17, 39, .08) 65%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff
}

.product-overlay span {
  color: #ffd7be;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase
}

.product-overlay h3 {
  font-family: 'Poppins';
  font-weight: 800
}

.product-overlay p {
  color: rgba(255, 255, 255, .72);
  margin: 0
}

/* Kavach */
.brand-feature {
  border-radius: 34px;
  background: linear-gradient(150deg, var(--jp-dark-navy) 0%, var(--jp-blue-dark) 55%, var(--jp-blue) 100%);
  padding: 60px;
  color: #fff;
  position: relative;
  overflow: hidden
}

.brand-feature:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(112deg, rgba(255, 255, 255, .045) 0 1.5px, transparent 1.5px 46px);
  opacity: .6;
  pointer-events: none
}

.brand-feature:after {
  content: '';
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(234, 107, 45, .16);
  right: -180px;
  top: -190px
}

.brand-feature>* {
  position: relative;
  z-index: 1
}

.kavach-panel {
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 30px 60px rgba(2, 8, 26, .35)
}

.kavach-panel img {
  max-height: 250px;
  object-fit: contain;
  width: 100%
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 10px
}

.feature-list i {
  color: #ff9c63
}

.metrics {
  background: var(--jp-blue-dark);
  color: #fff;
  border-radius: 30px;
  padding: 5px
}

.metric {
  padding: 20px
}

.metric strong {
  font-family: 'Poppins';
  font-size: 2.3rem;
  display: block
}

.metric span {
  color: rgba(255, 255, 255, .66)
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: 260px 260px;
  gap: 18px
}

.gallery-grid .gallery-item {
  border-radius: 24px;
  overflow: hidden;
  position: relative
}

.gallery-grid .gallery-item:first-child {
  grid-row: 1/3
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.gallery-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  background: rgba(16, 38, 95, .88);
  color: #fff;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  backdrop-filter: blur(8px)
}

.process-step {
  padding: 30px 26px;
  border-left: 2px solid #e9edf5;
  position: relative
}

.process-step:before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--jp-orange);
  position: absolute;
  left: -8px;
  top: 37px;
  box-shadow: 0 0 0 7px #fff0e8
}

.process-step h4 {
  font-family: 'Poppins';
  font-weight: 800
}

.process-step p {
  color: var(--jp-muted);
  margin: 0
}

.cta-panel {
  border-radius: 34px;
  padding: 65px;
  background: linear-gradient(135deg, #fff1e8 0%, #f4f7ff 60%, #eef3ff 100%);
  border: 1px solid #e9edf5;
  position: relative;
  overflow: hidden
}

.cta-panel:before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(234, 107, 45, .14);
  right: -80px;
  top: -90px
}

.cta-panel>* {
  position: relative
}

.page-hero {
  padding: 165px 0 85px;
  background: #081026;
  color: #fff
}

.page-hero h1 {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -.05em;
  color: #fff
}

.page-hero .eyebrow {
  color: var(--jp-orange)
}

.page-hero .eyebrow:before {
  background: var(--jp-orange)
}

.page-hero .lead-copy {
  color: rgba(255, 255, 255, .8);
  font-weight: 500
}

.page-hero .breadcrumb {
  --bs-breadcrumb-divider: '/'
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, .6)
}

.page-hero .breadcrumb-item.active {
  color: #fff
}

.story-card {
  border: 1px solid var(--jp-line);
  border-radius: 30px;
  padding: 40px;
  background: #fff;
  height: 100%
}

.story-card .num {
  font-family: 'Poppins';
  font-size: 4.2rem;
  color: rgba(32, 60, 130, .09);
  font-weight: 900;
  line-height: 1
}

.story-card h3 {
  font-family: 'Poppins';
  font-weight: 800
}

.owner-card {
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--jp-line);
  padding: 34px;
  height: 100%;
  box-shadow: 0 18px 50px rgba(23, 49, 111, .06)
}

.owner-avatar {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--jp-blue), #3159ac);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: 'Poppins';
  font-size: 2rem;
  font-weight: 800
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  color: #5f6a80
}

.contact-row i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--jp-bg);
  display: grid;
  place-items: center;
  color: var(--jp-orange)
}

/* Footer */
.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(7, 26, 67, .97), rgba(16, 38, 95, .95));
  color: #fff;
  padding: 75px 0 28px
}

.footer:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("../images/photos/factory-worker-quality.png");
  background-size: cover;
  background-position: center;
  opacity: .08;
  pointer-events: none
}

.footer:after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 10%, rgba(234, 107, 45, .09), transparent 35%);
  pointer-events: none
}

.footer .container {
  position: relative;
  z-index: 2
}

.footer-logo {
  max-width: 100px;
  object-fit: contain;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 160px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, .7)
}

.footer a {
  position: relative;
  transition: color .25s var(--ease-premium)
}

.footer a:hover {
  color: #fff
}

.footer h6 {
  font-family: 'Poppins';
  font-weight: 800;
  margin-bottom: 18px
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding-top: 24px;
  margin-top: 45px;
  color: rgba(255, 255, 255, .5);
  font-size: .88rem
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--jp-blue-dark);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(16, 38, 95, .28);
  opacity: 0;
  pointer-events: none;
  transition: .25s;
  z-index: 1000
}

.back-to-top:hover {
  background: var(--jp-orange)
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto
}

/* Reveals */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 1.4s var(--ease-premium), transform 1.4s var(--ease-premium)
}

.reveal {
  transform: translateY(18px)
}

.reveal-left {
  transform: translateX(-20px)
}

.reveal-right {
  transform: translateX(20px)
}

.reveal-scale {
  transform: scale(.96)
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.1s var(--ease-premium), transform 1.1s var(--ease-premium)
}

.reveal-stagger.is-visible>* {
  opacity: 1;
  transform: translateY(0)
}

.reveal-stagger.is-visible>*:nth-child(1) {
  transition-delay: 0ms
}

.reveal-stagger.is-visible>*:nth-child(2) {
  transition-delay: 150ms
}

.reveal-stagger.is-visible>*:nth-child(3) {
  transition-delay: 300ms
}

.reveal-stagger.is-visible>*:nth-child(4) {
  transition-delay: 450ms
}

.reveal-stagger.is-visible>*:nth-child(5) {
  transition-delay: 600ms
}

.reveal-stagger.is-visible>*:nth-child(6) {
  transition-delay: 750ms
}

/* Hero reveal sequence */
.hero-reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.5s var(--ease-premium), transform 1.5s var(--ease-premium)
}

.hero-reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  color: #fff;

}

.hero-reveal-media {
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.5s var(--ease-premium), transform 1.5s var(--ease-premium)
}

.hero-reveal-media.is-visible {
  opacity: 1;
  transform: scale(1)
}

/* Water Micro Interaction */
.water-drop {
  position: fixed;
  pointer-events: none;
  user-select: none;
  z-index: 9998;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .95) 0%, rgba(170, 220, 245, .88) 25%, rgba(75, 160, 215, .72) 65%, rgba(30, 110, 180, .42) 100%);
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, .9), 0 2px 7px rgba(32, 60, 130, .22);
  transform: translate(-50%, -50%);
  animation: water-drop-move .5s var(--ease-premium) forwards
}

.water-impact {
  position: fixed;
  pointer-events: none;
  user-select: none;
  z-index: 9998;
  border-radius: 50% 45% 55% 40%/45% 55% 40% 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, .82), rgba(120, 195, 235, .6) 45%, rgba(60, 145, 205, .22) 75%, transparent 100%);
  filter: blur(.2px);
  box-shadow: 0 0 8px rgba(90, 175, 225, .22);
  transform: translate(-50%, -50%) scale(.4);
  opacity: 0;
  animation: water-impact-pop .4s var(--ease-premium) forwards
}

.water-ripple,
.water-ripple-soft {
  position: fixed;
  pointer-events: none;
  user-select: none;
  z-index: 9998;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: water-ripple-grow .5s var(--ease-premium) forwards
}

.water-ripple {
  border: 1.5px solid rgba(65, 155, 215, .58);
  opacity: .65
}

.water-ripple-soft {
  border: 1.5px solid rgba(65, 155, 215, .28);
  animation-delay: .06s
}

@keyframes water-drop-move {
  to {
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy)));
    opacity: 0
  }
}

@keyframes water-impact-pop {
  0% {
    transform: translate(-50%, -50%) scale(.4);
    opacity: 0
  }

  45% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: .75
  }

  100% {
    transform: translate(-50%, -50%) scale(.85);
    opacity: 0
  }
}

@keyframes water-ripple-grow {
  to {
    width: var(--ripple-size, 50px);
    height: var(--ripple-size, 50px);
    opacity: 0
  }
}

@media(max-width:991px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    margin-top: 12px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .5);
    box-shadow: var(--shadow)
  }

  .navbar-collapse .nav-link {
    padding: 12px 6px !important;
    font-size: 1.05rem
  }

  .navbar-collapse .btn-brand {
    width: 100%;
    justify-content: center;
    display: flex;
    padding: 14px 22px
  }

  .hero-carousel-section {
    padding-top: 125px
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 230px 230px
  }

  .gallery-grid .gallery-item:first-child {
    grid-column: 1/3;
    grid-row: auto
  }

  .section-pad {
    padding: 78px 0
  }
}

@media(max-width:767px) {
  .section-pad {
    padding: 64px 0
  }

  .hero-carousel-section {
    padding-top: 112px
  }

  .hero-carousel-head h1 {
    font-size: 2.5rem
  }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 44px
  }

  .hero-carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem
  }

  .trust-card {
    justify-content: flex-start
  }

  .feature-list {
    grid-template-columns: 1fr
  }

  .brand-feature {
    padding: 38px 24px
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none
  }

  .gallery-grid .gallery-item:first-child {
    grid-column: auto
  }

  .gallery-grid .gallery-item {
    height: 240px
  }

  .cta-panel {
    padding: 42px 25px
  }

  .page-hero {
    padding: 135px 0 65px
  }

  .footer-logo {
    margin-left: 100px;
    margin-bottom: 24px
  }
}

@media (max-width:374px) {
  .footer-logo {
    margin-left: 100px;
  }
}

@media (min-width:375px) and (max-width:424px) {
  .footer-logo {
    margin-left: 130px;
  }
}

@media (min-width:425px) and (max-width:767px) {
  .footer-logo {
    margin-left: 150px;
  }
}

@media (min-width:768px) and (max-width:1023px) {
  .footer-logo {
    margin-left: 300px;
  }
}

@media (min-width:1024px) and (max-width:1439px) {
  .footer-logo {
    margin-left: 120px;
  }
}

/* Leadership section */
.owner-name {
  font-family: 'Poppins', sans-serif
}

.owner-avatar-alt {
  background: linear-gradient(145deg, var(--jp-orange), #f38a51)
}

.owner-card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease
}

.owner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent
}

.form-control,
.form-select {
  border-color: var(--jp-line);
  padding: .9rem 1rem
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(32, 60, 130, .45);
  box-shadow: 0 0 0 .2rem rgba(32, 60, 130, .08)
}

/* Scroll-tilt showcase (container scroll animation) */
.scroll-hero-section {
  min-height: 70rem;
  display: flex;
  align-items: center;
  overflow: hidden
}

.scroll-hero-header {
  max-width: 760px;
  margin: 0 auto;
  will-change: transform
}

.scroll-hero-card {
  perspective: 1400px;
  margin-top: 60px;
  display: flex;
  justify-content: center
}

.scroll-hero-card-inner {
  width: 100%;
  max-width: 1040px;
  background: linear-gradient(135deg, var(--jp-blue-dark), var(--jp-blue));
  border: 4px solid rgba(255, 255, 255, .14);
  border-radius: 32px;
  padding: 16px;
  will-change: transform;
  transform-origin: center top;
  box-shadow: 0 0 #0000004d, 0 9px 20px #0000004a, 0 37px 37px #00000042, 0 84px 50px #00000026
}

.scroll-hero-card-inner .gallery-grid {
  border-radius: 22px;
  overflow: hidden
}

@media(max-width:991px) {
  .scroll-hero-section {
    min-height: 60rem
  }

  .back-to-top {
    right: 28px;
    bottom: 24px;
    width: 46px;
    height: 46px;
  }
}

@media(max-width:767px) {
  .scroll-hero-section {
    min-height: 46rem;
    padding: 64px 0
  }

  .scroll-hero-card {
    margin-top: 36px
  }

  .scroll-hero-card-inner {
    padding: 10px;
    border-radius: 26px
  }

  .scroll-hero-card-inner .gallery-grid {
    grid-template-rows: none
  }

  .back-to-top {
    right: 20px;
    bottom: 24px;
    width: 46px;
    height: 46px;
  }
}

@media(prefers-reduced-motion:reduce) {

  .scroll-hero-header,
  .scroll-hero-card-inner {
    transform: none !important
  }
}

/* Loader */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--jp-warm-white);
  transition: opacity .55s var(--ease-premium), transform .55s var(--ease-premium)
}

.site-loader.is-hidden {
  opacity: 0;
  transform: scale(1.02) translateY(-10px);
  pointer-events: none
}

.site-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px
}

.jd-plant {
  overflow: visible
}

.loader-bag-group {
  opacity: 0;
  transform: scale(.92) translateY(8px);
  animation: bag-in .4s var(--ease-premium) forwards
}

@keyframes bag-in {
  to {
    opacity: 1;
    transform: scale(1) translateY(0)
  }
}

.loader-stem {
  transform: scaleY(0);
  transform-origin: 100px 166px;
  animation: stem-grow .8s var(--ease-premium) .4s forwards
}

@keyframes stem-grow {
  to {
    transform: scaleY(1)
  }
}

.loader-leaf .leaf-inner {
  opacity: 0;
  transform-origin: 0 0;
  transform: scale(.2) rotate(8deg)
}

.loader-leaf-a .leaf-inner {
  animation: leaf-grow-a .5s var(--ease-premium) both
}

.loader-leaf-b .leaf-inner {
  animation: leaf-grow-b .5s var(--ease-premium) both
}

.leaf-1 .leaf-inner {
  animation-delay: .85s
}

.leaf-2 .leaf-inner {
  animation-delay: 1.02s
}

.leaf-3 .leaf-inner {
  animation-delay: 1.2s
}

.leaf-4 .leaf-inner {
  animation-delay: 1.38s
}

.leaf-5 .leaf-inner {
  animation-delay: 1.55s
}

@keyframes leaf-grow-a {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg)
  }
}

@keyframes leaf-grow-b {
  from {
    transform: scale(.2) rotate(-8deg)
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg)
  }
}

.site-loader-word {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: .04em;
  font-size: 1.05rem;
  color: var(--jp-blue-dark);
  text-align: center;
  opacity: 0;
  animation: loader-text-in .5s var(--ease-premium) 1.5s forwards
}

.site-loader-tagline {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--jp-muted);
  margin-top: 8px
}

@keyframes loader-text-in {
  from {
    opacity: 0;
    transform: translateY(6px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media(max-width:480px) {
  .jd-plant {
    width: 150px;
    height: auto
  }
}

@media(prefers-reduced-motion:reduce) {
  .loader-bag-group {
    animation: none;
    opacity: 1;
    transform: none
  }

  .loader-stem {
    animation: none;
    transform: scaleY(1)
  }

  .loader-leaf .leaf-inner {
    animation: none;
    opacity: 1;
    transform: scale(1) rotate(0deg)
  }

  .site-loader-word {
    animation: none;
    opacity: 1
  }

  .site-loader {
    transition: opacity .35s ease
  }

  .site-loader.is-hidden {
    transform: none
  }
}

/* Floating actions — WhatsApp + Catalogue */
.float-actions {
  position: fixed;
  right: 24px;
  bottom: 86px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 0;
  height: 52px;
  padding-right: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--jp-ink);
  font-weight: 800;
  font-size: .85rem;
  box-shadow: 0 14px 32px rgba(16, 38, 95, .22);
  transition: .25s;
  overflow: hidden;
  max-width: 52px
}

.float-btn i {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  border-radius: 50%;
  color: #fff
}

.float-btn-label {
  white-space: nowrap;
  padding: 0 18px 0 10px;
  opacity: 0;
  transition: opacity .2s ease
}

.float-btn:hover,
.float-btn:focus-visible {
  max-width: 220px;
  padding-right: 2px
}

.float-btn:hover .float-btn-label,
.float-btn:focus-visible .float-btn-label {
  opacity: 1
}

.float-btn-whatsapp i {
  background: #25D366
}

.float-btn-whatsapp:hover {
  box-shadow: 0 18px 40px rgba(37, 211, 102, .35)
}

.float-btn-catalogue i {
  background: var(--jp-blue)
}

.float-btn-catalogue:hover {
  box-shadow: 0 18px 40px rgba(32, 60, 130, .3)
}

@media(max-width:767px) {
  .float-actions {
    right: 16px;
    bottom: 78px;
    gap: 12px
  }

  .float-btn,
  .float-btn:hover,
  .float-btn:focus-visible {
    max-width: 52px
  }

  .float-btn-label {
    display: none
  }
}

/* Scroll-expand hero */
.se-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #081633
}

.se-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.se-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.se-bg:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 51, .5) 0%, rgba(8, 22, 51, .8) 100%)
}

.se-stage {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  width: 100%;
  padding: 140px 20px 60px;
  gap: 34px;
  text-align: center
}

.se-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px
}

.se-heading .eyebrow {
  color: #fff
}

.se-heading .eyebrow:before {
  background: var(--jp-orange)
}

.se-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  letter-spacing: -.03em;
  line-height: 1.02;
  color: #fff;
  margin: 0
}

.se-title-word {
  display: inline-block
}

.se-title-b {
  color: var(--jp-orange)
}

.se-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  width: 300px;
  height: 400px;
  max-width: 95vw;
  max-height: 85vh
}

.se-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.se-media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 36, .35);
  transition: opacity .2s ease
}

.se-hint {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, .75);
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: opacity .3s ease
}

.se-hero.is-expanded .se-hint {
  opacity: 0;
  pointer-events: none
}

.se-cta-bar {
  padding: 60px 0 26px;
  background: linear-gradient(180deg, #081633 0%, #0b1c4a 55%, #0f295c 100%);
}

.se-cta-bar .lead-copy {
  color: rgba(255, 255, 255, .75)
}

.se-cta-bar .hero-stats {
  justify-content: center
}

.se-cta-bar .stat strong {
  color: #fff
}

.se-cta-bar .stat span {
  color: rgba(255, 255, 255, .6)
}

@media(max-width:767px) {
  .se-stage {
    padding: 110px 16px 40px;
    gap: 22px
  }

  .se-title {
    gap: 0 10px
  }

  .se-media {
    width: 240px;
    height: 300px
  }
}

.se-hero.se-static .se-media {
  width: min(920px, 92vw);
  height: min(560px, 70vh)
}

.se-hero.se-static .se-hint {
  display: none
}

/* Responsive */
@media(max-width:767px) {
  .reveal {
    transform: translateY(14px)
  }

  .reveal-left {
    transform: translateX(-16px)
  }

  .reveal-right {
    transform: translateX(16px)
  }

  .reveal-stagger>* {
    transform: translateY(14px)
  }

  .hero-reveal-item {
    transform: translateY(14px)
  }

  .navbar {
    padding: 16px 0
  }

  .navbar.navbar-scrolled {
    padding: 10px 0
  }
}

/* Reduced Motion */
@media(prefers-reduced-motion:reduce) {

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-stagger>*,
  .hero-reveal-item,
  .hero-reveal-media {
    transition: opacity .3s ease !important;
    transform: none !important
  }

  .product-card,
  .category-card,
  .owner-card,
  .btn-brand,
  .btn-outline-brand,
  .navbar,
  .navbar-brand img {
    transition: opacity .3s ease !important
  }

  .product-card:hover,
  .category-card:hover,
  .owner-card:hover,
  .btn-brand:hover {
    transform: none !important
  }

  .water-drop,
  .water-ripple {
    display: none !important
  }
}

/* Redesigned Home Page Counter Section inside .metrics (Dark Navy Background with Light Dividers) */
.home-metrics-new {
  padding: 12px 0;
}

.home-metric-col {
  position: relative;
  padding: 24px 15px;
}

.metrics .home-metric-item strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2.3rem, 5vw, 3rem);
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.metrics .home-metric-item span {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(0.85rem, 2.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.01em;
}

@media (min-width: 992px) {
  .metrics .home-metric-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.22);
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .metrics .home-metric-col:nth-child(2n)::after {
    display: none;
  }

  .metrics .home-metric-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.22);
  }
}

@media (max-width: 575px) {
  .metrics .home-metric-col::after {
    display: none;
  }
}

/* Pan India Footprint Section Styles */
.footprint-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footprint-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08) !important;
}

.footprint-map-container svg text {
  pointer-events: none;
}

/* Rain Sathi Showcase Section Styles */
.rain-sathi-showcase-section {
  position: relative;
  background: linear-gradient(135deg, #071a43 0%, #10265f 50%, #1a367c 100%);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(7, 26, 67, 0.25);
  margin-top: 40px;
  margin-bottom: 60px;
  padding: 60px 30px;
}

@media (max-width: 767px) {
  .rain-sathi-showcase-section {
    padding: 40px 16px;
    border-radius: 24px;
  }
}

.rain-sathi-bg-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 107, 45, 0.22) 0%, rgba(234, 107, 45, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.rain-sathi-showcase-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s var(--ease-premium);
  cursor: pointer;
  height: 100%;
}

.rain-sathi-showcase-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(234, 107, 45, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 25px rgba(234, 107, 45, 0.25);
}

.showcase-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0a142c;
}

.showcase-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-premium);
}

.rain-sathi-showcase-card:hover .showcase-img-box img {
  transform: scale(1.08);
}

.showcase-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 67, 0) 35%, rgba(7, 26, 67, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: opacity 0.3s ease;
}

.showcase-badge-pill {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(234, 107, 45, 0.92);
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 6px;
  width: fit-content;
}

.showcase-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.showcase-card-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
}

.showcase-zoom-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.rain-sathi-showcase-card:hover .showcase-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.rain-sathi-hero-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 28px;
  padding: 2.5rem;
}

.spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}

.spec-chip:hover {
  background: rgba(234, 107, 45, 0.25);
  border-color: var(--jp-orange);
}

.lightbox-modal-img {
  max-height: 75vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Kavach Gallery Button & Modal Styling */
.product-card-gallery-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(234, 107, 45, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 3;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.product-card-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.btn-kavach-gallery {
  background: linear-gradient(135deg, #EA6B2D 0%, #d85718 100%);
  color: #ffffff !important;
  border: none;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(234, 107, 45, 0.45);
  transition: all 0.3s var(--ease-premium);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  margin-top: 0;
  text-decoration: none;
  flex: 1;
  white-space: nowrap;
}

.btn-kavach-gallery:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(234, 107, 45, 0.65);
  background: linear-gradient(135deg, #ff7a38 0%, #EA6B2D 100%);
}

.btn-whatsapp-card {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.15rem;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
  transition: all 0.3s var(--ease-premium);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
}

.btn-whatsapp-card:hover {
  transform: translateY(-2px) scale(1.12);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.7);
  background: linear-gradient(135deg, #32e174 0%, #25D366 100%);
  color: #ffffff !important;
}

.btn-whatsapp-pill {
  background: linear-gradient(135deg, #EA6B2D 0%, #d85718 100%);
  color: #ffffff !important;
  border: none;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(234, 107, 45, 0.45);
  transition: all 0.3s var(--ease-premium);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  margin-top: 10px;
  text-decoration: none;
  width: fit-content;
}

.btn-whatsapp-pill:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 25px rgba(234, 107, 45, 0.65);
  background: linear-gradient(135deg, #ff7a38 0%, #EA6B2D 100%);
  color: #ffffff !important;
}

.kavach-modal-content {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 28px !important;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(16, 38, 95, 0.22) !important;
  color: #162038 !important;
}

.kavach-main-view-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 440px;
  border-radius: 20px;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
}

.kavach-main-view-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.kavach-gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(16, 38, 95, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.kavach-gallery-nav-btn:hover {
  background: #EA6B2D;
  border-color: #EA6B2D;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(234, 107, 45, 0.4);
}

.kavach-gallery-nav-btn.prev {
  left: 15px;
}

.kavach-gallery-nav-btn.next {
  right: 15px;
}

.kavach-thumb-grid {
  display: flex;
  gap: 12px;
  justify-content: center;
  overflow-x: auto;
  padding: 6px 2px;
}

.kavach-thumb-item {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #cbd5e1;
  transition: all 0.3s ease;
  background: #f8fafc;
  opacity: 0.65;
  flex-shrink: 0;
}

.kavach-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.kavach-thumb-item:hover {
  opacity: 1;
  border-color: #EA6B2D;
  transform: translateY(-2px);
}

.kavach-thumb-item.active-thumb {
  opacity: 1;
  border-color: #EA6B2D;
  box-shadow: 0 0 12px rgba(234, 107, 45, 0.45);
  transform: scale(1.06);
}

/* Ensure bootstrap modals always show above backdrop */
.modal {
  z-index: 1060 !important;
}
.modal-backdrop {
  z-index: 1050 !important;
}