/* GLOBAL RESPONSIVE FIXES */
img {
  max-width: 100%;
  height: auto;
}


:root{
  --max-width:1400px;
  --accent:#111827; /* dark text */
  --muted:#6b7280;
  --primary:#111827;
  --yellow:#f6b800;
  --green:#00c176;
  --cta-bg:#111827;
  --cta-color:#fff;
  --hero-bg:#f6f6fb;
  --container-padding:20px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
  color:var(--accent);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  padding-top:72px; /* space for fixed header */
  overflow-x: hidden;
}
/* Duplicate specification block removed (merged earlier) */

/* .word-yellow{color:var(--yellow);display:inline-block} */

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 199;
}

.word-yellow{display:block;color:var(--yellow);-webkit-text-stroke:1px #000;text-shadow:0 2px 0 rgba(0,0,0,0.08);position:relative;}

/* Layout container and header/navigation */
.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 var(--container-padding);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  border-bottom: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.site-header.hidden { transform: translateY(-100%); }
.site-header.hidden .main-nav.open {
  transform: translateY(100%); /* counter the header's transform */
  top: 0;
}

.header-inner{ display:flex; align-items:center; gap:20px; height:72px; padding-top: 10px; padding-bottom: 10px; }

.logo-block { display:flex; align-items:center; gap:12px; }
.ss-icon{width:56px;height:56px;object-fit:contain;border-radius:6px}
.ss-link{display:inline-flex;align-items:center}
.logo-img{width:56px;height:56px;object-fit:contain;border-radius:6px}
.logo-text{display:flex;flex-direction:column;line-height:1.1}
.logo-company{font-size:16px;font-weight:800;color:var(--accent);letter-spacing:0.5px}
.company{font-size:12px;font-weight:600;color:var(--muted);margin-top:2px}

.main-nav ul{ list-style:none; margin:0; padding:0; display:flex; gap:18px; align-items:center; }
.main-nav a{ text-decoration:none; color:var(--muted); font-size:14px; padding:6px 4px; position:relative }
.main-nav a::after{ content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background:var(--green); transition:width 0.3s ease }
.main-nav a:hover::after{ width:100% }

/* Ensure header home links inherit color and remove underline */
.home-link { color: inherit; text-decoration: none; }

/* Mobile nav toggle */
.nav-toggle{ display:none; background:transparent; border:0; width:44px; height:44px; border-radius:8px; align-items:center; justify-content:center; cursor:pointer }
.nav-toggle .hamburger{ display:block; width:22px; height:2px; background:var(--accent); position:relative }
.nav-toggle .hamburger::before, .nav-toggle .hamburger::after{ content:""; position:absolute; left:0; right:0; height:2px; background:var(--accent) }
.nav-toggle .hamburger::before{ top:-6px }
.nav-toggle .hamburger::after{ top:6px }

/* Mobile menu (hidden by default) */
.main-nav{ transition: max-height 0.28s ease, opacity 0.28s ease }
.main-nav.open{ display:block }
/* 
@media (max-width:1070px){

  .header-inner{
    gap:12px;
  }

  .main-nav ul{
    gap:12px;
  }

  .main-nav a{
    font-size:13px;
    padding:4px 2px;
  }

  .logo-company{
    font-size:14px;
  }

  .company{
    font-size:11px;
  }

  .btn.buy{
    padding:8px 14px;
    font-size:13px;
  }

} */

/* Tablet Header Fix */
@media (max-width:1070px){

  .header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
  }
  .logo{
    display:flex;
    align-items:center;
    gap:6px;
  }

  .logo img{
    height:32px;
  }

  .logo-company{
    font-size:14px;
    line-height:1.2;
  }

  .company{
    font-size:11px;
  }

  .main-nav ul{
    display:flex;
    align-items:center;
    gap:12px;
  }

  .main-nav a{
    font-size:13px;
    width: 100%;
    padding:4px 2px;
    text-align:center;
  }

  .btn.buy{
    font-size:13px;
    padding:7px 14px;
  }

}

@media (max-width:950px) {
  .main-nav a:hover {
    background: rgba(0,193,118,0.08) !important;
    color: var(--green) !important;
    padding-left: 18px !important;
  }
}

/* Add this outside any media query */
.main-nav {
  will-change: transform;
  transform: translateZ(0); /* creates own stacking context, escapes header transform */
}
/* 

@media (min-width: 801px) and (max-width: 1070px) {

  .header-inner {
    gap: 8px;
    padding: 0 16px;
  }

  .ss-icon,
  .logo-img {
    width: 38px;
    height: 38px;
  }

  .logo-company {
    font-size: 13px;
  }

  .company {
    font-size: 10px;
  }

  .main-nav ul {
    gap: 6px;
  }

  .main-nav a {
    font-size: 12px;
    padding: 4px 2px;
    white-space: nowrap; 
  }

  .btn.buy {
    font-size: 12px;
    padding: 7px 12px;
    white-space: nowrap;
  }

} */

/* 
@media (max-width:950px){
  .nav-toggle{ display:flex; margin-left:auto }
  .main-nav{ display:none; position:absolute; left:0; right:0; top:72px; background: rgba(255,255,255,0.98); padding:14px 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.06); z-index:120 }
  .main-nav{ display:none; position:absolute; left:0; right:0; top:72px; background: rgba(255,255,255,0.98); padding:14px 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.06); z-index:120; max-height: calc(100vh - 72px); overflow-y: auto }
  .main-nav.open{ display:block }
  .main-nav ul{ flex-direction:column; gap:12px }
  .header-cta{ display:none }
} */

/* 
@media (max-width:950px) {
  .nav-toggle { display:flex; margin-left:auto }
  .main-nav { display:none; position:absolute; right:0; top:72px; background: rgba(255,255,255,0.98); padding:14px 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.06); z-index:120; max-height: calc(100vh - 72px); overflow-y: auto; width: 220px; } 
  .main-nav.open { display:block }
  .main-nav ul { flex-direction:column; gap:4px }
  .main-nav ul li { width:100% }
  .main-nav a { display:block; width:100%; padding:10px 12px; border-radius:8px; }
  .header-cta { display:none }
} */

