/* =============================================================================
   Custom css
   ============================================================================= */

.wpcf7 .wpcf7-not-valid-tip{
	    margin-bottom: 10px;

}


/* =============================================================================
   jewellery-page
   ============================================================================= */


body {
  margin: 0;
  font-family: Lato, sans-serif;
}

.jb-page,
.jb-page * {
  box-sizing: border-box;
}

.jb-page {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.jb-hero {
  position: relative;
  width: 100%;
  padding: 2rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf6fc 0%, #E4E4E4 50%, #dceefa 100%);
}

.jb-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.jb-blob-1 { top: -96px; left: -96px; width: 288px; height: 288px; background: rgba(46,163,223,0.20); }
.jb-blob-2 { bottom: -96px; right: -96px; width: 320px; height: 320px; background: rgba(46,163,223,0.15); }

.jb-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.jb-hero-container > * {
  min-width: 0;
}

.jb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #2ea3df;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid rgba(46,163,223,0.30);
  border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.jb-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ea3df;
  animation: jb-hero-pulse 1.6s infinite;
}
@keyframes jb-hero-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.jb-hero-title {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: normal;
}

.jb-hero-lead {
  font-size: 16px;
  line-height: 1.6;
  color: #404040;
}

.jb-hero-features { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.jb-hero-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  color: #1f1f1f;
  font-size: 14px;
}
.jb-hero-features svg { margin-top: 4px; flex-shrink: 0; }

.jb-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  max-width: 100%;
  background: #2ea3df;
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 12px 28px;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(46,163,223,0.30);
  transition: background 0.2s;
}
.jb-hero-cta:hover { background: #1f93cf; }

.jb-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 420px;
  margin-top: 1.5rem;
}
.jb-hero-stat {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid #fff;
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.jb-hero-stat-n { color: #2ea3df; font-size: 18px; font-weight: 700; line-height: 1.2; }
.jb-hero-stat-l { font-size: 11px; color: #525252; line-height: 1.2; }

.jb-hero-image-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.jb-hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.jb-hero-glow {
  position: absolute;
  inset: -12px;
  border-radius: 24px;
  background: linear-gradient(135deg, #2ea3df, #1f93cf);
  opacity: 0.2;
  filter: blur(40px);
}
.jb-hero-corner {
  position: absolute;
  width: 64px;
  height: 64px;
}
.jb-hero-corner-tl {
  top: -12px;
  left: -12px;
  border-top: 4px solid #2ea3df;
  border-left: 4px solid #2ea3df;
  border-top-left-radius: 16px;
}
.jb-hero-corner-br {
  bottom: -12px;
  right: -12px;
  border-bottom: 4px solid #2ea3df;
  border-right: 4px solid #2ea3df;
  border-bottom-right-radius: 16px;
}

.jb-hero-img {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 420px;
  object-fit: contain;
  border-radius: 16px;
  border: 4px solid #fff;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  outline: 1px solid rgba(0,0,0,0.1);
}

.jb-hero-floating-badge {
  position: absolute;
  bottom: -16px;
  left: 16px;
  background: #fff;
  border: 1px solid #f5f5f5;
  border-radius: 9999px;
  padding: 8px 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.jb-hero-floating-dots { display: inline-flex; }
.jb-hero-floating-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ea3df;
  margin-left: -4px;
}
.jb-hero-floating-dots span:first-child { margin-left: 0; }
.jb-hero-floating-text { font-size: 12px; font-weight: 600; color: #1f1f1f; }

.jb-about {
  width: 100%;
  background: #ffffff;
  padding: 2rem 0;
}

.jb-about-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 2.5rem;
}

.jb-about-container > * {
  min-width: 0;
}

.jb-about-title {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #000;
  margin: 0 0 0.25rem;
}

.jb-about-text {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #404040;
}

.jb-about-video-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  border: 4px solid #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  aspect-ratio: 16 / 9;
}

.jb-about-image-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  border: 4px solid #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  outline: 1px solid rgba(0, 0, 0, 0.1);
}

.jb-about-image {
  width: 100%;
  height: auto;
  display: block;
}

.jb-about-video-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: 0;
}

.jb-about-video-thumb {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #111;
  color: inherit;
  text-decoration: none;
}

.jb-about-video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jb-about-video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.42) 100%);
}

.jb-about-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #2ea3df;
  box-shadow: 0 12px 30px rgba(46, 163, 223, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.jb-about-video-thumb:hover .jb-about-video-play,
.jb-about-video-thumb:focus-visible .jb-about-video-play {
  transform: translate(-50%, -50%) scale(1.06);
  background: #1f93cf;
}

.jb-about-video-play svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  fill: #fff;
}

