/* =====================================================
   Smith Industrial Corporation Pvt. Ltd. (SICPL)
   Main Stylesheet
   Bootstrap 5 is loaded first; this file only overrides
   / extends it. Keep selectors scoped and reusable so
   this maps cleanly onto a WordPress theme (style.css +
   header.php / footer.php / page templates) later.
   ===================================================== */

/* ---------- Custom Fonts ---------- */
/* Futura: display headings. Poppins: body copy and UI text. */
@font-face {
  font-family: "Futura Light";
  src: url("../fonts/futura light bt.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura.ttc") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura Heavy";
  src: url("../fonts/Futura Heavy font.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
/* Merged with Developer 2 */
:root {
  --si-navy: #135193;
  --si-navy-light: #1c68b8;
  --si-navy-soft: #e8f0fa;
  --si-red: #ff0030;
  --si-red-dark: #b91c14;
  --si-gray-bg: #f4f6f9;
  --si-gray-border: #dfe3ea;
  --si-text: #000;
  --si-text-light: #6b7280;
  --si-white: #ffffff;
  --si-font-body: "Futura Light", "Segoe UI", Arial, sans-serif;
  --si-font-heading: "Futura Heavy", "Segoe UI", Arial, sans-serif;
  --si-radius: 6px;
  --si-transition: 0.25s ease;
  --si-product-grid: #363c3d4f;
}

/* ---------- Base ---------- */
/* Merged with Developer 2 */
body {
  font-family: var(--si-font-body);
  color: var(--si-text);
  background-color: var(--si-white);
  overflow-x: hidden;
}

/* Merged with Developer 2 */
h1,
h2,
h3,
h4,
h5,
h6,
.si-vd-hub,
.si-stat-num {
  font-family: var(--si-font-heading);
}

/* Merged with Developer 2 */
p {
  font-weight: 400;
  font-size: 1rem !important;
}

/* Merged with Developer 2 */
a {
  text-decoration: none;
}

/* Merged with Developer 2 */
a:hover {
  text-decoration: none;
}

/* Merged with Developer 2 */
img {
  max-width: 100%;
  height: auto;
}

/* Merged with Developer 2 */
.si-section {
  padding: 70px 0;
}

/* Merged with Developer 2 */
.si-section-sm {
  padding: 45px 0;
}

/* Merged with Developer 2 */
.si-bg-gray {
  background-color: var(--si-gray-bg);
}

/* Merged with Developer 2 */
.si-bg-navy {
  background-color: var(--si-navy);
  color: var(--si-white);
}

/* ---------- Section Heading Kit ---------- */
/* Merged with Developer 2 */
.si-badge {
  display: inline-block;
  background-color: var(--si-red);
  color: var(--si-white);
  font-family: var(--si-font-body);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 16px;
  border-radius: 3px;
  margin-bottom: 14px;
}

/* Merged with Developer 2 */
.si-section-title {
  font-weight: 800;
  color: var(--si-text);
  margin-bottom: 16px;
}

/* Merged with Developer 2 */
.si-section-subtitle {
  color: var(--si-text);
  max-width: 780px;
}

/* Merged with Developer 2 */
.si-section-emphasis {
  color: var(--si-text);
  font-weight: 700;
  max-width: 780px;
  margin: 0 auto;
}

/* Merged with Developer 2 */
.si-heading-center {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 820px;
}

/* ---------- Buttons ---------- */
/* Merged with Developer 2 */
.btn-si-primary {
  background-color: var(--si-red);
  border: 1px solid var(--si-red);
  color: var(--si-white);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: var(--si-radius);
  transition: var(--si-transition);
}

/* Merged with Developer 2 */
.btn-si-primary:hover {
  background-color: var(--si-red-dark);
  border-color: var(--si-red-dark);
  color: var(--si-white);
}

/* Header Enquiry Now button override */
header .btn-si-primary {
  background-color: var(--si-navy);
  border-color: var(--si-navy);
}

header .btn-si-primary:hover {
  background-color: var(--si-navy-light);
  border-color: var(--si-navy-light);
}

/* Merged with Developer 2 */
.btn-si-outline-light {
  background-color: transparent;
  border: 1px solid var(--si-white);
  color: var(--si-white);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: var(--si-radius);
  transition: var(--si-transition);
}

/* Merged with Developer 2 */
.btn-si-outline-light:hover {
  background-color: var(--si-white);
  color: var(--si-navy);
}

/* Merged with Developer 2 */
.btn-si-navy {
  background-color: var(--si-navy);
  border: 1px solid var(--si-navy);
  color: var(--si-white);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: var(--si-radius);
  transition: var(--si-transition);
}

/* Merged with Developer 2 */
.btn-si-navy:hover {
  background-color: var(--si-navy-light);
  border-color: var(--si-navy-light);
  color: var(--si-white);
}

/* ---------- Header / Navbar ---------- */
/* Merged with Developer 2 */
.si-topbar {
  background-color: var(--si-navy);
  height: 6px;
}

/* Merged with Developer 2 */
.si-navbar {
  background-color: #eceef1;
  box-shadow: 0 2px 10px rgba(19, 81, 147, 0.08);
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Merged with Developer 2 */
.si-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Merged with Developer 2 */
.si-logo-img {
  width: 150px;
  height: auto;
  flex-shrink: 0;
}

/* Merged with Developer 2 */
.si-footer-logo-badge {
  display: inline-flex;
  background-color: var(--si-white);
  padding: 18px 24px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

/* Merged with Developer 2 */
.si-footer-logo-badge .si-logo-img {
  /* height: 60px; */
}

/* Merged with Developer 2 */
.si-navbar .nav-link {
  color: var(--si-text);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 6px;
  padding: 8px 4px !important;
  border-bottom: 2px solid transparent;
  transition: var(--si-transition);
}

/* Merged with Developer 2 */
.si-navbar .nav-link:hover,
.si-navbar .nav-link.active {
  color: var(--si-red);
  border-bottom-color: var(--si-red);
}

/* Merged with Developer 2 */
.si-navbar .dropdown-menu {
  border: none;
  box-shadow: 0 8px 24px rgba(19, 81, 147, 0.15);
  border-radius: var(--si-radius);
}

/* Merged with Developer 2 */
.si-navbar .dropdown-item {
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 18px;
}

/* Merged with Developer 2 */
.si-navbar .dropdown-item:hover {
  background-color: var(--si-navy-soft);
  color: var(--si-red);
}

/* Merged with Developer 2 */
.si-search-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--si-white);
  color: var(--si-text);
  border: 1px solid var(--si-gray-border);
  box-shadow: 0 2px 6px rgba(19, 81, 147, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--si-transition);
}

/* Merged with Developer 2 */
.si-search-btn:hover {
  background-color: var(--si-red);
  border-color: var(--si-red);
  color: var(--si-white);
}

/* ---------- Hero ---------- */
.si-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--si-white);
  overflow: hidden;
}