/* @media (max-width:950px) {
  .nav-toggle { display:flex; margin-left:auto }
  .main-nav { display:none; position:fixed; right:0; top:72px; bottom:0; background: rgba(255,255,255,0.98); padding:14px 20px; box-shadow: -6px 0 30px rgba(0,0,0,0.1); z-index:300; width: 220px; overflow-y: auto; }
  .main-nav.open { display:block }
  .main-nav ul { flex-direction:column; gap:4px }
  .main-nav ul li { width:100%; position: relative; z-index: 10;}
  .main-nav a { display:block; width:100%; padding:10px 12px; border-radius:8px; font-weight:600; font-size:15px; transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;cursor: pointer;  }
  .main-nav a:hover { background: rgba(0,193,118,0.08) !important; color: var(--green) !important; padding-left: 18px !important; }

  .main-nav a::after { display:none !important; }

  .header-cta { display:none }
} */


@media (max-width:800px){

  .nav-toggle{
    display:flex;
    margin-left:auto;
    z-index:200;
  }

  /* hide buy button on mobile */
  .header-cta{
    display:none;
  }

  /* RIGHT SIDE DRAWER MENU */
  .main-nav{
    position:fixed;
    top:72px;
    right:-280px;
    width:280px;
    height:100vh;

    background:white;
    box-shadow:-10px 0 30px rgba(0,0,0,0.15);

    padding:30px 24px 24px;

    transition:right 0.3s ease;

    display:block;
  }

  .main-nav.open{
    right:0;
  }

  .main-nav ul{
    flex-direction:column;
    gap:18px;
  }

  .main-nav a{
    font-size:16px;
  }

  

}


/* Ensure sections don't hide under fixed header when jumping to anchors */
section { scroll-margin-top: 96px }

.header-cta{ margin-left:auto }

.btn{ display:inline-block; text-decoration:none; border-radius:8px; padding:10px 16px; font-weight:600; font-size:14px }
.btn.buy{ background:#111827; color:#fff; padding:10px 18px; border-radius:8px }
.btn.primary{ background:var(--cta-bg); color:var(--cta-color); padding:12px 20px; border-radius:10px; display:inline-block }

/* Enquire button (secondary) */
.btn.enquire{ display:inline-block; background:transparent; color:var(--accent); border:1.5px solid rgba(0,0,0,0.08); padding:10px 16px; border-radius:8px; margin-left:10px }
.btn.enquire:hover{ border-color: rgba(0,0,0,0.12); box-shadow: 0 6px 18px #0000000f }

/* outline buttons used in carousels */
.btn.outline{ background:#111827; color:#fff; border:none; padding:10px 18px; border-radius:8px; text-decoration:none; display:inline-block; font-weight:600 }

/* 
.hero-wrap{
  display:grid;
  grid-template-columns:520px 1fr;
  gap:28px 180px; 
  align-items:center;
  background:transparent;
  padding:48px;
  border-radius:12px;
  margin-top:0px;
  padding: 64px;
  border-radius: 20px;
  gap: 80px 160px;
} */

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 30px 64px 80px;
  min-height: calc(100vh - 72px);
  align-items: center;
  overflow: hidden;
}
/* 
@media (max-width: 1024px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 32px 60px;
    min-height: auto;
    gap: 32px;
  }
  .hero-right { order: -1; justify-content: center; }
  .hero-left  { justify-content: center; }
  .hero-text-wrap { text-align: center; padding: 0; }
} */

/* Left column */
.hero-left{padding-right:20px; display:flex; justify-content:flex-start; padding-left:0}

.diamond-grid{
  position:relative;
  width:500px; /* match left column width */
  height:500px;
  transform:rotate(-45deg); /* rotate the whole cluster (now -45deg) */
  margin-left:-10px; /* shift cluster slightly left inside column */
}
.diamond{
  position:absolute;
  transform:translate(-50%,-50%); /* container is rotated, keep diamonds unrotated here */
  transform-origin:center center;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.diamond:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
  cursor: pointer;
}


.diamond img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:rotate(0deg); /* keep image upright because container provides rotation */
  border-radius:6px;
  display:block;
}
/* Make anchors inside diamonds fill the area and remove default link styles */
.diamond a{display:block;width:100%;height:100%;text-decoration:none;color:inherit}
.diamond{cursor:pointer}

/* Hover dot indicator: top-center small circle that appears on hover/focus */
.diamond::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  z-index: 6;
  transition: transform 0.18s ease, opacity 0.18s ease;
  opacity: 0;
  pointer-events: none;
}
.diamond:hover::after,
.diamond:focus::after{
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.9;
}

@media (max-width:420px){
  .diamond::after{ width:10px; height:10px }
}




/* Diagonal layout: top (2 small), middle (3 medium), bottom (2 large) */
/* Top diagonal (small)
   positions: left/top ~ 28%/14% and right/top ~ 72%/14% */
.diamond.small{width:80px;height:80px}
.diamond.med{width:120px;height:120px}
.diamond.large{width:175px;height:175px}

.diamond.d1{left:42%; top:14%; border:10px solid var(--green); z-index:3}
.diamond.d2{left:62%; top:14%; border:10px solid var(--yellow); z-index:3}

/* Middle diagonal (three medium, centered horizontally) */
.diamond.d3{left:22%; top:40%; border:12px solid var(--yellow); z-index:2}
.diamond.d4{left:50%; top:40%; border:12px solid rgba(0,0,0,0.04); z-index:2}
.diamond.d5{left:78%; top:40%; border:12px solid var(--green); z-index:2}

/* Bottom diagonal (two large) */
.diamond.d6{left:33%; top:76%; border:14px solid rgba(0,0,0,0.06); z-index:1}
.diamond.d7{left:76%; top:76%; border:14px solid var(--yellow); z-index:4}

/* Final nudges for diagonal alignment */
.diamond.d3{top:40%}
.diamond.d5{top:40%}
.diamond.d6{left:30%}
.diamond.d7{left:70%}

/* Title & text */

.hero-text-wrap{padding-left:0;padding-right:10px;text-align:right}

.hero-right{display:flex;align-items:center;justify-content:flex-end}

.hero-title{margin:0 0 18px 0; font-size: clamp(32px, 8vw, 120px);
  line-height: 1;font-weight:900;letter-spacing:-2px}

.hero-title .word-yellow{
  display:block;
  color:var(--yellow);
  font-size:60px; /* reduced so two words fit on one line */
  -webkit-text-stroke:1px #000; /* black boundary */
  text-shadow:0 2px 0 rgba(0,0,0,0.08);
  position:relative;
  margin:0 0 6px 0;
}

.hero-title .word-yellow.sub{
  display:block;
  font-size:60px; /* slightly smaller for second line */
  margin-top:2px;
}

.hero-title .word-lemon{
  display:block;
  color:var(--green);
  font-size: clamp(22px, 4vw, 56px);
  margin-top:30px;
}






.hero-sub{margin:12px 0 0 0;color:var(--muted);font-size:20px}