.jb-cta-strip {
  width: 100%;
  background: #2ea3df;
  padding: 24px 0;
}

.jb-cta-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.jb-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  border-radius: 9999px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 500;
  min-width: 220px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s ease;
}

.jb-cta-btn:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.jb-cta-btn svg {
  width: 20px;
  height: 20px;
}

.jb-zigzag {
  width: 100%;
  background: #fff;
  padding: 2rem 0;
}

.jb-zigzag-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.jb-zigzag-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 2rem;
}

.jb-zigzag-text h2,
.jb-zigzag-text h3 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #000;
  margin: 0 0 4px;
}

.jb-zigzag-text p {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #404040;
}

.jb-zigzag-image {
  align-self: start;
}

.jb-zigzag-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 1rem;
  border: 4px solid #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  outline: 1px solid rgba(0, 0, 0, 0.1);
}

.jb-portfolio {
  width: 100%;
  background: #ffffff;
  padding: 2rem 0;
}

.jb-portfolio-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.jb-portfolio-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #2ea3df;
  margin-bottom: 0.25rem;
}

.jb-portfolio-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  column-gap: 2rem;
  row-gap: 3rem;
}

.jb-portfolio-card {
  display: flex;
  flex-direction: column;
}

.jb-portfolio-image {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
}

.jb-portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jb-portfolio-card h3 {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2ea3df;
  margin-bottom: 0.25rem;
}

.jb-portfolio-card p {
  margin-top: 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
}

.jb-faq {
  width: 100%;
  background: #E4E4E4;
  padding: 2rem 0;
}

.jb-faq-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.jb-faq-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2ea3df;
  margin-bottom: 0.25rem;
}

.jb-faq-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.jb-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jb-faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  overflow: hidden;
}

.jb-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
}

.jb-faq-item summary::-webkit-details-marker {
  display: none;
}

.jb-faq-question {
  flex: 1;
  font-weight: 600;
}

.jb-faq-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: #6b7280;
  transition: transform 0.2s ease;
}

.jb-faq-item[open] .jb-faq-icon {
  transform: rotate(180deg);
}

.jb-faq-answer {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: #404040;
  line-height: 1.5;
}

.jb-faq-form-card {
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  padding: 1.5rem;
}

.jb-faq-form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.25rem;
  margin-top: 0;
}

.jb-faq-subtitle {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #404040;
}

.jb-faq-form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jb-faq-form input {
  width: 100%;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #000;
  outline: none;
}

.jb-faq-form input::placeholder {
  color: #737373;
}

.jb-faq-form input:focus {
  border-color: #2ea3df;
}

.jb-faq-form button {
  margin-top: 0.5rem;
  width: 100%;
  border: 0;
  border-radius: 0.375rem;
  background: #2ea3df;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.jb-faq-form button:hover {
  background: #1f93cf;
}

/* =============================================================================
   jewellery-city-chennai.html — city landing page
   - .jb-city-page: outer wrapper (box model + horizontal overflow clip)
   - .jb-chennai-hero*: stacked on small screens (copy first, image below); full-bleed from 768px
   ============================================================================= */

.jb-city-page,
.jb-city-page * {
  box-sizing: border-box;
}

.jb-city-page {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.jb-chennai-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
}

.jb-chennai-hero__media {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.jb-chennai-hero__bg {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 200px;
  max-height: min(52vh, 420px);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.jb-chennai-hero__overlay {
  display: none;
}

.jb-chennai-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(1600px, 100%);
  min-width: 0;
  margin: 0 auto;
  padding: 15px 24px 28px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  flex: 0 0 auto;
  background: linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
}

.jb-chennai-hero__content {
  max-width: 56rem;
  min-width: 0;
}

.jb-chennai-hero__title {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #171717;
  white-space: normal;
  margin: 0;
}

.jb-chennai-hero__highlight {
  position: relative;
  display: inline-block;
  color: #2ea3df;
}

.jb-chennai-hero__highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 3px;
  width: 100%;
  background: #2ea3df;
}

.jb-chennai-hero__sub {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.625;
  color: #404040;
  max-width: 36rem;
  margin-bottom: 0;
}

.jb-chennai-hero__sub strong {
  font-weight: 600;
  color: #171717;
}

.jb-chennai-hero__meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.jb-chennai-hero__bar {
  width: 40px;
  height: 2px;
  background: #2ea3df;
}

.jb-chennai-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #404040;
}

.jb-chennai-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #2ea3df;
}

.jb-chennai-hero__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  border-radius: 6px;
  background: #2ea3df;
  color: #fff;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(46, 163, 223, 0.3);
  transition: background-color 0.2s ease;
}

.jb-chennai-hero__cta:hover {
  background: #1f93cf;
}