.si-hero .si-hero-bg,
.si-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.col-lg-5 .rd-bg-image-2 {
  width: 100%;
  height: auto;
}

.quality-control .img {
  width: 100%;
  object-fit: contain;
  display: block;
}

.si-heading-center .span {
  margin-top: 20px;
}

.si-hero .si-hero-content {
  position: relative;
  z-index: 2;
  padding: 150px 0;
}

.si-hero h1 {
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 18px;
}

.si-hero p.lead {
  font-size: 1.05rem;
  max-width: 430px;
  border-left: 5px solid var(--si-red);
  padding-left: 16px;
  opacity: 0.92;
}

.si-hero-sm {
  min-height: 340px;
}

.si-hero-sm h1 {
  font-size: 2.1rem;
}

/* ---------- Page Header (sub-pages) ---------- */
/* Merged with Developer 2 */
.si-page-header {
  position: relative;
  padding: 90px 0 50px;
  color: var(--si-white);
  background:
    linear-gradient(110deg, rgba(19, 81, 147, 0.95), rgba(28, 104, 184, 0.85)),
    repeating-linear-gradient(45deg, #223d6b 0 2px, #1a3054 2px 40px);
}

/* Merged with Developer 2 */
.si-page-header h1 {
  font-weight: 800;
  margin-bottom: 8px;
}

/* Merged with Developer 2 */
.si-page-header .breadcrumb {
  margin-bottom: 0;
}

/* Merged with Developer 2 */
.si-page-header .breadcrumb-item,
.si-page-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
}

/* Merged with Developer 2 */
.si-page-header .breadcrumb-item.active {
  color: var(--si-white);
}