.accent-green{color:var(--green);font-weight:700}





/* Product Categories Section */
.product-categories {
  padding-top: 80px;
  padding-bottom: 40px;
  /* background: #fff;  light green background */
}

.categories-heading{
  color: var(--accent);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  text-align: left;
  margin: 0px;
}

.categories-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  padding-top: 30px;
}

/* Individual card */
.category-card {
  position: relative;
  background: #fff;
  border: 4px solid var(--green);
  border-radius: 28px;
  padding: 48px 28px 32px; /* reserve some space at top; title will overlap the border */
  text-align: center;
  overflow: visible; /* allow title to overlap outside the card */
  min-height: 320px; /* ensure sufficient area for image */
  display: block; /* ensure anchors behave like cards */
  transition: transform 0.28s cubic-bezier(.2,.9,.2,1), box-shadow 0.28s ease, border-color 0.28s ease;
  will-change: transform, box-shadow;
  perspective: 900px; /* enable 3D perspective for inner elements */
}

/* Title on top of container */
.category-title {
  position: absolute;
  top: -18px; /* overlap the card border so title sits on the top border */
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  padding: 10px 26px;
  border-radius: 14px;
  letter-spacing: 0.5px;
  z-index: 6;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

/* Images inside */
.category-images {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 48px; /* sits beneath the title area */
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.category-images img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill the area; crops if necessary */
  border-radius: 12px;
  transition: transform 0.45s cubic-bezier(.2,.9,.2,1), filter 0.35s ease;
  backface-visibility: hidden;
}

/* Hover / focus styles to make category cards pop */
.category-card:hover,
.category-card:focus {
  /* Lift the whole card container on hover/focus; do not apply transforms to the image itself */
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 22px 48px rgba(0,0,0,0.14), 0 8px 18px rgba(0,0,0,0.06);
  border-color: rgba(0,193,118,0.95);
}

.category-card:focus {
  outline: 3px solid rgba(0,193,118,0.12);
  outline-offset: 6px;
}

.category-card:hover .category-title,
.category-card:focus .category-title {
  /* Emphasize title without shifting position */
  transform: translateX(-50%); /* ensure it stays centered */
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.category-card::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.04));
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
}













/* ============================================
   RESPONSIVE ONLY — NO DESKTOP IMPACT
   ============================================ */

/* Tablet & below */
/* @media (max-width: 1024px) {

  .diamond-grid {
    position: relative;
    width: 520px;
    height: 520px;
    transform: rotate(-45deg) scale(0.9);
    margin: 0 auto;
  }

  .diamond.small { width: 110px; height: 110px; }
  .diamond.med   { width: 164px; height: 164px; }
  .diamond.large { width: 240px; height: 240px; } */

  /* Make hero heading prominent on tablet and add space from header */
  /* .hero-title { font-size: 52px; }
  .hero-title .word-yellow { font-size: 52px; }
  .hero-title .word-yellow.sub { font-size: 28px; white-space: nowrap; }

  .hero-text-wrap { padding-top: 52px; text-align: center; }

  .hero-actions .btn.primary { font-size: 13px; padding: 10px 24px; }
} */


/* Large phones */
/* @media (max-width: 852px) {

  .diamond-grid {
    width: 460px;
    height: 460px;
    transform: rotate(-45deg) scale(0.85);
    margin: 0 auto;
  }

  .diamond.small { width: 110px; height: 110px; }
  .diamond.med   { width: 160px; height: 160px; }
  .diamond.large { width: 235px; height: 235px; }

  
  

  .hero-title .word-yellow.sub {
    font-size: 22px;
    white-space: nowrap;
  }

  .hero-title .word-lemon {
    font-size: 20px;
    margin-top: 14px;
  }

  .hero-text-wrap {
    padding-top: 26px;
    text-align: center;
  }

  .hero-actions .btn.primary {
    font-size: 13px;
    padding: 10px 20px;
  }
  .hero-title { font-size: 36px; }
} */


/* Standard phones */
/* @media (max-width: 400px) {

  .diamond-grid {
    width: 380px;
    height: 380px;
    transform: rotate(-45deg) scale(0.78);
    margin: 0 auto;
  }

  .diamond.small { width: 92px;  height: 92px; }
  .diamond.med   { width: 138px; height: 138px; }
  .diamond.large { width: 200px; height: 200px; }

  .hero-title {
    line-height: 1.05;
  }
  /* Match specification page responsive size */
  /*.hero-title { font-size: 22px; }

  .hero-title .word-yellow {
    font-size: 30px;
  }

  .hero-title .word-yellow.sub {
    font-size: 40px;
    white-space: nowrap;
  }

  .hero-title .word-lemon {
    font-size: 17px;
    margin-top: 10px;
  }

  .hero-text-wrap {
    padding-top: 22px;*/ /* space from nav */
  /*}

  .hero-actions .btn.primary {
    font-size: 12px;
    padding: 9px 18px;
  }
} */


/* Small phones */
/* @media (max-width: 380px) {

  .diamond-grid {
    width: 320px;
    height: 320px;
    transform: rotate(-45deg) scale(0.68);
  }

  .diamond.small { width: 76px;  height: 76px; }
  .diamond.med   { width: 112px; height: 112px; }
  .diamond.large { width: 165px; height: 165px; }

  .hero-title .word-yellow {
    font-size: 18px;
  }

  .hero-title .word-yellow.sub {
    font-size: 34px;
  }

  .hero-title .word-lemon {
    font-size: 14px;
  }

  .hero-actions .btn.primary {
    font-size: 11px;
    padding: 8px 8px;
  }
  .hero-title { font-size: 20px; }
}
*/

.category-card:hover::before,
.category-card:focus::before{
  opacity: 1;
}

/* 3D hover applied to the image area only so the title stays fixed */
.category-images{
  transform-style: preserve-3d;
  transition: transform 0.28s cubic-bezier(.2,.9,.2,1);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 28px 0;
  background: #fff;
  font-size: 13px;
  color: var(--muted);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr 2fr;
  gap: 24px;
  align-items: center;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 20px;
  }
  .footer-left,
  .footer-right,
  .footer-before-right,
  .footer-center {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .footer-contact { justify-content: center; }
  .footer-social  { justify-content: center; }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-right { flex-direction: column; align-items: center; }
  .footer-right img { margin: 0 auto; }
}

/* Left */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.footer-contact .divider {
  opacity: 0.4;
}

.footer-social {
  display: flex;
  gap: 40px;
}

.footer-social a {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(0,0,0,0.04);
  color: var(--accent);
  font-weight: 700;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--green);
  color: #fff;
}