/* =============================================================================
   jewellery-city-chennai.html — recent stall designs / portfolio (.jb-chennai-recent*)
   Mobile: horizontal scroll row; 768px+ grid in assets/responsive.css
   ============================================================================= */

.jb-chennai-recent,
.jb-chennai-recent * {
  box-sizing: border-box;
}

.jb-chennai-recent {
  width: 100%;
  background: #f7fbfd;
  padding: 2rem 0;
}

.jb-chennai-recent__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.jb-chennai-recent__head {
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
}

.jb-chennai-recent__title {
  font-size: 16px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #171717;
  white-space: normal;
  margin: 0;
}

.jb-chennai-recent__grid {
  margin-top: 2.5rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-gutter: stable;
  padding-bottom: 0.35rem;
}

.jb-chennai-recent__card {
  position: relative;
  margin: 0;
  flex: 0 0 auto;
  width: min(300px, calc(100vw - 3.25rem));
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  border-radius: 1rem;
  border: 4px solid #ffffff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  outline: 1px solid rgba(0, 0, 0, 0.1);
}

.jb-chennai-recent__card img {
  display: block;
  width: 100%;
  height: 224px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.jb-chennai-recent__card:hover img {
  transform: scale(1.05);
}

.jb-chennai-recent__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.jb-chennai-recent__card:hover .jb-chennai-recent__overlay {
  opacity: 1;
}

/* =============================================================================
   jewellery-city-chennai.html — clients logo strip (.jb-chennai-clients*)
   Mobile: horizontal scroll; 768px+ grid in assets/responsive.css
   ============================================================================= */

.jb-chennai-clients {
  width: 100%;
  background: #ffffff;
  padding: 2rem 0;
}

.jb-chennai-clients__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.jb-chennai-clients__head {
  text-align: center;
}

.jb-chennai-clients__title {
  font-size: 26px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #171717;
  margin: 0;
}

.jb-chennai-clients__accent {
  color: #2ea3df;
}

.jb-chennai-clients__media {
  margin-top: 2rem;
}

.jb-chennai-clients__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  margin: 0 -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-gutter: stable;
  padding-bottom: 0.35rem;
  list-style: none;
}

.jb-chennai-clients__logo {
  margin: 0;
  flex: 0 0 auto;
  width: min(152px, calc(100vw - 4.5rem));
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  padding: 0.65rem 0.85rem;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 6px;
  box-sizing: border-box;
}

.jb-chennai-clients__logo img {
  max-width: 100%;
  max-height: 2.5rem;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* =============================================================================
   jewellery-city-chennai.html — client testimonials (.jb-chennai-testimonials*)
   ============================================================================= */

.jb-chennai-testimonials {
  position: relative;
  width: 100%;
  padding: clamp(2.75rem, 6vw, 4.75rem) 0;
  overflow: hidden;
  background: linear-gradient(165deg, #eef6fc 0%, #fafcfe 42%, #ffffff 100%);
}

.jb-chennai-testimonials__blob {
  position: absolute;
  width: min(32rem, 90vw);
  height: min(32rem, 90vw);
  border-radius: 9999px;
  filter: blur(72px);
  pointer-events: none;
}

.jb-chennai-testimonials__blob--blue {
  top: -10rem;
  right: -12%;
  background: rgba(46, 163, 223, 0.14);
}

.jb-chennai-testimonials__blob--red {
  bottom: -11rem;
  left: -10%;
  background: rgba(236, 72, 153, 0.1);
}

.jb-chennai-testimonials__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: center;
}

.jb-chennai-testimonials__head {
  text-align: center;
}

.jb-chennai-testimonials__mark {
  display: block;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(3.5rem, 12vw, 5.25rem);
  line-height: 0.88;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.08em;
  margin: 0;
  user-select: none;
}

.jb-chennai-testimonials__title {
  margin-top: 1.25rem;
  font-size: clamp(2rem, 5.5vw, 2.75rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #171717;
}

.jb-chennai-testimonials__rule {
  display: block;
  margin: 1.125rem auto 0;
  width: 3.5rem;
  height: 3px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #2ea3df, #5ab8e8);
}

.jb-chennai-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-top: 1.25rem;
  align-items: stretch;
}

.jb-chennai-t-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.125rem;
  padding: 2.125rem 1.5rem 1.75rem;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 8px 28px rgba(46, 163, 223, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: visible;
}

.jb-chennai-t-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 163, 223, 0.22);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 16px 40px rgba(46, 163, 223, 0.12),
    0 24px 48px rgba(0, 0, 0, 0.06);
}

.jb-chennai-t-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  border: 3px solid #ffffff;
}

.jb-chennai-t-card__badge svg {
  width: 19px;
  height: 19px;
}