/* Merged with Developer 2 */
.si-page-header .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Image Placeholders ---------- */
/* Merged with Developer 2 */
.img-placeholder {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c9ced8;
  background-image: repeating-linear-gradient(45deg,
      #b9c0cd 0 12px,
      #c9ced8 12px 24px);
  color: #4a5568;
  text-align: center;
  overflow: hidden;
  border-radius: var(--si-radius);
}

/* Merged with Developer 2 */
.img-placeholder span {
  background: rgba(19, 81, 147, 0.75);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}

/* Merged with Developer 2 */
.ph-16x9 {
  aspect-ratio: 16/9;
}

/* Merged with Developer 2 */
.ph-4x3 {
  aspect-ratio: 4/3;
}

/* Merged with Developer 2 */
.ph-1x1 {
  aspect-ratio: 1/1;
}

/* Merged with Developer 2 */
.ph-3x2 {
  aspect-ratio: 3/2;
}

.ph-3x4-1 {
  aspect-ratio: 3/4;
}

.ph-3x4-2 {
  aspect-ratio: 3/4;
}

/* Merged with Developer 2 */
.ph-21x9 {
  aspect-ratio: 21/9;
}

/* ---------- Who We Are / Video ---------- */
/* Merged with Developer 2 */
.si-video-placeholder {
  position: relative;
  /* background-color: #7a7f87; */
  border-radius: var(--si-radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Merged with Developer 2 */
.si-play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--si-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--si-white);
  font-size: 1.6rem;
  transition: var(--si-transition);
  background: rgba(255, 255, 255, 0.08);
}

/* Merged with Developer 2 */
.si-video-placeholder:hover .si-play-btn {
  background-color: var(--si-red);
  border-color: var(--si-red);
}

/* ---------- Precision Banner ---------- */
/* Merged with Developer 2 */
.si-precision-banner {
  position: relative;
  color: var(--si-white);
  padding: 48px 0 32px;
  overflow: hidden;
  background-image:
    linear-gradient(100deg,
      rgba(4, 10, 20, 0.9) 0%,
      rgba(4, 10, 20, 0.65) 45%,
      rgba(4, 10, 20, 0.4) 100%),
    url("../images/industries.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Merged with Developer 2 */
.si-precision-banner h2 {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.25;
}

/* Merged with Developer 2 */
.si-precision-collage {
  position: relative;
  min-height: 180px;
  transform: scale(0.6);
  transform-origin: top right;
}

/* Merged with Developer 2 */
.si-precision-collage .si-collage-img {
  position: absolute;
  border: 6px solid var(--si-white);
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

/* Merged with Developer 2 */
.si-precision-collage .si-collage-img-1 {
  width: 62%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Merged with Developer 2 */
.si-precision-collage .si-collage-img-2 {
  width: 56%;
  top: 36%;
  right: 0;
  z-index: 2;
}

/* ---------- Why Choose Us / Feature Cards ---------- */
/* Merged with Developer 2 */
.si-feature-card {
  background-color: var(--si-navy);
  color: var(--si-white);
  border-radius: var(--si-radius);
  padding: 30px 20px;
  height: 100%;
  text-align: center;
  transition: var(--si-transition);
}

/* Merged with Developer 2 */
.si-feature-card:hover {
  background-color: var(--si-navy-light);
  transform: translateY(-4px);
}

/* icon size for all icon */

.my-icon-image {
  display: inline-block;
}

.my-icon-image img {
  width: 40px;
  object-fit: contain;
  display: block;
}

/* Merged with Developer 2 */
.si-feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
}

/* Merged with Developer 2 */
.si-feature-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
}

/* Merged with Developer 2 */
.si-feature-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* ---------- Industries We Serve ---------- */
/* Merged with Developer 2 */
.si-bg-industries {
  background-color: var(--si-gray-bg);
}

.si-bg-chipset {
  background-image: url("../images/chipset-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Merged with Developer 2 */
.si-industry-card {
  position: relative;
  margin-top: 14px;
  background-color: var(--si-white);
  padding: 14px 14px 22px;
  box-shadow: 6px 10px 24px rgba(19, 81, 147, 0.16);
  overflow: hidden;
}

.si-industry-card:hover {
  background-color: var(--si-navy);

}

.si-industry-card:hover .si-industry-label {
  color: #fff;
}

/* Re-expose the photo without clipping artefacts after counter-skew */
/* Merged with Developer 2 */
#siIndustriesCarousel .carousel-item .row>.col-md-4:first-child .si-industry-card .si-industry-photo,
#siIndustriesCarousel .carousel-item .row>.col-md-4:last-child .si-industry-card .si-industry-photo {
  overflow: hidden;
}

/* Merged with Developer 2 */
.si-industry-tab {
  position: absolute;
  top: -14px;
  width: 20px;
  height: 26px;
  background-color: var(--si-navy);
  z-index: 2;
}

/* Merged with Developer 2 */
.si-industry-tab-left {
  left: 22px;
}

/* Merged with Developer 2 */
.si-industry-tab-right {
  right: 22px;
}

/* Merged with Developer 2 */
.si-industry-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #c9ced8;
  margin-top: -8px;
  margin-bottom: 4px;
}

/* Merged with Developer 2 */
.si-industry-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Merged with Developer 2 */
.si-industry-photo .img-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

/* Merged with Developer 2 */
.si-industry-label {
  color: var(--si-navy);
  text-align: center;
  font-weight: 800;
  font-size: 1.2rem;
  padding-top: 14px;
}

/* Merged with Developer 2 */
.si-industry-card--dark {
  background-color: var(--si-navy);
}

/* Merged with Developer 2 */
.si-industry-card--dark .si-industry-label {
  color: var(--si-white);
}

/* Merged with Developer 2 */
.si-carousel-arrow {
  width: 40px;
  height: 40px;
  background-color: transparent;
  color: var(--si-red);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--si-transition);
}

/* Merged with Developer 2 */
.si-carousel-arrow:hover {
  color: var(--si-navy);
}

/* Merged with Developer 2 */
.carousel-control-prev,
.carousel-control-next {
  position: static;
  width: auto;
}

/* ---------- Brand Values (hub & spoke diagram) ---------- */
/* Merged with Developer 2 */
.si-values-diagram {
  position: relative;
  width: 100%;
  max-width: 980px;
  aspect-ratio: 2 / 1;
  margin: 0 auto;
}

/* Merged with Developer 2 */
.si-values-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Merged with Developer 2 */
.si-values-connectors line {
  stroke: var(--si-navy);
  stroke-width: 2;
  stroke-dasharray: 7 7;
  opacity: 0.45;
}

/* Merged with Developer 2 */
.si-values-connectors circle {
  fill: var(--si-navy);
  opacity: 0.7;
}

/* Merged with Developer 2 */
.si-vd-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--si-navy);
  color: var(--si-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: clamp(3rem, 5vw, 3rem);
  line-height: 1.2;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(19, 81, 147, 0.08);
  z-index: 2;
}

/* Merged with Developer 2 */
.si-vd-icon {
  position: absolute;
  width: 7.6%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--si-white);
  border: 2px solid var(--si-navy);
  color: var(--si-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.9rem, 1.8vw, 1.25rem);
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 10px rgba(19, 81, 147, 0.12);
  z-index: 2;
}