/* Center */
.footer-center {
  text-align: center;
  line-height: 1.6;
}

.footer-designed a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

/* Right */
.footer-right {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  text-align: left;
}

.footer-right img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
}

.footer-address {
  font-size: 12px;
  line-height: 1.5;
  color: var(--accent);
}


.footer-before-right{
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.make-india-logo {
  width: 100px;
  height: 75px;
  object-fit: contain;
}

/* Make in India section heading */
.make-in-india-title {
  color: #000; /* ensure black */
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.yl-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
}

/* Mobile alignment */
@media (max-width: 900px) {
  .footer-logos { justify-content: center; }
}





@media (max-width: 480px) {

  .page-title {
    padding: 0 16px;          /* add side breathing space */
  }

  .page-title .word-yellow {
    font-size: 46px;          /* increased for better readability */
    line-height: 1.1;
    letter-spacing: 0;        /* remove negative spacing */
    white-space: normal;      /* allow wrapping */
    word-break: break-word;   /* prevent overflow */
  }

  .page-hero p {
    font-size: 14px;
    padding: 0 16px;
  }

  /* Ensure product specification heading is more prominent on small screens */
  .spec-info h2 {
    font-size: 40px;
  }

  .spec-sub {
    font-size: 18px;
  }

}

/* Small-screen adjustments for subheadings and breadcrumbs */
@media (max-width: 480px) {
  /* Products & About — make subheadings under main headings larger */
  /* .section-sub, */
  .in-demand-subtitle,
  .sensation-section .section-sub,
  .about-text p,
  .product-categories .categories-heading + p,
  .page-hero p {
    font-size: 18px;
    line-height: 1.4;
  }

  /* Product specification subheading already increased; ensure consistency */
  .spec-sub { font-size: 18px; }

  /* Breadcrumbs larger for better tap/readability */
  .pd-breadcrumb { font-size: 15px; }
  .pd-breadcrumb a { font-size: 15px; }
}




/* ============================================
   RESPONSIVE RULES — cleaned up, no conflicts
   ============================================ */

/* Tablet: collapse category grid */
@media (max-width: 1000px) {
  .categories-wrap { grid-template-columns: 1fr 1fr; }
  .product-categories { padding-top: 60px; }
}

/* Phablet / large phone */
@media (max-width: 900px) {
  /* Hero */
  .hero-wrap { grid-template-columns: 1fr; padding: 20px 16px; gap: 4px; align-items: start; }
  .hero-right { order: 0; justify-content: center; text-align: center; }
  .hero-left  { order: 1; justify-content: center; }
  .hero-text-wrap { text-align: center; padding: 0; }
  /* Increased for better readability on phablets/large phones */
  .hero-title { font-size: clamp(28px, 9vw, 48px); line-height: 1.05; margin-bottom: 8px; }
  .hero-title .word-yellow { font-size: clamp(24px, 8vw, 40px); }
  .hero-title .word-lemon  { font-size: clamp(20px, 6.5vw, 32px); margin-top: 18px; margin-bottom: 30px; }
  .hero-actions { margin-top: 16px; }
  .btn.primary { width: 100%; padding: 13px 0; font-size: 15px; text-align: center; }

  /* Diamond cluster */
  .diamond-grid {
    width: 440px; height: 440px;
    transform: rotate(-45deg) scale(0.68);
    transform-origin: center center;
    margin: -60px auto 0;
  }
  .diamond.small { width: 78px;  height: 78px; }
  .diamond.med   { width: 104px; height: 104px; }
  .diamond.large { width: 152px; height: 152px; }

  /* Categories */
  .categories-wrap { grid-template-columns: 1fr; gap: 40px; }
  .product-categories { padding-top: 48px; }
  .categories-heading { font-size: 30px; }
  .in-demand-subtitle { font-size: 15px; }

  /* In-demand section */
  .section-heading { font-size: 32px; }
  .product-card { min-width: 220px; }

  /* About mini */
  .about-mini-wrap { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .about-text p { margin: 12px auto 20px; }
  .about-visual { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .about-card { padding: 20px 12px; }
  .about-card h3 { font-size: 22px; }

  /* Contact CTA */
  .contact-cta-wrap { flex-direction: column; text-align: center; gap: 24px; }
  .contact-cta-text h2 { font-size: 28px; }
  .contact-cta-actions { justify-content: center; }
  .btn.primary { padding: 14px 28px; font-size: 16px; }


  /* Logo */
  .logo-company { font-size: 14px; }
  .company { font-size: 11px; }
  .ss-icon { width: 36px; height: 36px; }
  .logo-img { width: 40px; height: 40px; }
}

/* Small phone */
@media (max-width: 480px) {
  .hero-wrap { padding: 50px 12px; gap: 35px; }
  .hero-title { font-size: 22px; }
  .hero-title .word-yellow { font-size: 35px; }
  .hero-title .word-yellow.sub { font-size: 40px; }
  .hero-title .word-lemon  { font-size: 20px; }

  .btn.primary { padding: 12px 20px; font-size: 14px; }

  .diamond-grid {
    width: 300px; height: 300px;
    transform: rotate(-45deg) scale(0.66);
    transform-origin: center center;
    margin: -50px auto 0;
  }
  .diamond.small { width: 70px;  height: 70px; }
  .diamond.med   { width: 100px;  height: 100px; }
  .diamond.large { width: 150px; height: 150px; }

  
  .diamond.d1{left:32%; top:10%; border:10px solid var(--green); z-index:3}
  .diamond.d2{left:60%; top:10%; border:10px solid var(--yellow); z-index:3}

  /* Middle diagonal (three medium, centered horizontally) */
  .diamond.d3{left:12%; top:48%; border:12px solid var(--yellow); z-index:2}
  .diamond.d4{left:50%; top:48%; border:12px solid rgba(0,0,0,0.04); z-index:2}
  .diamond.d5{left:88%; top:48%; border:12px solid var(--green); z-index:2}

  /* Bottom diagonal (two large) */
  .diamond.d6{ top:100%; border:14px solid rgba(0,0,0,0.06); z-index:1}
  .diamond.d7{ top:100%; border:14px solid var(--yellow); z-index:4}

  /* Final nudges for diagonal alignment */
  .diamond.d6{left:25%}
  .diamond.d7{left:80%}

  .about-visual { grid-template-columns: 1fr; }
  .categories-heading { font-size: 22px; }
  .section-heading { font-size: 24px; }
}

/* Tiny phone */
@media (max-width: 380px) {
  .hero-title { font-size: 19px; }

  .hero-title .word-yellow { font-size: 30px; }
  .hero-title .word-yellow.sub { font-size: 40px; }
  .hero-title .word-lemon  { font-size: 20px; }
  .hero-text-wrap{
    margin: 50px auto 0;
  }

  .btn.primary { padding: 12px 20px; font-size: 14px; }
  .diamond-grid { transform: rotate(-45deg) scale(0.60); }
}




















/* Product Specification Block */
.product-spec-block {
  /* background: #fff; */
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}

.in-demand-section .product-card img{width:100%;height:140px;object-fit:cover;border:4px;border-radius:8px}
.in-demand-section .product-card h4{margin-top:8px}

.in-demand-section .product-card .product-specs{margin:8px 0 12px;color:var(--muted);font-size:13px;line-height:1.3}

/* Yellow boundary around product cards (outer ring without affecting layout) */
.in-demand-section .product-card{
  /*border: 4px solid var(--yellow);  subtle yellow border */
  transition: border-color 0.28s ease, transform 0.28s ease;
}

.in-demand-section .product-card:hover{
  border-color: var(--yellow); /* emphasize with solid yellow on hover */
  transform: translateY(-6px);
}
.spec-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Left content */
.spec-info h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--accent);
}

.spec-sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 28px;
}