.jb-chennai-t-card__quote {
  margin: 0.25rem 0 0;
  flex: 1 1 auto;
  font-size: 15px;
  line-height: 1.7;
  color: #3f3f3f;
  quotes: none;
}

.jb-chennai-t-card__stars {
  margin-top: 1.35rem;
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  color: #f5b301;
}

.jb-chennai-t-card__stars svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.jb-chennai-t-card__author {
  margin-top: auto;
  padding-top: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.jb-chennai-t-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.jb-chennai-t-card__name {
  font-weight: 700;
  font-size: 15px;
  color: #171717;
  line-height: 1.25;
}

.jb-chennai-t-card__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  border-radius: 0 0 1.125rem 1.125rem;
  background: var(--accent);
  transition: width 0.45s ease;
}

.jb-chennai-t-card:hover .jb-chennai-t-card__bar {
  width: 100%;
}

/* =============================================================================
   jewellery-city-chennai.html — trade show venues (.jb-chennai-venues*)
   (768px+ in assets/responsive.css)
   ============================================================================= */

.jb-chennai-venues {
  width: 100%;
  background: linear-gradient(to bottom, #f7fbfd, #ffffff);
  padding: 2rem 0;
}

.jb-chennai-venues__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.jb-chennai-venues__head {
  max-width: none;
}

.jb-chennai-venues__title {
  font-size: 26px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #171717;
  margin: 0;
  white-space: nowrap;
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.jb-chennai-venues__title::-webkit-scrollbar {
  display: none;
}

.jb-chennai-venues__hl {
  position: relative;
  display: inline-block;
  color: #2ea3df;
}

.jb-chennai-venues__hl-bar {
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 3px;
  width: 100%;
  background: #2ea3df;
}

.jb-chennai-venues__lead {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #404040;
  margin-bottom: 0;
  max-width: 48rem;
}

.jb-chennai-venues__grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.jb-chennai-v-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jb-chennai-v-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.18);
}

.jb-chennai-v-card__bar {
  height: 6px;
  width: 100%;
  background: linear-gradient(to right, #2ea3df, #7ed0f2);
}

.jb-chennai-v-card__body {
  padding: 1rem;
}

.jb-chennai-v-card__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.jb-chennai-v-card__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(46, 163, 223, 0.1);
  color: #2ea3df;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jb-chennai-v-card__meta {
  min-width: 0;
}

.jb-chennai-v-card__eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2ea3df;
}

.jb-chennai-v-card__name {
  margin: 0.15rem 0 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #171717;
  line-height: 1.2;
}

.jb-chennai-v-card__text {
  margin-top: 0.5rem;
  font-size: 13px;
  line-height: 1.65;
  color: #525252;
  margin-bottom: 0;
}

/* =============================================================================
   jewellery-city-chennai.html — local map & contact (.jb-chennai-local*)
   (640px / 768px in assets/responsive.css)
   ============================================================================= */

.jb-chennai-local {
  position: relative;
  width: 100%;
  background: #2ea3df;
  padding: 2rem 0;
  overflow: hidden;
}

.jb-chennai-local__blob {
  position: absolute;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(48px);
  pointer-events: none;
}

.jb-chennai-local__blob--tl {
  top: -6rem;
  left: -6rem;
  width: 20rem;
  height: 20rem;
}

.jb-chennai-local__blob--br {
  bottom: -6rem;
  right: -6rem;
  width: 24rem;
  height: 24rem;
}

.jb-chennai-local__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.jb-chennai-local__info {
  color: #fff;
}

.jb-chennai-local__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.jb-chennai-local__rule {
  width: 2rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
}

.jb-chennai-local__title {
  margin: 0.75rem 0 0;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.jb-chennai-local__lead {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.jb-chennai-local__lead strong {
  font-weight: 600;
  color: #fff;
}

.jb-chennai-local__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
}

.jb-chennai-local__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.jb-chennai-local__icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.jb-chennai-local__text {
  font-size: 0.875rem;
  line-height: 1.65;
}

.jb-chennai-local__link {
  color: inherit;
  text-decoration: none;
}

.jb-chennai-local__link:hover {
  text-decoration: underline;
}

.jb-chennai-local__link--break {
  word-break: break-all;
}

.jb-chennai-local__cta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.jb-chennai-local__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.jb-chennai-local__btn--primary {
  background: #fff;
  color: #1f93cf;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.jb-chennai-local__btn--primary:hover {
  box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.3);
}

.jb-chennai-local__btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}

.jb-chennai-local__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.jb-chennai-local__mapwrap {
  width: 100%;
}

.jb-chennai-local__map {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  border: 4px solid #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  aspect-ratio: 4 / 3;
}

.jb-chennai-local__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