/* Merged with Developer 2 */
.si-vd-col-left {
  left: 30%;
}

/* Merged with Developer 2 */
.si-vd-col-right {
  left: 70%;
}

/* Merged with Developer 2 */
.si-vd-row-1 {
  top: 22%;
}

/* Merged with Developer 2 */
.si-vd-row-2 {
  top: 50%;
}

/* Merged with Developer 2 */
.si-vd-row-3 {
  top: 78%;
}

/* Merged with Developer 2 */
.si-vd-text {
  position: absolute;
  width: 24%;
  transform: translateY(-50%);
  z-index: 2;
}

/* Merged with Developer 2 */
.si-vd-text-left {
  left: 0;
  text-align: right;
}

/* Merged with Developer 2 */
.si-vd-text-right {
  left: 76%;
  text-align: left;
}

/* Merged with Developer 2 */
.si-vd-text h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--si-navy);
  margin-bottom: 4px;
}

/* Merged with Developer 2 */
.si-vd-text p {
  font-size: 0.82rem;
  color: var(--si-text);
  margin-bottom: 0;
  line-height: 1.25rem;
}

/* ---------- CTA Section ---------- */
/* Merged with Developer 2 */
.si-cta {
  background: linear-gradient(110deg, var(--si-navy), var(--si-navy-light));
  color: var(--si-white);
  border-radius: var(--si-radius);
  padding: 50px;
}

/* ---------- Process Steps (Manufacturing / R&D) ---------- */
/* Merged with Developer 2 */
.si-process-step {
  text-align: center;
  position: relative;
  padding: 0 10px;
}

/* Merged with Developer 2 */
.si-process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--si-red);
  color: var(--si-white);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.si-capability-stat-icon .icon-image-big img {
  width: 60px;
}

/* Merged with Developer 2 */
.si-process-step h4 {
  font-weight: 800;
  color: var(--si-navy);
  font-size: 1rem;
}

/* Merged with Developer 2 */
.si-process-step p {
  font-size: 0.85rem;
  color: var(--si-text);
}

.product-section-bg {
  /* background-image: url(/assets/images/we-server-industies.png); */
}

/* ---------- Product Grid (Our Products page) ---------- */
/* Merged with Developer 2 */
.si-product-grid-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--si-product-grid);
  border-radius: var(--si-radius);
  /* overflow: hidden; */
  height: 100%;
}

/* Merged with Developer 2 */
.si-product-grid-photo {
  width: 58%;
  flex-shrink: 0;
  aspect-ratio: 3/2;
}

/* Merged with Developer 2 */
.si-product-grid-photo .img-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}

/* Merged with Developer 2 */
.si-product-grid-text {
  padding-right: 14px;
}

/* Merged with Developer 2 */
.si-product-grid-text .title {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--si-navy);
}