/* Spec list */
.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 15px;
}

.spec-list strong {
  color: var(--green);
}

/* Right image block */
.spec-image {
  background: transparent;
  border-radius: 28px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.spec-image img#specMainImage,
.spec-image > img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: opacity 0.35s ease;
  opacity: 1;
}

/* Thumbnails */
.spec-thumbs {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.spec-thumbs img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  padding: 6px;
  border-radius: 12px;
  background: transparent;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.spec-thumbs img:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

/* Specification groups */
.spec-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.spec-item {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.spec-item h4 {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
}

.spec-item p {
  margin: 0;
  font-size: 15px;
  color: var(--accent);
  line-height: 1.5;
}




@media (max-width: 900px) {
  .spec-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .spec-info {
    text-align: center;
  }

  .spec-list li {
    text-align: left;
  }

  .spec-image {
    order: -1;
  }
}

.page-hero {
  padding: 80px 0 40px;
  text-align: center;
}

/* Contact page heading: keep both spans on one line and style */
.gradient-heading {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0 0 8px;
}

.gradient-heading .word-yellow,
.gradient-heading .word-lemon {
  display: inline-block; /* override block elsewhere */
  vertical-align: middle;
}

.gradient-heading .word-lemon {
  color: var(--green) !important;
  /* margin-left: 10px; */
}

/* Subtle gradient utility for hero blocks (keeps overall look consistent) */
.gradient-bg{
  background: linear-gradient(180deg, rgba(246,185,0,0.02), rgba(0,193,118,0.02));
}

@media (max-width: 760px) {
  .gradient-heading { font-size: 36px; }
}

.page-title {
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0 0 10px;
}

.page-hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
}

@media (max-width: 480px) {
  .page-hero { padding: 48px 0 24px; }
}

/* Tight hero spacing for specific pages (Products, Specifications) */
.page-hero.tight-hero { padding: 20px 0; }

@media (max-width: 480px) {
  .page-hero.tight-hero { padding: 20px 0; }
}

/* Contact page: when the hero has gradient-bg + tight-hero, make background transparent */
.page-hero.gradient-bg.tight-hero {
  background: transparent !important;
  background-image: none !important;
}

body {
  /* Full-page layered gradient requested by user: two subtle radial accents over a soft linear base */
  background:
    radial-gradient(circle at 20% 30%, rgba(0,193,119,0.15), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(246,185,0,0.25), transparent 45%),
    linear-gradient(135deg, #f8fafc, #ffffff);
  background-repeat: no-repeat;
  background-attachment: fixed;
}


main::after {
  content: "";
  display: block;
  height: 60px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0),
    #ffffff
  );
}





















.products-section {
  padding: 20px 0;
}

.section-title {
  font-size: clamp(22px, 4vw, 36px);
  margin-top: 10px;
  margin-bottom: 30px;
  color: #222;
}

/* Commitment title must be solid black */
.commitment-title{
  color: #000 !important;
  font-weight: 800;
}

/* Distinct styling for Sensation Systems heading */
.sensation-title{
  font-size:44px;
  line-height:1.05;
  font-weight:900;
  color:var(--accent);
  letter-spacing:-0.5px;
  text-align:center;
  margin-bottom:12px;
}


/* Center title/subtitle for Sensation Systems only */
.sensation-section .section-title {
  text-align: center;
}

.sensation-section .section-sub {
  text-align: center;
  color: var(--muted);
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 40px;
}

/* Utility: muted text class for one-off content */
.muted-text{
  color: var(--muted) !important;
  margin-top: 0px;
  margin-bottom: 60px;
}

/* Fixed-size product grid that centers when a row isn't full */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center items when row not full */
  gap: 32px;
}

.product-card {
  width: 340px; /* fixed width to force 3 per row */
  height: 420px; /* larger height for more content */
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform .28s ease, box-shadow .28s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.product-card .btn {
  margin-top: auto;
}

.product-card:hover {
  transform: translateY(-6px);
}
/* 
.product-card img {
  display:block;
  max-width: 100%;
  max-height: 180px; 
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 8px 0 10px;
} */


.product-card img {
  width: 100%;
  height: 180px;          /* fixed height for all images */
  object-fit: contain;    /* scales image to fit without cropping */
  background: #f7f8fa;    /* subtle bg so transparent images look clean */
  border-radius: 8px;
  padding: 8px;           /* small breathing room around image */
}

/* ensure image area doesn't push card beyond its size */
.product-card {
  overflow: hidden;
}

.product-card h3 {
  margin: 8px 0;
  font-size: 16px;
}

.product-card .specs {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  width: 100%;
}

.product-card .specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 8px;
}

.product-card .specs li strong {
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}

.product-card .specs li .value {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
}

@media (max-width: 1024px) {
  /* tablet: keep two columns where possible */
  .product-card { width: 300px; height: 400px; }
  .product-card img { width: 200px; height: 160px; }
}

@media (max-width: 760px) {
  .product-card { width: 220px; height: 380px; }
  .product-card img { width: 160px; height: 120px; }
}

@media (max-width: 760px) {
  .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;         /* let card stretch to full height */
  }

  .product-card ul.specs {
    flex: 1;              /* specs take up available space */
  }

  .product-card .btn {
    margin-top: auto;     /* always pushed to bottom */
    width: 100%;
    text-align: center;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr); /* or 1fr for single column */
    align-items: stretch;   /* all cards same height in each row */
  }

  .products-grid .product-card {
    height: 100%;
  }
}



/* Contact section: make transparent so page gradient shows through */
.contact-section {
  background: transparent;
  padding: 40px 0;
  position: relative;
}

.contact-section > * {
  position: relative;
  z-index: 2; /* keep content above any section fades */
}

.contact-section .contact-info {
  max-width: 900px;
  margin: 0 auto 18px;
  color: var(--accent);
}

.contact-section .contact-form {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-section .contact-form input,
.contact-section .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.88); /* slightly translucent for readability */
  color: var(--accent);
}

.contact-section .contact-form textarea { min-height: 120px; resize: vertical; }

@media (max-width: 760px) {
  .contact-section { padding: 28px 12px; }
  .contact-section .contact-form { max-width: 100%; }
}

























/* ===== Contact Page ===== */

.contact-section {
  padding: 50px 0;
  background: transparent;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

/* Cards */
.contact-card,
.contact-form-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.5);
}

/* Left */
.contact-card h3 {
  margin-bottom: 28px;
  margin-left: 15px;
  font-size: 26px;
}

.contact-item {
  margin-bottom: 18px;
  margin-left: 15px;
}

.contact-item strong {
  display: block;
  font-size: 18px;
  color: var(--muted);
}

.contact-item span {
  font-size: 20px;
}

.contact-social {
  margin-top: 28px;
  margin-left: 15px;
  display: flex;
  gap: 16px;
  flex-wrap:wrap;

}

.contact-social a {
  text-decoration: none;
  font-weight: 600;
  /* font-size:clamp(10px, 2vw, 14px); */

  color: var(--green);
}

/* Form */
.contact-form-card h3 {
  margin-bottom: 24px;
  margin-left: 15px;
  font-size: 26px;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.9);
  font-family: inherit;
  font-size: 14px;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--green);
}

/* Match contact form submit button to site CTA (black) */
.contact-form-card .btn,
.contact-form-card button.btn {
  background: var(--cta-bg);
  color: var(--cta-color);
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
}

.contact-form-card .btn:hover,
.contact-form-card button.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(17,24,39,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .contact-form-card {
    padding: 32px;
  }
}

/* Contact page responsive tweaks */
@media (max-width: 768px) {
  /* Tight hero typography for contact */
  .page-hero.tight-hero .gradient-heading .word-yellow { font-size: 40px; line-height:1.05; }
  .page-hero.tight-hero .gradient-heading .word-lemon { font-size: 20px; margin-top:8px; display:block; }
  .page-hero.tight-hero .hero-sub { font-size:16px; margin-top:8px;  }

  /* Make contact cards stack and reduce padding */
  .contact-wrap { gap: 24px; }
  .contact-card, .contact-form-card { padding: 24px; border-radius:16px; }
}