/* Merged with Developer 2 */
.si-product-grid-text .subtitle {
  font-size: 0.82rem;
  color: var(--si-text);
}

/* ---------- Product List (no images) ---------- */
/* Merged with Developer 2 */
.si-products-hero-bg {
  background-image:
    linear-gradient(100deg,
      rgba(6, 17, 38, 0.92) 0%,
      rgba(9, 26, 54, 0.72) 32%,
      rgba(9, 26, 54, 0.3) 58%,
      rgba(9, 26, 54, 0.05) 78%),
    url("../images/product_bg.webp");
  background-size: cover, cover;
  background-position:
    center,
    center right;
  background-repeat: no-repeat, no-repeat;
}

/* Merged with Developer 2 */
.si-product-detail {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 0;
  /* background-image: url("../images/we-server-industies.png"); */
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

/* Merged with Developer 2 */
.si-product-detail:not(:last-child) {
  border-bottom: 1px solid var(--si-gray-border);
}

/* Merged with Developer 2 */
.si-product-detail-note {
  max-width: 780px;
  margin: 30px auto 0;
  background-color: var(--si-gray-bg);
  border-radius: 12px;
  padding: 36px 50px;
  color: var(--si-text);
  font-size: 0.85rem;
  text-align: center;
}

/* Merged with Developer 2 */
.si-product-detail-note p:not(:last-child) {
  margin-bottom: 20px;
}

/* ---------- Resource Cards ---------- */
/* Merged with Developer 2 */
.si-resource-card {
  border: 1px solid var(--si-gray-border);
  border-radius: var(--si-radius);
  padding: 26px;
  height: 100%;
  background-color: var(--si-white);
  transition: var(--si-transition);
}

/* Merged with Developer 2 */
.si-resource-card:hover {
  border-color: var(--si-red);
}

/* Merged with Developer 2 */
.si-resource-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--si-navy-soft);
  color: var(--si-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

/* ---------- Accordion (FAQ) tweaks ---------- */
/* Merged with Developer 2 */
.si-accordion .accordion-button {
  font-weight: 600;
  color: var(--si-navy);
}

/* Merged with Developer 2 */
.si-accordion .accordion-button:not(.collapsed) {
  color: var(--si-red);
  background-color: var(--si-navy-soft);
}

/* Merged with Developer 2 */
.si-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--si-gray-border);
}

/* ---------- Stats Strip ---------- */
/* Merged with Developer 2 */
.si-stats-strip {
  background-color: var(--si-navy-soft);
}

/* Merged with Developer 2 */
.si-stat {
  text-align: center;
  padding: 20px 10px;
}

/* Merged with Developer 2 */
.si-stat .si-stat-num {
  font-weight: 800;
  color: var(--si-navy);
  font-size: 2rem;
}

/* Merged with Developer 2 */
.si-stat .si-stat-label {
  color: var(--si-text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Footer ---------- */
/* Merged with Developer 2 */
.si-footer {
  background-color: var(--si-navy);
  color: rgba(255, 255, 255, 0.85);
}

.footer-container {}

/* Merged with Developer 2 */
.si-footer h5 {
  color: var(--si-white);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

/* Merged with Developer 2 */
.si-footer p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Merged with Developer 2 */
.si-footer ul {
  list-style: none;
  padding-left: 0;
}

/* Merged with Developer 2 */
.si-footer ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 18px;
}

/* Merged with Developer 2 */
.si-footer ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
}

/* Merged with Developer 2 */
.si-footer ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  transition: var(--si-transition);
}

/* Merged with Developer 2 */
.si-footer ul li a:hover {
  color: var(--si-white);
  padding-left: 4px;
}

/* Merged with Developer 2 */
.si-footer .si-footer-top {
  padding: 30px 0 30px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

.si-footer .si-footer-top .row .col-lg-4:nth-of-type(1) {
  position: relative;
  bottom: 30px;
}

/* Merged with Developer 2 */
.si-footer .si-footer-bottom {
  padding: 18px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 1);
  text-align: center;
}

/* ---------- Footer Social Icons ---------- */
.si-social-icons {
  display: flex;
  gap: 12px;
}

.si-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  transition: var(--si-transition);
}

.si-social-icon:hover {
  background-color: var(--si-red);
  border-color: var(--si-red);
  color: var(--si-white);
  transform: translateY(-3px);
}

/* ---------- Back to top ---------- */
/* Merged with Developer 2 */
.si-back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--si-navy);
  color: var(--si-white);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: var(--si-transition);
}

/* Merged with Developer 2 */
.si-back-to-top.show {
  display: flex;
}

/* Merged with Developer 2 */
.si-back-to-top:hover {
  background-color: var(--si-navy-light);
  color: var(--si-white);
}