@media (max-width: 480px) {
  .page-hero.tight-hero { padding: 18px 0; }
  .page-hero.tight-hero .gradient-heading .word-yellow { font-size: 32px; }
  .page-hero.tight-hero .gradient-heading .word-lemon { font-size: 28px; margin-top:6px; }
  .page-hero.tight-hero .hero-sub { font-size:15px; }

  /* Contact section compact spacing */
  .contact-section { padding: 18px 10px; }
  .contact-card, .contact-form-card { padding: 16px; box-shadow: none; border-radius:12px; }

  /* Full-width submit button and slightly larger inputs for touch */
  .contact-form-card .btn { width: 100%; padding: 12px; }
  .contact-form-card input, .contact-form-card textarea { font-size: 15px; padding: 12px; }

  /* Breadcrumb and small text adjustments */
  .pd-breadcrumb { font-size:14px; }
  .contact-card h3, .contact-form-card h3 { font-size:20px; }
  /* Prevent horizontal overflow: make cards full-width and box-sizing-safe */
  .contact-wrap,
  .contact-wrap > * {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact-card, .contact-form-card { padding: 12px; }
  .contact-section { padding-left: 8px; padding-right: 8px; }

  .social-text{
display:none;
}

.social-icon{
display:inline;
font-weight:600;
}

}

/* Extra fixes for narrow devices to prevent right-side clipping */
@media (max-width: 430px) {
  .contact-section .container { padding-left: 18px; padding-right: 18px; }
  /* .contact-wrap { grid-template-columns: 1fr; gap: 14px; } */
  .contact-wrap{
  display:flex;
  gap:40px;
  align-items:flex-start;
  flex-wrap:wrap; /* IMPORTANT */
}
  .contact-wrap > * { max-width: none; width: 100%; margin: 0; }
  .contact-card, .contact-form-card { margin: 0; padding: 12px 10px; }
  .contact-card,
.contact-form-card{
  flex:1 1 350px;
  min-width:0;
  width:100%;

}

.contact-card{
  width:100%;
  max-width:100%;
}

.social-text{
display:none;
}

.social-icon{
display:inline;
font-weight:600;
}
}












/* ===== In-Demand Products ===== */

.in-demand-section {
  padding: 20px 0;
  background: transparent; /* allow page gradient to show through */
  overflow: hidden;
}

.section-heading {
  text-align: left;
  margin-bottom: 5px;
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 900;
}

/* Subtitle for In-Demand products */
.in-demand-subtitle{
  margin: 0;
  color:var(--muted);
  font-size:18px;
  font-weight:500;
  margin-bottom: 28px;
}

@media (max-width:760px){
  .in-demand-subtitle{font-size:16px}
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 40px;
  animation: scroll 25s linear infinite;
}

/* Ensure carousel has enough vertical space so product cards aren't clipped */
.carousel { padding: 8px 0; }
.carousel-track { align-items: center; padding: 12px 0; min-height: 360px; }

/* Product card */
.product-card {
  min-width: 280px;
  background: #fff;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  max-width: 160px;
  margin-bottom: 20px;
}

.product-card h4 {
  font-size: 18px;
  margin-bottom: 18px;
}

/* Outline button */
.btn.outline {
  background: #111827;
  color: #fff;
  border: none;
  font-size: 16px;
  padding: 15px 42px;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  text-wrap: nowrap;
}

.btn.outline:hover {
  background: #0b0b0b;
  color: #fff;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* Mobile */
@media (max-width: 768px) {
  .section-heading {
    font-size: 32px;
  }
  .product-card {
    min-width: 240px;
  }
}




/* ===== About Mini Section ===== */
.about-mini-section {
  padding: clamp(48px, 8vw, 100px) 0;
  /* background: #ffffff; */
  background:
    radial-gradient(circle at 20% 30%, rgba(0,193,119,0.15), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(246,185,0,0.25), transparent 45%),
    linear-gradient(135deg, #f8fafc, #ffffff);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about-mini-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* About page: prefer the global smooth gradient background — make sections transparent so the page gradient shows through */
.about-hero,
.about-hero-wrap,
.about-section,
.about-mini-section,
.company-album-section,
.about-section.light-bg {
  background: transparent !important;
  box-shadow: none !important;
}

.about-text p {
  font-size: 16px;
  color: var(--muted);
  margin: 20px 0 30px;
  max-width: 520px;
}

.about-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-card {
  background:
    radial-gradient(circle at 20% 30%, rgba(0,193,119,0.15), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(246,185,0,0.25), transparent 45%),
    linear-gradient(135deg, #f8fafc, #ffffff);
  background-repeat: no-repeat;
  background-attachment: fixed;
  border: 2px solid var(--green);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
}

.about-card h3 {
  font-size: 28px;
  color: var(--green);
  margin-bottom: 6px;
}

.about-card span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .about-mini-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-visual {
    grid-template-columns: 1fr;
  }
}





/* ===== Contact CTA Section ===== */
.contact-cta-section {
  padding: 20px 0;
  /* background:
    radial-gradient(circle at 20% 30%, rgba(0,193,119,0.15), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(246,185,0,0.25), transparent 45%),
    linear-gradient(135deg, #f8fafc, #ffffff); */
    background: transparent;
}

.contact-cta-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.contact-cta-text h2 {
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 900;
  margin-bottom: 14px;
}

.contact-cta-text p {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
}

.contact-cta-actions {
  display: flex;
  gap: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-cta-wrap {
    flex-direction: column;
    text-align: center;
  }
}


/* Make-in-India section styles */
.make-in-india-section {
  padding: 120px 0 0px;
  background: transparent;
}
.make-in-india {
  display: grid;
  grid-template-columns: 220px 1fr; /* image column, content column */
  align-items: center;
  gap: 24px;
}
.make-in-india-left { display: block }
.make-in-india-right { display: block }
.make-in-india .make-india-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
}
.make-in-india p {
  margin: 0;
  color: var(--accent);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .make-in-india { grid-template-columns: 1fr; text-align: center; }
  .make-in-india .make-india-img { max-width: 220px; width: 40%; margin: 0 auto }
}





















/* About Page */

/* About Hero */
.about-hero-wrap {
  padding: 100px 0;
  text-align: center;
}

.company-info-section {
  padding: 80px 0;
}

.company-info-section h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--accent);
  font-weight: 700;
}

.company-album-section {
  padding: 20px 0;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.album-grid figure{
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.album-grid img{
  width: 100%;
  height: 220px; /* increased height for better visibility */
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.album-grid figcaption{
  margin-top: 10px;
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
}



.section-title.center.commitment-title{
  font-size:44px;
  line-height:1.05;
  font-weight:900;
  color:var(--accent);
  letter-spacing:-0.5px;
  margin-bottom:12px;
  margin-top: 50px;
  text-align:left;
}

@media (max-width:1300px){
  .album-grid{ grid-template-columns: repeat(4, 1fr); }
}

@media (max-width:1000px){
  .album-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width:480px){
  .album-grid{ grid-template-columns: 1fr; }
  .hero-sub{
    font-size:15px;
    margin-top:20px;
    padding: 12px;
  }
  .album-grid{
    padding-left: 20px;
    padding-right: 20px;
  }
  .album-grid img{
    padding-top: 20px;
  }

  .section-title{
    font-size:28px;
    margin-top: 30px;
  }
  .section-title.sensation-title{
    font-size:32px;
    margin-top: 30px;
  }
  .section-sub{
    font-size:16px;
    margin-top: 20px;
  }
  .sensation-section .section-sub{
    font-size:15px;
    margin-top: 20px;
  }

  .section-title.center.commitment-title{
    font-size: 32px;
  }

  .muted-text{
    font-size: 15px;
    font-weight: 400;
  }
}

.why-us-section {
  padding-bottom: 60px;
  padding-top: 30px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 24px;
}

.why-us-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  text-align: center;
}

.why-us-card h4 {
  color: var(--green);
  font-size: 20px;
  margin-bottom: 12px;
}

/* Contact CTA uses your existing styles */



.about-section {
  padding: 20px 20px;
}

.about-section.light-bg {
  background: #f8fafc;
}

.about-hero-wrap {
  padding: 20px 0;
  text-align: center;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 40px 0;
}

.highlight-card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.mvv-card {
  background: #fff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.simple-list {
  padding-left: 18px;
  margin-bottom: 20px;
}

.simple-list li {
  margin-bottom: 6px;
}

/* 

.section-title.center.commitment-title{
  font-size:44px;
  line-height:1.05;
  font-weight:900;
  color:var(--accent);
  letter-spacing:-0.5px;
  margin-bottom:12px;
  margin-top: 50px;
  text-align:left;
} */













.cert-industry-section {
background: transparent;
}

.cert-industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

/* Shared card style */
.cert-card,
.industry-card {
  background: transparent;
  padding: 20px;
  position: relative;
}

/* Subtle accent line */
.cert-card::before,
.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  /* border-radius: 4px; */
  /* background: linear-gradient(90deg, #f5c400, #ffe066); */
}

.cert-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  color: #111;
}

/* Certification list */
.cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cert-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: #333;
}