/* ---------- Contact Page ---------- */
/* Merged with Developer 2 */
.si-contact-hero {
  padding-block: 60px;
}



/* .contact-section-bg {
  background-image: url(/assets/images/we-server-industies.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
} */
/* Merged with Developer 2 */
.si-contact-hero-title {
  font-weight: 800;
  font-size: 2.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 0 26px rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
}

/* Merged with Developer 2 */
.si-contact-icon-row {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 60px;
  padding: 18px 40px;
}

/* Merged with Developer 2 */
.si-contact-icon-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: var(--si-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* Merged with Developer 2 */
.si-contact-callout {
  background-color: var(--si-gray-bg);
  border-radius: var(--si-radius);
  padding: 20px 24px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--si-text);
  margin: 20px 0;
}

/* Merged with Developer 2 */
.si-contact-form-card {
  background-color: var(--si-white);
  border: 1px solid var(--si-gray-border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* Merged with Developer 2 */
.form-control:focus,
.form-select:focus {
  border-color: var(--si-red);
  box-shadow: 0 0 0 0.2rem rgba(227, 35, 26, 0.15);
}

/* ---------- Manufacturing Page ---------- */
/* Merged with Developer 2 */
.si-capability-photo {
  overflow: hidden;
  border-radius: var(--si-radius);
}

.container-section-image {
  position: relative;
  padding: 0px 0px 178px;
}

.container-image-set {
  padding: 235px 0px 0px;
}

.container-section-image img {
  position: absolute;
}

/* Merged with Developer 2 */
.si-capability-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.si-capability-photo.img-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Merged with Developer 2 */
.si-checklist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

/* Merged with Developer 2 */
.si-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

/* Merged with Developer 2 */
.si-checklist li:last-child {
  margin-bottom: 0;
}

/* Merged with Developer 2 */
.si-checklist li i {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background-color: var(--si-navy);
  color: var(--si-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

/* Merged with Developer 2 */
.si-capability-stats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}

/* Merged with Developer 2 */
.si-capability-stat {
  flex: 1 1 220px;
  padding: 0 28px;
  position: relative;
  margin-bottom: 20px;
}

/* Merged with Developer 2 */
.si-capability-stat+.si-capability-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background-color: var(--si-gray-border);
}

/* Merged with Developer 2 */
.si-capability-stat-icon {
  width: 91px;
  height: 91px;
  border-radius: 50%;
  background-color: var(--si-navy);
  color: var(--si-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

/* Merged with Developer 2 */
.si-capability-stat p {
  font-size: 0.85rem;
  color: var(--si-text);
  max-width: 260px;
  margin: 0 auto;
}

/* ---------- Resources Page ---------- */
/* Merged with Developer 2 */
.si-expertise-photo-wrap {
  position: relative;
  margin-bottom: 60px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* Merged with Developer 2 */
.si-expertise-stats {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: -50px;
  display: flex;
}

.resource-section-bg {
  /* background-image: url(/assets/images/we-server-industies.png);
  background-size: cover; */
}

/* Merged with Developer 2 */
.si-expertise-stat-box {
  align-content: center;
  flex: 1;
  background-color: #d3d3d3;
  border: 1px solid var(--si-white);
  padding: 18px 14px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--si-text);
  box-shadow: 0 12px 30px rgba(19, 81, 147, 0.14);
  z-index: 999;
}



.row .resources-heading {
  color: #000;
}

/* Merged with Developer 2 */
.si-divider-label {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  color: var(--si-text);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Merged with Developer 2 */
.si-divider-label::before,
.si-divider-label::after {
  content: "";
  flex: 1;
  max-width: 100px;
  height: 1px;
  background-color: var(--si-gray-border);
}

/* Merged with Developer 2 */
.si-divider-label-light {
  color: #fff;
}

/* Merged with Developer 2 */
.si-divider-label-light::before,
.si-divider-label-light::after {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Merged with Developer 2 */
.si-material-circle {
  width: 90px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  box-shadow: 0 8px 20px rgba(19, 81, 147, 0.15);
}

/* Merged with Developer 2 */
.si-material-circle .img-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}

/* Merged with Developer 2 */
.si-material-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--si-text);
  margin-bottom: 0;
}

/* Merged with Developer 2 */

.si-supplier-banner {
  position: relative;
}

.si-supplier-banner {
  background-color: var(--si-navy);
  color: var(--si-white);
  border-radius: 20px;
  padding: 24px 40px;
  text-align: center;
  position: absolute;
  z-index: 10;
  display: block;
  max-width: 900px;
  right: 20%;
  left: 20%;
  bottom: -50px;
}

/* ---------- About Us: Our Lineage ---------- */
/* Merged with Developer 2 */
.si-lineage-circle {
  width: 300px;
  max-width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(19, 81, 147, 0.18);
}

/* Merged with Developer 2 */
.si-lineage-circle .img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  aspect-ratio: auto;
}

.si-lineage-circle .combined-circle {
  background-image: url(../images/about/combined-circle-design.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- About Us: Vision / Mission ---------- */
/* Merged with Developer 2 */
.si-vm-photo-wrap {
  position: relative;
}

/* Merged with Developer 2 */
.si-vm-accent {
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: -18px;
  width: 60px;
  background-color: var(--si-red);
  border-radius: var(--si-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 120px;
  padding: 20px 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* Merged with Developer 2 */
.si-vm-icon {
  width: 42px;
  height: 42px;
  font-size: 1.15rem;
  border-radius: 50%;
  color: var(--si-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Merged with Developer 2 */
.si-vm-icon i {
  font-size: 42px;
}

.si-vm-photo-wrap .vision-mission {
  background-image: url(../images/about/about_us_3.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

/* ---------- About Us: Reasons Why SICPL ---------- */
/* Merged with Developer 2 */
.si-reason-card {
  background-color: #d3d3d3;
  border: 2px solid rgba(255, 255, 255, 1);
  padding: 32px 26px;
  height: 100%;
  text-align: center;
}

/* Merged with Developer 2 */
.si-reason-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--si-navy);
  color: var(--si-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
}

/* Merged with Developer 2 */
.si-reason-card h4 {
  color: var(--si-text);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Merged with Developer 2 */
.si-reason-card p {
  color: var(--si-text);
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ---------- About Us: Awards & Accolades ---------- */
/* Merged with Developer 2 */
.si-awards-panel {
  background-color: var(--si-gray-bg);
  border-radius: 16px;
  padding: 50px;
}

/* Merged with Developer 2 */
.si-awards-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

/* Merged with Developer 2 */
.si-awards-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--si-text);
}

/* Merged with Developer 2 */
.si-awards-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background-color: var(--si-red);
  border-radius: 50%;
}

/* Merged with Developer 2 */
.si-awards-panel .certificate_note {
  max-width: 250px;
  border-left: 5px solid red;
  padding-left: 15px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .si-hero h1 {
    font-size: 2rem;
  }

  .si-precision-collage {
    margin-top: 20px;
  }

  .si-vm-accent {
    right: 0;
  }
}

@media (max-width: 767.98px) {
  .si-capability-stat+.si-capability-stat::before {
    display: none;
  }

  .si-expertise-photo-wrap {
    margin-bottom: 20px;
  }

  .si-expertise-stats {
    position: static;
    flex-wrap: wrap;
    margin-top: 16px;
  }

  .si-expertise-stat-box {
    flex: 1 1 45%;
  }

  /* Remove skew on small screens to avoid layout shifts */
  #siIndustriesCarousel .carousel-item .row>.col-md-4:first-child .si-industry-card,
  #siIndustriesCarousel .carousel-item .row>.col-md-4:last-child .si-industry-card {
    transform: none;
  }

  .si-industry-card .blue-line {
    background-color: blue;
  }

  #siIndustriesCarousel .carousel-item .row>.col-md-4:first-child .si-industry-card>*,
  #siIndustriesCarousel .carousel-item .row>.col-md-4:last-child .si-industry-card>* {
    transform: none;
  }

  #siIndustriesCarousel .carousel-item .row>.col-md-4:first-child .si-industry-card .si-industry-tab,
  #siIndustriesCarousel .carousel-item .row>.col-md-4:last-child .si-industry-card .si-industry-tab {
    transform: none;
  }

  .si-values-diagram {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .si-values-connectors {
    display: none;
  }

  .si-vd-hub {
    position: static;
    transform: none;
    width: 150px;
    margin-bottom: 20px;
  }

  .si-vd-icon {
    position: static;
    transform: none;
    width: 56px;
    margin-bottom: 22px;
  }

  .si-vd-text {
    position: static;
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
  }

  .si-vd-text-left,
  .si-vd-text-right {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .si-section {
    padding: 50px 0;
  }

  .si-supplier-banner {
    position: absolute;
    z-index: 10;
    display: block;
    width: auto;
    right: 0;
    left: 0;
    bottom: -50px;
  }
}

/* =====================================================
   Developer 2 additions / rules not present in Developer 1
   ===================================================== */
/* =====================================================
   Smith Industrial Corporation Pvt. Ltd. (SICPL)
   Main Stylesheet
   Bootstrap 5 is loaded first; this file only overrides
   / extends it. Keep selectors scoped and reusable so
   this maps cleanly onto a WordPress theme (style.css +
   header.php / footer.php / page templates) later.
   ===================================================== */

/* ---------- Custom Fonts ---------- */
/* Futura: display headings. Poppins: body copy and UI text. */
@font-face {
  font-family: "Futura Light";
  src: url("../fonts/futura light bt.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura.ttc") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura Heavy";
  src: url("../fonts/Futura Heavy font.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Hero (Home) ---------- */

.si-hero .si-hero-bg {
  position: absolute;
  inset: 0;
  /* background-image:
    linear-gradient(
      100deg,
      rgba(6, 17, 38, 0.92) 0%,
      rgba(9, 26, 54, 0.72) 32%,
      rgba(9, 26, 54, 0.3) 58%,
      rgba(9, 26, 54, 0.05) 78%
    ),
    url("../images/about/about_us_.webp"); */
  background-size: cover, cover;
  background-position:
    center,
    center right;
  background-repeat: no-repeat, no-repeat;
}

/* ---------- Page Header (sub-pages) ---------- */

/* ---------- Image Placeholders ---------- */

.ph-3x4 {
  aspect-ratio: 3/4;
}

/* ---------- Who We Are / Video ---------- */

/* ---------- Precision Banner ---------- */

.in-contain {
  position: relative;
  width: 100vw;
  /* margin-left: calc(50% - 50vw); */
  top: -63px;
}

.top-of-line {
  background-image: url(../images/resources/top-of-line.webp);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 70px 0px 100px;
  bottom: -57px;
  /* z-index: ; */
}

.section-size-adj {
  padding: 70px 0px 0px;
}

.map-section {
  padding: 0px;
  position: relative;
  top: -64px;
}

.map-section img {
  width: 70%;
  height: auto;
  display: block;
  max-height: 750px;
  object-fit: cover;
  margin-inline: auto;
}

/* ---------- Process Steps (Manufacturing / R&D) ---------- */

.container .engineered-excell {
  width: 100%;
  height: 100%;
  display: block;
}

.order-lg-2 .machined-component {
  width: 100%;
  height: auto;
  display: block;
}

.order-lg-2 .surface-treatment {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Resource Cards ---------- */

.col-lg-5>#place {
  width: 100%;
  height: auto;
  display: block;
}

.mt-4>#map {
  width: 100%;
  height: auto;
  display: block;
}

.cost-efficient {
  position: relative;
  /* bottom: 90px; */
}

/* ---------- Accordion (FAQ) tweaks ---------- */

.si-expertise-photo-wrap .expertise {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- About Us: Awards & Accolades ---------- */

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .si-hero h1 {
    font-size: 2rem;
  }

  .si-precision-collage {
    margin-top: 20px;
  }

  .si-vm-accent {
    right: 0;
  }
}

@media (max-width: 767.98px) {
  .si-capability-stat+.si-capability-stat::before {
    display: none;
  }

  .si-expertise-photo-wrap {
    margin-bottom: 20px;
  }

  .si-expertise-stats {
    position: static;
    flex-wrap: wrap;
    margin-top: 16px;
  }

  .si-expertise-stat-box {
    flex: 1 1 45%;
  }

  /* Remove skew on small screens to avoid layout shifts */
  #siIndustriesCarousel .carousel-item .row>.col-md-4:first-child .si-industry-card,
  #siIndustriesCarousel .carousel-item .row>.col-md-4:last-child .si-industry-card {
    transform: none;
  }

  #siIndustriesCarousel .carousel-item .row>.col-md-4:first-child .si-industry-card>*,
  #siIndustriesCarousel .carousel-item .row>.col-md-4:last-child .si-industry-card>* {
    transform: none;
  }

  #siIndustriesCarousel .carousel-item .row>.col-md-4:first-child .si-industry-card .si-industry-tab,
  #siIndustriesCarousel .carousel-item .row>.col-md-4:last-child .si-industry-card .si-industry-tab {
    transform: none;
  }

  .si-values-diagram {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .si-values-connectors {
    display: none;
  }

  .si-vd-hub {
    position: static;
    transform: none;
    width: 150px;
    margin-bottom: 20px;
  }

  .si-vd-icon {
    position: static;
    transform: none;
    width: 56px;
    margin-bottom: 22px;
  }

  .si-vd-text {
    position: static;
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
  }

  .si-vd-text-left,
  .si-vd-text-right {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .si-section {
    padding: 50px 0;
  }

  .si-hero .si-hero-content {
    padding: 0px 0px;
  }
}

/* ---------- Product Grid Photo ---------- */
.si-product-grid-item {
  position: relative;
  transition: z-index 0s;
  z-index: 1;
}

.si-product-grid-item:hover {
  z-index: 10;
}

.si-product-grid-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.si-product-grid-item:hover .si-product-grid-photo img {
  transform: scale(1.5);
}