.cert-badge {
  width: 22px;
  height: 22px;
  background: #f5c400;
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Industries grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.industry-item {
  background: #fffbe6;
  border: 1px solid #f3e7a5;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #222;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}



















.form-message {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

.form-message.success {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-message.error {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}




















































/* ============================================
   PRODUCT DETAIL PAGE (Amazon-style)
   Add this to the bottom of your index.css
   ============================================ */

/* Breadcrumb */
.pd-breadcrumb {
  padding: 14px 0;
  margin-top: 15px;
  font-size: 13px;
  color: var(--muted);
  /* border-bottom: 1px solid rgba(0,0,0,0); */

  border-top: 0.001px solid rgba(151, 147, 147, 0.08);
  border-bottom: 0.001px solid rgba(151, 147, 147, 0.08);
  position: relative;
  z-index: 1;
}
.pd-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.pd-breadcrumb a:hover { color: var(--green); }
.pd-breadcrumb span { margin: 0 6px; }
.pd-breadcrumb .current { color: var(--accent); font-weight: 600; }

/* Main 3-column layout */
.pd-main { padding: 40px 0 60px; }

.pd-layout {
  display: grid;
  grid-template-columns: 420px 1fr 10px;
  gap: 80px;
  align-items: start;
}

/* --- Gallery --- */
.pd-gallery {
  display: flex;
  flex-direction: row;
  gap: 12px;
  position: sticky;
  top: 90px;
}

.pd-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pd-thumb {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #f7f8fa;
  padding: 6px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.pd-thumb.active,
.pd-thumb:hover { border-color: var(--green); }

.pd-main-img-wrap {
  flex: 1;
  position: relative;
  background: #f7f8fa;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.pd-main-img-wrap img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.4s ease;
}
.pd-main-img-wrap img:hover { transform: scale(1.05); }

.pd-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* --- Product Info --- */
.pd-brand {
  font-size: 13px;
  color: var(--green);
  font-weight: 700;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-brand-tag {
  background: rgba(0,193,118,0.1);
  color: var(--green);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 600;
}

.pd-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--accent);
}

.pd-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 14px;
}

/* Rating row */
.pd-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  
}
.pd-stars { color: var(--yellow); font-size: 16px; }
.pd-rating-count { font-weight: 700; color: var(--accent); }
.pd-divider { color: #ddd; }
.pd-reviews { color: var(--muted); }
.pd-instock { color: var(--green); font-weight: 700; }


.pd-divider-line {
  border: none;
  border-top: 1px solid rgba(0,0,0,0);
  margin: 12px 0;
}

/* Key spec pills */
.pd-spec-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.pd-spec-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f7f8fa;
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 10px 18px;
  min-width: 80px;
  transition: border-color 0.2s;
}
.pd-spec-pill:hover { border-color: var(--green); }

.pill-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pill-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  margin-top: 2px;
}

/* About list */
.pd-about h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
}

.pd-about ul {
  padding-left: 20px;
  margin: 0 0 12px 0;
  list-style: disc;
  list-style-position: outside;
}

.pd-about ul li {
  font-size: 14px;
  color: var(--accent);
  line-height: 1.5;
  margin: 0 0 10px 0;
}

.pd-about ul li::marker {
  color: var(--accent);
}

/* Page-specific mobile override for Product Specifications */
@media (max-width: 480px) {
  .specs-hero .page-title .word-yellow {
    font-size: 40px;
    line-height: 1.05;
    
  }
}

/* --- Buy Box --- */
.pd-buybox {
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 24px;
  position: sticky;
  top: 90px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pd-price-label { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; }
.pd-price { font-size: 20px; font-weight: 800; color: var(--accent); }
.pd-price-note { font-size: 12px; color: var(--muted); }

.pd-delivery {
  background: rgba(0,193,118,0.06);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pd-delivery p {
  margin: 0;
  font-size: 13px;
  color: var(--accent);
}

.pd-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pd-btn-primary {
  background: var(--green);
  color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
}
.pd-btn-primary:hover { background: #00a864; transform: translateY(-1px); }

.pd-btn-secondary {
  background: #fff;
  color: var(--accent);
  border: 2px solid rgba(0,0,0,0.12);
  text-align: center;
  border-radius: 12px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s;
  text-decoration: none;
  display: block;
}
.pd-btn-secondary:hover { border-color: var(--green); color: var(--green); }

.pd-secure {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}

.pd-seller {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 12px;
}
.pd-seller p { margin: 0; }

/* --- Tabs Section --- */
.pd-tabs-section {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(0,0,0,0);
}

.pd-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 2px solid rgba(0,0,0,0.07);
  flex-wrap: wrap;
}

.pd-tab {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 12px 20px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  margin-bottom: -2px;
}
.pd-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.25s ease;
}
.pd-tab.active { color: var(--accent); }
.pd-tab.active::after { width: 100%; }
.pd-tab:hover { color: var(--accent); }

.pd-tab-content { display: none; }
.pd-tab-content.active { display: block; }

/* Spec table */
.pd-spec-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1.5px solid rgba(0,0,0,0.07);
}

.pd-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pd-spec-table td,
.pd-spec-table th { padding: 13px 20px; text-align: left; }
.pd-spec-table tr:not(.spec-group-header):nth-child(even) td { background: rgba(0,0,0,0.02); }
.pd-spec-table td:first-child { color: var(--muted); font-weight: 600; width: 40%; }
.pd-spec-table td:last-child { color: var(--accent); font-weight: 500; }
.spec-group-header {
  background: rgba(0,193,118,0.08);
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Application cards */
.pd-apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pd-app-card {
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.pd-app-card:hover { border-color: var(--green); transform: translateY(-4px); }
.pd-app-icon { font-size: 36px; margin-bottom: 10px; }
.pd-app-card h4 { font-size: 15px; font-weight: 700; margin: 0 0 8px; }
.pd-app-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }

/* Protection grid */
.pd-protection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pd-protect-item {
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.pd-protect-item:hover { border-color: var(--yellow); transform: translateY(-4px); }
.protect-icon { font-size: 36px; margin-bottom: 10px; }
.pd-protect-item h4 { font-size: 15px; font-weight: 700; margin: 0 0 8px; }
.pd-protect-item p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }

/* Related Products */
.pd-related { padding: 40px 0 0px; }

.pd-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pd-related-card {
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.pd-related-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }

.pd-related-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: #f7f8fa;
  padding: 16px;
}

.pd-related-info { padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.pd-related-brand { font-size: 11px; color: var(--green); font-weight: 700; margin: 0; }
.pd-related-name { font-size: 14px; font-weight: 700; margin: 0; color: var(--accent); }
.pd-related-spec { font-size: 12px; color: var(--muted); margin: 0; }
.pd-related-cta { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 700; color: var(--green); }

/* --- Responsive --- */
@media (max-width: 1100px) {
  .pd-layout { grid-template-columns: 360px 1fr 280px; gap: 28px; }
  .pd-apps-grid, .pd-protection-grid, .pd-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .pd-layout { grid-template-columns: 1fr; }
  .pd-gallery { position: static; flex-direction: column-reverse; }
  .pd-thumbs { flex-direction: row; }
  .pd-main-img-wrap { min-height: 260px; }
  .pd-buybox { position: static; }
}

@media (max-width: 600px) {
  .pd-spec-strip { gap: 8px; }
  .pd-spec-pill { min-width: 70px; padding: 8px 12px; }
  .pd-apps-grid, .pd-protection-grid { grid-template-columns: 1fr 1fr; }
  .pd-related-grid { grid-template-columns: 1fr 1fr; }
  .pd-title { font-size: 20px; }
}




/* 
html, body{
overflow-x:hidden;
max-width:100%;
}

*{
box-sizing:border-box;
} */